diff --git a/grammar.js b/grammar.js index ec9e809..ada95cc 100644 --- a/grammar.js +++ b/grammar.js @@ -43,6 +43,8 @@ module.exports = grammar({ token(choice(/\s/, '\\\n')), ], + word: $ => $.word, + rules: { program: $ => repeat($._terminated_statement), diff --git a/package.json b/package.json index 871383b..0b22446 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "nan": "^2.10.0" }, "devDependencies": { - "tree-sitter-cli": "^0.12.2" + "tree-sitter-cli": "^0.12.6" }, "scripts": { "build": "tree-sitter generate && node-gyp build", diff --git a/src/grammar.json b/src/grammar.json index 7ba127b..b9114f0 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1,5 +1,6 @@ { "name": "bash", + "word": "word", "rules": { "program": { "type": "REPEAT", diff --git a/src/parser.c b/src/parser.c index b8ea5cf..f76aabe 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 8 -#define STATE_COUNT 3206 +#define STATE_COUNT 2830 #define SYMBOL_COUNT 144 #define ALIAS_COUNT 5 #define TOKEN_COUNT 90 @@ -1000,31 +1000,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') ADVANCE(5); - if (lookahead == '$') + if (lookahead == '#') ADVANCE(6); + if (lookahead == '$') + ADVANCE(7); if (lookahead == '%') - ADVANCE(9); - if (lookahead == '&') ADVANCE(10); + if (lookahead == '&') + ADVANCE(11); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(15); if (lookahead == '(') - ADVANCE(16); - if (lookahead == ')') ADVANCE(17); - if (lookahead == '*') + if (lookahead == ')') ADVANCE(18); - if (lookahead == '+') + if (lookahead == '*') ADVANCE(19); + if (lookahead == '+') + ADVANCE(20); if (lookahead == '-') - ADVANCE(21); - if (lookahead == '/') ADVANCE(22); - if (lookahead == '0') + if (lookahead == '/') ADVANCE(23); + if (lookahead == '0') + ADVANCE(24); if (lookahead == ':') ADVANCE(25); if (lookahead == ';') @@ -1042,145 +1042,243 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(45); if (lookahead == '\\') - SKIP(47); + ADVANCE(47); if (lookahead == ']') ADVANCE(48); if (lookahead == '_') - ADVANCE(50); + ADVANCE(49); if (lookahead == '`') - ADVANCE(51); - if (lookahead == 'c') - ADVANCE(52); - if (lookahead == 'd') - ADVANCE(56); - if (lookahead == 'e') - ADVANCE(66); - if (lookahead == 'f') - ADVANCE(80); - if (lookahead == 'i') - ADVANCE(91); - if (lookahead == 'l') - ADVANCE(94); - if (lookahead == 'r') - ADVANCE(99); - if (lookahead == 't') - ADVANCE(107); - if (lookahead == 'u') - ADVANCE(117); - if (lookahead == 'w') - ADVANCE(125); + ADVANCE(50); if (lookahead == '{') - ADVANCE(130); + ADVANCE(51); if (lookahead == '|') - ADVANCE(131); + ADVANCE(52); if (lookahead == '}') - ADVANCE(134); + ADVANCE(55); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0); - if (('1' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + ADVANCE(4); END_STATE(); case 1: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 2: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') + if (lookahead == '\\') ADVANCE(3); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); END_STATE(); case 3: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); END_STATE(); case 4: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(3); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); END_STATE(); case 5: - ACCEPT_TOKEN(anon_sym_POUND); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 6: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') - ADVANCE(7); - if (lookahead == '{') - ADVANCE(8); + ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); case 7: - ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '(') + ADVANCE(8); + if (lookahead == '{') + ADVANCE(9); END_STATE(); case 8: - ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); END_STATE(); case 9: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); case 10: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') - ADVANCE(11); - if (lookahead == '>') - ADVANCE(12); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '\\') + ADVANCE(3); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); END_STATE(); case 11: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - END_STATE(); - case 12: - ACCEPT_TOKEN(anon_sym_AMP_GT); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') + ADVANCE(12); if (lookahead == '>') ADVANCE(13); END_STATE(); - case 13: - ACCEPT_TOKEN(anon_sym_AMP_GT_GT); + case 12: + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 14: - if (lookahead == '\'') - ADVANCE(15); - if (lookahead != 0) + case 13: + ACCEPT_TOKEN(anon_sym_AMP_GT); + if (lookahead == '>') ADVANCE(14); END_STATE(); + case 14: + ACCEPT_TOKEN(anon_sym_AMP_GT_GT); + END_STATE(); case 15: - ACCEPT_TOKEN(sym_raw_string); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead != 0) + ADVANCE(15); END_STATE(); case 16: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(sym_raw_string); END_STATE(); case 17: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 18: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 19: - if (lookahead == '=') - ADVANCE(20); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '\\') + ADVANCE(3); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); END_STATE(); case 20: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(sym_word); + if (lookahead == '=') + ADVANCE(21); + if (lookahead == '\\') + ADVANCE(3); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + (lookahead < ';' || lookahead > '>') && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); END_STATE(); case 21: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + if (lookahead == '\\') + ADVANCE(3); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); END_STATE(); case 22: - ACCEPT_TOKEN(aux_sym_SLASH); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '\\') + ADVANCE(3); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); END_STATE(); case 23: - ACCEPT_TOKEN(anon_sym_0); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + ACCEPT_TOKEN(aux_sym_SLASH); END_STATE(); case 24: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + ACCEPT_TOKEN(anon_sym_0); + if (lookahead == '\\') + ADVANCE(3); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); END_STATE(); case 25: ACCEPT_TOKEN(anon_sym_COLON); @@ -1188,12 +1286,61 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(26); if (lookahead == '?') ADVANCE(27); + if (lookahead == '\\') + ADVANCE(3); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + lookahead != '?' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); END_STATE(); case 26: ACCEPT_TOKEN(anon_sym_COLON_DASH); + if (lookahead == '\\') + ADVANCE(3); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); END_STATE(); case 27: ACCEPT_TOKEN(anon_sym_COLON_QMARK); + if (lookahead == '\\') + ADVANCE(3); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); END_STATE(); case 28: ACCEPT_TOKEN(anon_sym_SEMI); @@ -1235,14 +1382,60 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '=') ADVANCE(37); + if (lookahead == '\\') + ADVANCE(3); if (lookahead == '~') ADVANCE(38); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + (lookahead < ';' || lookahead > '>') && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '~')) + ADVANCE(4); END_STATE(); case 37: ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '\\') + ADVANCE(3); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); END_STATE(); case 38: ACCEPT_TOKEN(anon_sym_EQ_TILDE); + if (lookahead == '\\') + ADVANCE(3); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); END_STATE(); case 39: ACCEPT_TOKEN(anon_sym_GT); @@ -1264,9 +1457,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 43: ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '\\') + ADVANCE(3); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); END_STATE(); case 44: ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == '\\') + ADVANCE(3); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); END_STATE(); case 45: ACCEPT_TOKEN(anon_sym_LBRACK); @@ -1279,900 +1504,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 47: if (lookahead == '\n') SKIP(0); - END_STATE(); - case 48: - ACCEPT_TOKEN(anon_sym_RBRACK); - if (lookahead == ']') - ADVANCE(49); - END_STATE(); - case 49: - ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); - END_STATE(); - case 50: - ACCEPT_TOKEN(anon_sym__); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 51: - ACCEPT_TOKEN(anon_sym_BQUOTE); - END_STATE(); - case 52: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'a') - ADVANCE(53); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 53: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 's') - ADVANCE(54); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 54: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'e') - ADVANCE(55); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 55: - ACCEPT_TOKEN(anon_sym_case); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 56: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'e') - ADVANCE(57); - if (lookahead == 'o') - ADVANCE(63); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 57: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'c') - ADVANCE(58); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 58: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'l') - ADVANCE(59); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 59: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'a') - ADVANCE(60); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 60: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'r') - ADVANCE(61); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 61: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'e') - ADVANCE(62); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 62: - ACCEPT_TOKEN(anon_sym_declare); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 63: - ACCEPT_TOKEN(anon_sym_do); - if (lookahead == 'n') - ADVANCE(64); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 64: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'e') - ADVANCE(65); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 65: - ACCEPT_TOKEN(anon_sym_done); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 66: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'l') - ADVANCE(67); - if (lookahead == 's') - ADVANCE(72); - if (lookahead == 'x') - ADVANCE(75); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 67: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'i') - ADVANCE(68); - if (lookahead == 's') - ADVANCE(70); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 68: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'f') - ADVANCE(69); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 69: - ACCEPT_TOKEN(anon_sym_elif); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 70: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'e') - ADVANCE(71); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 71: - ACCEPT_TOKEN(anon_sym_else); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 72: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'a') - ADVANCE(73); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 73: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'c') - ADVANCE(74); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 74: - ACCEPT_TOKEN(anon_sym_esac); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 75: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'p') - ADVANCE(76); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 76: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'o') - ADVANCE(77); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 77: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'r') - ADVANCE(78); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 78: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 't') - ADVANCE(79); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 79: - ACCEPT_TOKEN(anon_sym_export); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 80: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'i') - ADVANCE(81); - if (lookahead == 'o') - ADVANCE(82); - if (lookahead == 'u') - ADVANCE(84); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 81: - ACCEPT_TOKEN(anon_sym_fi); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 82: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'r') - ADVANCE(83); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 83: - ACCEPT_TOKEN(anon_sym_for); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 84: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'n') - ADVANCE(85); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 85: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'c') - ADVANCE(86); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 86: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 't') - ADVANCE(87); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 87: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'i') - ADVANCE(88); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 88: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'o') - ADVANCE(89); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 89: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'n') - ADVANCE(90); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 90: - ACCEPT_TOKEN(anon_sym_function); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 91: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'f') - ADVANCE(92); - if (lookahead == 'n') - ADVANCE(93); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 92: - ACCEPT_TOKEN(anon_sym_if); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 93: - ACCEPT_TOKEN(anon_sym_in); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 94: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'o') - ADVANCE(95); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 95: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'c') - ADVANCE(96); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 96: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'a') - ADVANCE(97); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 97: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'l') - ADVANCE(98); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 98: - ACCEPT_TOKEN(anon_sym_local); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 99: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'e') - ADVANCE(100); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 100: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'a') - ADVANCE(101); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 101: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'd') - ADVANCE(102); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 102: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'o') - ADVANCE(103); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 103: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'n') - ADVANCE(104); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 104: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'l') - ADVANCE(105); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 105: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'y') - ADVANCE(106); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 106: - ACCEPT_TOKEN(anon_sym_readonly); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 107: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'h') - ADVANCE(108); - if (lookahead == 'y') - ADVANCE(111); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 108: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'e') - ADVANCE(109); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 109: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'n') - ADVANCE(110); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 110: - ACCEPT_TOKEN(anon_sym_then); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 111: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'p') - ADVANCE(112); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 112: - 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(24); - END_STATE(); - case 113: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 's') - ADVANCE(114); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 114: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'e') - ADVANCE(115); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 115: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 't') - ADVANCE(116); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 116: - ACCEPT_TOKEN(anon_sym_typeset); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 117: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'n') - ADVANCE(118); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 118: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 's') - ADVANCE(119); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 119: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'e') - ADVANCE(120); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 120: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 't') - ADVANCE(121); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 121: - ACCEPT_TOKEN(anon_sym_unset); - if (lookahead == 'e') - ADVANCE(122); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 122: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'n') - ADVANCE(123); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 123: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'v') - ADVANCE(124); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 124: - ACCEPT_TOKEN(anon_sym_unsetenv); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 125: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'h') - ADVANCE(126); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 126: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'i') - ADVANCE(127); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 127: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'l') - ADVANCE(128); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 128: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == 'e') - ADVANCE(129); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 129: - ACCEPT_TOKEN(anon_sym_while); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 130: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 131: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') - ADVANCE(132); - if (lookahead == '|') - ADVANCE(133); - END_STATE(); - case 132: - ACCEPT_TOKEN(anon_sym_PIPE_AMP); - END_STATE(); - case 133: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - END_STATE(); - case 134: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 135: - if (lookahead == 0) - ADVANCE(1); - if (lookahead == '!') - ADVANCE(136); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(140); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '(') - ADVANCE(16); - if (lookahead == '<') - ADVANCE(141); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(45); - if (lookahead == '\\') - ADVANCE(142); - if (lookahead == ']') - ADVANCE(143); - if (lookahead == '`') - ADVANCE(51); - if (lookahead == 'c') - ADVANCE(144); - if (lookahead == 'd') - ADVANCE(148); - if (lookahead == 'e') - ADVANCE(155); - if (lookahead == 'f') - ADVANCE(161); - if (lookahead == 'i') - ADVANCE(171); - if (lookahead == 'l') - ADVANCE(173); - if (lookahead == 'r') - ADVANCE(178); - if (lookahead == 't') - ADVANCE(186); - if (lookahead == 'u') - ADVANCE(193); - if (lookahead == 'w') - ADVANCE(201); - if (lookahead == '{') - ADVANCE(143); - if (lookahead == '}') - ADVANCE(143); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(135); - if ((lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(138); - END_STATE(); - case 136: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '\\') - ADVANCE(137); - 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 137: if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 138: - ACCEPT_TOKEN(sym_word); + case 48: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 49: + ACCEPT_TOKEN(anon_sym__); if (lookahead == '\\') - ADVANCE(137); + ADVANCE(3); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2186,1642 +1531,335 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 139: + case 50: + ACCEPT_TOKEN(anon_sym_BQUOTE); + END_STATE(); + case 51: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 52: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '&') + ADVANCE(53); + if (lookahead == '|') + ADVANCE(54); + END_STATE(); + case 53: + ACCEPT_TOKEN(anon_sym_PIPE_AMP); + END_STATE(); + case 54: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 55: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 56: + if (lookahead == 0) + ADVANCE(1); + if (lookahead == '!') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(5); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '$') + ADVANCE(7); + if (lookahead == '&') + ADVANCE(58); + if (lookahead == '\'') + ADVANCE(15); + if (lookahead == '(') + ADVANCE(17); + if (lookahead == '<') + ADVANCE(59); + if (lookahead == '>') + ADVANCE(39); + if (lookahead == '[') + ADVANCE(45); + if (lookahead == '\\') + ADVANCE(60); + if (lookahead == ']') + ADVANCE(61); + if (lookahead == '`') + ADVANCE(50); + if (lookahead == '{') + ADVANCE(61); + if (lookahead == '}') + ADVANCE(61); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(56); + if ((lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); + END_STATE(); + case 57: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n') - ADVANCE(139); + ADVANCE(57); END_STATE(); - case 140: + case 58: if (lookahead == '>') - ADVANCE(12); + ADVANCE(13); END_STATE(); - case 141: + case 59: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') ADVANCE(31); if (lookahead == '(') ADVANCE(32); END_STATE(); - case 142: + case 60: if (lookahead == '\n') - SKIP(135); + SKIP(56); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 143: + case 61: ACCEPT_TOKEN(sym__special_characters); if (lookahead == '[') - ADVANCE(143); + ADVANCE(61); if (lookahead == ']') - ADVANCE(143); + ADVANCE(61); if (lookahead == '{') - ADVANCE(143); + ADVANCE(61); if (lookahead == '}') - ADVANCE(143); + ADVANCE(61); END_STATE(); - case 144: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'a') - ADVANCE(145); - 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 145: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 's') - 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(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'e') - ADVANCE(147); - 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_case); - if (lookahead == '\\') - ADVANCE(137); - 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(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'e') - ADVANCE(149); - 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 149: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'c') - 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(137); - if (lookahead == 'l') - 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(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'a') - ADVANCE(152); - 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 152: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'r') - 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(137); - if (lookahead == 'e') - 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(anon_sym_declare); - if (lookahead == '\\') - ADVANCE(137); - 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(137); - if (lookahead == 'x') - 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(137); - if (lookahead == 'p') - 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(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'o') - ADVANCE(158); - 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(137); - if (lookahead == 'r') - ADVANCE(159); - 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(137); - if (lookahead == 't') - 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_export); - if (lookahead == '\\') - ADVANCE(137); - 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(137); - if (lookahead == 'o') - ADVANCE(162); - if (lookahead == 'u') - 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 162: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'r') - 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(anon_sym_for); - if (lookahead == '\\') - ADVANCE(137); - 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(137); - if (lookahead == 'n') - 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(137); - if (lookahead == 'c') - 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(137); - if (lookahead == 't') - 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(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'i') - ADVANCE(168); - 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(137); - if (lookahead == 'o') - 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(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'n') - ADVANCE(170); - 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(anon_sym_function); - if (lookahead == '\\') - ADVANCE(137); - 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(137); - if (lookahead == 'f') - 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(anon_sym_if); - if (lookahead == '\\') - ADVANCE(137); - 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 173: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'o') - 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(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'c') - ADVANCE(175); - 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(137); - if (lookahead == 'a') - ADVANCE(176); - 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 176: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'l') - ADVANCE(177); - 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 177: - ACCEPT_TOKEN(anon_sym_local); - if (lookahead == '\\') - ADVANCE(137); - 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(137); - if (lookahead == 'e') - 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(137); - if (lookahead == 'a') - ADVANCE(180); - 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 180: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'd') - 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(137); - if (lookahead == 'o') - 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(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'n') - ADVANCE(183); - 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(137); - if (lookahead == 'l') - 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(137); - if (lookahead == 'y') - 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(anon_sym_readonly); - if (lookahead == '\\') - ADVANCE(137); - 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(137); - if (lookahead == 'y') - 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(137); - if (lookahead == 'p') - 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(137); - if (lookahead == 'e') - 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(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 's') - ADVANCE(190); - 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(137); - if (lookahead == 'e') - 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(137); - if (lookahead == 't') - 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(anon_sym_typeset); - if (lookahead == '\\') - ADVANCE(137); - 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(137); - if (lookahead == 'n') - 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(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 's') - 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(137); - if (lookahead == 'e') - 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(137); - if (lookahead == 't') - 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_unset); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'e') - ADVANCE(198); - 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(137); - if (lookahead == 'n') - 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(137); - if (lookahead == 'v') - 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(anon_sym_unsetenv); - if (lookahead == '\\') - ADVANCE(137); - 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(137); - if (lookahead == 'h') - 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(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'i') - ADVANCE(203); - 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: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'l') - ADVANCE(204); - 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 204: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'e') - ADVANCE(205); - 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 205: - ACCEPT_TOKEN(anon_sym_while); - if (lookahead == '\\') - ADVANCE(137); - 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 206: + case 62: if (lookahead == '#') - ADVANCE(139); - if (lookahead == '&') - ADVANCE(207); - if (lookahead == '(') - ADVANCE(16); - if (lookahead == ')') - ADVANCE(17); + ADVANCE(57); if (lookahead == '+') - ADVANCE(19); + ADVANCE(63); if (lookahead == '=') - ADVANCE(208); + ADVANCE(65); if (lookahead == '[') - ADVANCE(209); + ADVANCE(66); if (lookahead == '\\') - SKIP(210); - if (lookahead == ']') - ADVANCE(211); - if (lookahead == '`') - ADVANCE(51); - if (lookahead == 'd') - ADVANCE(212); - if (lookahead == 'e') - ADVANCE(214); - if (lookahead == 'f') - ADVANCE(223); - if (lookahead == 'i') - ADVANCE(225); - if (lookahead == 't') - ADVANCE(227); - if (lookahead == '{') - ADVANCE(130); - if (lookahead == '|') - ADVANCE(131); - if (lookahead == '}') - ADVANCE(134); + SKIP(67); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(206); + SKIP(62); END_STATE(); - case 207: - if (lookahead == '&') - ADVANCE(11); + case 63: + if (lookahead == '=') + ADVANCE(64); END_STATE(); - case 208: + case 64: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 65: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 209: + case 66: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 210: + case 67: if (lookahead == '\n') - SKIP(206); + SKIP(62); END_STATE(); - case 211: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); - case 212: - if (lookahead == 'o') - ADVANCE(213); - END_STATE(); - case 213: - ACCEPT_TOKEN(anon_sym_do); - END_STATE(); - case 214: - if (lookahead == 'l') - ADVANCE(215); - if (lookahead == 's') - ADVANCE(220); - END_STATE(); - case 215: - if (lookahead == 'i') - ADVANCE(216); - if (lookahead == 's') - ADVANCE(218); - END_STATE(); - case 216: - if (lookahead == 'f') - ADVANCE(217); - END_STATE(); - case 217: - ACCEPT_TOKEN(anon_sym_elif); - END_STATE(); - case 218: - if (lookahead == 'e') - ADVANCE(219); - END_STATE(); - case 219: - ACCEPT_TOKEN(anon_sym_else); - END_STATE(); - case 220: - if (lookahead == 'a') - ADVANCE(221); - END_STATE(); - case 221: - if (lookahead == 'c') - ADVANCE(222); - END_STATE(); - case 222: - ACCEPT_TOKEN(anon_sym_esac); - END_STATE(); - case 223: - if (lookahead == 'i') - ADVANCE(224); - END_STATE(); - case 224: - ACCEPT_TOKEN(anon_sym_fi); - END_STATE(); - case 225: - if (lookahead == 'n') - ADVANCE(226); - END_STATE(); - case 226: - ACCEPT_TOKEN(anon_sym_in); - END_STATE(); - case 227: - if (lookahead == 'h') - ADVANCE(228); - END_STATE(); - case 228: - if (lookahead == 'e') - ADVANCE(229); - END_STATE(); - case 229: - if (lookahead == 'n') - ADVANCE(230); - END_STATE(); - case 230: - ACCEPT_TOKEN(anon_sym_then); - END_STATE(); - case 231: + case 68: if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); + if (lookahead == '&') + ADVANCE(69); if (lookahead == ')') - ADVANCE(17); + ADVANCE(18); if (lookahead == '\\') - SKIP(232); + SKIP(70); + if (lookahead == '`') + ADVANCE(50); if (lookahead == '|') - ADVANCE(233); + ADVANCE(52); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(231); + SKIP(68); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(71); + END_STATE(); + case 69: + if (lookahead == '&') + ADVANCE(12); + END_STATE(); + case 70: + if (lookahead == '\n') + SKIP(68); + END_STATE(); + case 71: + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + ADVANCE(71); END_STATE(); - case 232: - if (lookahead == '\n') - SKIP(231); - END_STATE(); - case 233: - ACCEPT_TOKEN(anon_sym_PIPE); - END_STATE(); - case 234: + case 72: if (lookahead == '\"') - ADVANCE(4); + ADVANCE(5); if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == '$') - ADVANCE(6); + ADVANCE(7); if (lookahead == '&') - ADVANCE(140); + ADVANCE(58); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(15); if (lookahead == '<') - ADVANCE(141); + ADVANCE(59); if (lookahead == '>') ADVANCE(39); if (lookahead == '[') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\\') - ADVANCE(235); + ADVANCE(73); if (lookahead == ']') - ADVANCE(143); + ADVANCE(61); if (lookahead == '`') - ADVANCE(51); + ADVANCE(50); if (lookahead == '{') - ADVANCE(143); + ADVANCE(61); if (lookahead == '}') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(234); + SKIP(72); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 235: + case 73: if (lookahead == '\n') - SKIP(234); + SKIP(72); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 236: - if (lookahead == '\"') ADVANCE(4); + END_STATE(); + case 74: + if (lookahead == '\"') + ADVANCE(5); if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == '$') - ADVANCE(6); + ADVANCE(7); if (lookahead == '&') - ADVANCE(140); + ADVANCE(58); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(15); if (lookahead == '(') - ADVANCE(16); + ADVANCE(17); if (lookahead == '<') - ADVANCE(141); + ADVANCE(59); if (lookahead == '>') ADVANCE(39); if (lookahead == '[') ADVANCE(45); if (lookahead == '\\') - ADVANCE(237); + ADVANCE(75); if (lookahead == ']') - ADVANCE(143); + ADVANCE(61); if (lookahead == '`') - ADVANCE(51); + ADVANCE(50); if (lookahead == '{') - ADVANCE(143); + ADVANCE(61); if (lookahead == '}') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(236); + SKIP(74); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 237: + case 75: if (lookahead == '\n') - SKIP(236); + SKIP(74); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 238: - if (lookahead == '!') - ADVANCE(136); - if (lookahead == '\"') ADVANCE(4); + END_STATE(); + case 76: + if (lookahead == '!') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(5); if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == '$') - ADVANCE(6); + ADVANCE(7); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(15); if (lookahead == '(') - ADVANCE(16); + ADVANCE(17); if (lookahead == '-') - ADVANCE(239); + ADVANCE(77); if (lookahead == '<') - ADVANCE(241); + ADVANCE(79); if (lookahead == '>') - ADVANCE(242); + ADVANCE(80); if (lookahead == '[') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\\') - ADVANCE(243); + ADVANCE(81); if (lookahead == ']') - ADVANCE(143); + ADVANCE(61); if (lookahead == '`') - ADVANCE(51); + ADVANCE(50); if (lookahead == '{') - ADVANCE(143); + ADVANCE(61); if (lookahead == '}') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(238); + SKIP(76); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 239: + case 77: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(137); + ADVANCE(3); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(240); + ADVANCE(78); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3834,104 +1872,104 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < 'A' || lookahead > ']') && (lookahead < '`' || lookahead > '}')) - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 240: + case 78: ACCEPT_TOKEN(sym_test_operator); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(240); + ADVANCE(78); END_STATE(); - case 241: + case 79: if (lookahead == '(') ADVANCE(32); END_STATE(); - case 242: + case 80: if (lookahead == '(') ADVANCE(41); END_STATE(); - case 243: + case 81: if (lookahead == '\n') - SKIP(238); + SKIP(76); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 244: - if (lookahead == '\n') - ADVANCE(245); - if (lookahead == '\"') ADVANCE(4); + END_STATE(); + case 82: + if (lookahead == '\n') + ADVANCE(83); + if (lookahead == '\"') + ADVANCE(5); if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == '$') - ADVANCE(6); + ADVANCE(7); if (lookahead == '&') - ADVANCE(246); + ADVANCE(84); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(15); if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(241); + ADVANCE(79); if (lookahead == '>') - ADVANCE(242); + ADVANCE(80); if (lookahead == '[') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\\') - ADVANCE(247); + ADVANCE(85); if (lookahead == ']') - ADVANCE(143); + ADVANCE(61); if (lookahead == '`') - ADVANCE(51); + ADVANCE(50); if (lookahead == '{') - ADVANCE(143); + ADVANCE(61); if (lookahead == '|') - ADVANCE(131); + ADVANCE(52); if (lookahead == '}') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(244); + SKIP(82); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(248); + ADVANCE(86); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 245: + case 83: ACCEPT_TOKEN(anon_sym_LF); END_STATE(); - case 246: + case 84: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '&') - ADVANCE(11); + ADVANCE(12); END_STATE(); - case 247: + case 85: if (lookahead == '\n') - SKIP(244); + SKIP(82); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 248: + case 86: ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); if (lookahead == '\\') - ADVANCE(137); + ADVANCE(3); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(248); + ADVANCE(86); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3944,59 +1982,59 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < 'A' || lookahead > ']') && (lookahead < '_' || lookahead > '}')) - ADVANCE(138); - END_STATE(); - case 249: - if (lookahead == '\n') - ADVANCE(245); - if (lookahead == '\"') ADVANCE(4); + END_STATE(); + case 87: + if (lookahead == '\n') + ADVANCE(83); + if (lookahead == '\"') + ADVANCE(5); if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == '$') - ADVANCE(6); + ADVANCE(7); if (lookahead == '&') - ADVANCE(10); + ADVANCE(11); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(15); if (lookahead == ';') ADVANCE(28); if (lookahead == '<') ADVANCE(30); if (lookahead == '=') - ADVANCE(250); + ADVANCE(88); if (lookahead == '>') ADVANCE(39); if (lookahead == '[') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\\') - ADVANCE(253); + ADVANCE(89); if (lookahead == ']') - ADVANCE(143); + ADVANCE(61); if (lookahead == '`') - ADVANCE(51); + ADVANCE(50); if (lookahead == '{') - ADVANCE(143); + ADVANCE(61); if (lookahead == '|') - ADVANCE(131); + ADVANCE(52); if (lookahead == '}') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(249); + SKIP(87); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 250: + case 88: ACCEPT_TOKEN(sym_word); if (lookahead == '=') - ADVANCE(251); + ADVANCE(37); if (lookahead == '\\') - ADVANCE(137); + ADVANCE(3); if (lookahead == '~') - ADVANCE(252); + ADVANCE(38); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4008,999 +2046,949 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '~')) - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 251: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '\\') - ADVANCE(137); - 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 252: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); - if (lookahead == '\\') - ADVANCE(137); - 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 253: + case 89: if (lookahead == '\n') - SKIP(249); + SKIP(87); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 254: - if (lookahead == '\"') ADVANCE(4); - if (lookahead == '#') - ADVANCE(255); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '\\') - ADVANCE(259); - if (lookahead == '`') - ADVANCE(51); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(260); - if (lookahead != 0) - ADVANCE(256); END_STATE(); - case 255: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') - ADVANCE(256); - if (lookahead == '\\') - ADVANCE(258); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '$' && - lookahead != '`') - ADVANCE(255); - END_STATE(); - case 256: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\\') - ADVANCE(257); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '$' && - lookahead != '`') - ADVANCE(256); - END_STATE(); - case 257: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') - ADVANCE(256); - if (lookahead == '\\') - ADVANCE(257); - if (lookahead == '\"' || - lookahead == '$' || - lookahead == '`') - ADVANCE(256); - if (lookahead != 0) - ADVANCE(256); - END_STATE(); - case 258: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') - ADVANCE(256); - if (lookahead == '\\') - ADVANCE(258); - if (lookahead == '\"' || - lookahead == '$' || - lookahead == '`') - ADVANCE(255); - if (lookahead != 0) - ADVANCE(255); - END_STATE(); - case 259: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') - ADVANCE(260); - if (lookahead == '\\') - ADVANCE(257); - if (lookahead == '\"' || - lookahead == '$' || - lookahead == '`') - ADVANCE(256); - if (lookahead != 0) - ADVANCE(256); - END_STATE(); - case 260: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '#') - ADVANCE(255); - if (lookahead == '\\') - ADVANCE(259); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(260); - if (lookahead != 0 && - (lookahead < '\"' || lookahead > '$') && - lookahead != '`') - ADVANCE(256); - END_STATE(); - case 261: + case 90: if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') ADVANCE(5); + if (lookahead == '#') + ADVANCE(91); if (lookahead == '$') - ADVANCE(262); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '*') - ADVANCE(18); - if (lookahead == '-') - ADVANCE(21); - if (lookahead == '0') - ADVANCE(23); - if (lookahead == '?') - ADVANCE(43); - if (lookahead == '@') - ADVANCE(44); + ADVANCE(7); if (lookahead == '\\') - SKIP(263); - if (lookahead == '_') + ADVANCE(95); + if (lookahead == '`') ADVANCE(50); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(261); + ADVANCE(96); + if (lookahead != 0) + ADVANCE(92); + END_STATE(); + case 91: + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\n') + ADVANCE(92); + if (lookahead == '\\') + ADVANCE(94); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '$' && + lookahead != '`') + ADVANCE(91); + END_STATE(); + case 92: + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\\') + ADVANCE(93); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '$' && + lookahead != '`') + ADVANCE(92); + END_STATE(); + case 93: + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\n') + ADVANCE(92); + if (lookahead == '\\') + ADVANCE(93); + if (lookahead == '\"' || + lookahead == '$' || + lookahead == '`') + ADVANCE(92); + if (lookahead != 0) + ADVANCE(92); + END_STATE(); + case 94: + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\n') + ADVANCE(92); + if (lookahead == '\\') + ADVANCE(94); + if (lookahead == '\"' || + lookahead == '$' || + lookahead == '`') + ADVANCE(91); + if (lookahead != 0) + ADVANCE(91); + END_STATE(); + case 95: + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\n') + ADVANCE(96); + if (lookahead == '\\') + ADVANCE(93); + if (lookahead == '\"' || + lookahead == '$' || + lookahead == '`') + ADVANCE(92); + if (lookahead != 0) + ADVANCE(92); + END_STATE(); + case 96: + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '#') + ADVANCE(91); + if (lookahead == '\\') + ADVANCE(95); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(96); + if (lookahead != 0 && + (lookahead < '\"' || lookahead > '$') && + lookahead != '`') + ADVANCE(92); + END_STATE(); + case 97: + if (lookahead == '\"') + ADVANCE(5); + if (lookahead == '#') + ADVANCE(6); + if (lookahead == '$') + ADVANCE(98); + if (lookahead == '\'') + ADVANCE(15); + if (lookahead == '*') + ADVANCE(99); + if (lookahead == '-') + ADVANCE(100); + if (lookahead == '0') + ADVANCE(101); + if (lookahead == '?') + ADVANCE(102); + if (lookahead == '@') + ADVANCE(103); + if (lookahead == '\\') + SKIP(104); + if (lookahead == '_') + ADVANCE(105); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(97); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + ADVANCE(71); END_STATE(); - case 262: + case 98: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 263: - if (lookahead == '\n') - SKIP(261); + case 99: + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 264: - if (lookahead == '#') - ADVANCE(5); - if (lookahead == '$') - ADVANCE(262); - if (lookahead == '*') - ADVANCE(18); - if (lookahead == '-') - ADVANCE(21); - if (lookahead == '0') - ADVANCE(23); - if (lookahead == '?') - ADVANCE(43); - if (lookahead == '@') - ADVANCE(44); - if (lookahead == '\\') - SKIP(265); - if (lookahead == '_') - ADVANCE(50); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(264); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + case 100: + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 265: - if (lookahead == '\n') - SKIP(264); - END_STATE(); - case 266: - if (lookahead == '\n') - ADVANCE(245); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(10); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '(') - ADVANCE(16); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(30); - if (lookahead == '=') - ADVANCE(250); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(143); - if (lookahead == '\\') - ADVANCE(267); - if (lookahead == ']') - ADVANCE(143); - if (lookahead == '`') - ADVANCE(51); - if (lookahead == '{') - ADVANCE(143); - if (lookahead == '|') - ADVANCE(131); - if (lookahead == '}') - ADVANCE(143); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(266); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')')) - ADVANCE(138); - END_STATE(); - case 267: - if (lookahead == '\n') - SKIP(266); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 268: - if (lookahead == '\n') - ADVANCE(245); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(10); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(141); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(143); - if (lookahead == '\\') - ADVANCE(269); - if (lookahead == ']') - ADVANCE(143); - if (lookahead == '`') - ADVANCE(51); - if (lookahead == '{') - ADVANCE(143); - if (lookahead == '|') - ADVANCE(131); - if (lookahead == '}') - ADVANCE(143); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(268); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')')) - ADVANCE(138); - END_STATE(); - case 269: - if (lookahead == '\n') - SKIP(268); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 270: - if (lookahead == '\n') - ADVANCE(245); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(10); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(30); - if (lookahead == '=') - ADVANCE(250); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(143); - if (lookahead == '\\') - ADVANCE(271); - if (lookahead == ']') - ADVANCE(143); - if (lookahead == '`') - ADVANCE(51); - if (lookahead == '{') - ADVANCE(143); - if (lookahead == '|') - ADVANCE(131); - if (lookahead == '}') - ADVANCE(143); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(270); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')')) - ADVANCE(138); - END_STATE(); - case 271: - if (lookahead == '\n') - SKIP(270); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 272: - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '(') - ADVANCE(16); - if (lookahead == '<') - ADVANCE(241); - if (lookahead == '>') - ADVANCE(242); - if (lookahead == '[') - ADVANCE(143); - if (lookahead == '\\') - ADVANCE(273); - if (lookahead == ']') - ADVANCE(143); - if (lookahead == '`') - ADVANCE(51); - if (lookahead == '{') - ADVANCE(143); - if (lookahead == '}') - ADVANCE(143); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(272); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(138); - END_STATE(); - case 273: - if (lookahead == '\n') - SKIP(272); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 274: - if (lookahead == '\n') - ADVANCE(245); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '&') - ADVANCE(275); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '\\') - SKIP(276); - if (lookahead == 'i') - ADVANCE(225); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(274); - END_STATE(); - case 275: - ACCEPT_TOKEN(anon_sym_AMP); - END_STATE(); - case 276: - if (lookahead == '\n') - SKIP(274); - END_STATE(); - case 277: - if (lookahead == '\n') - ADVANCE(245); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(246); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(241); - if (lookahead == '>') - ADVANCE(242); - if (lookahead == '[') - ADVANCE(143); - if (lookahead == '\\') - ADVANCE(278); - if (lookahead == ']') - ADVANCE(143); - if (lookahead == '`') - ADVANCE(51); - if (lookahead == '{') - ADVANCE(143); - if (lookahead == '|') - ADVANCE(131); - if (lookahead == '}') - ADVANCE(143); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(277); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(248); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')')) - ADVANCE(138); - END_STATE(); - case 278: - if (lookahead == '\n') - SKIP(277); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 279: - if (lookahead == '\n') - ADVANCE(245); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(10); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '(') - ADVANCE(16); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(30); - if (lookahead == '=') - ADVANCE(250); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(143); - if (lookahead == '\\') - ADVANCE(280); - if (lookahead == ']') - ADVANCE(143); - if (lookahead == '`') - ADVANCE(51); - if (lookahead == '{') - ADVANCE(143); - if (lookahead == '|') - ADVANCE(131); - if (lookahead == '}') - ADVANCE(143); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(279); - if (lookahead != 0) - ADVANCE(138); - END_STATE(); - case 280: - if (lookahead == '\n') - SKIP(279); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 281: - if (lookahead == '\n') - ADVANCE(245); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(10); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(141); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(143); - if (lookahead == '\\') - ADVANCE(282); - if (lookahead == ']') - ADVANCE(143); - if (lookahead == '`') - ADVANCE(51); - if (lookahead == '{') - ADVANCE(143); - if (lookahead == '|') - ADVANCE(131); - if (lookahead == '}') - ADVANCE(143); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(281); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')')) - ADVANCE(138); - END_STATE(); - case 282: - if (lookahead == '\n') - SKIP(281); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 283: - if (lookahead == '\n') - ADVANCE(245); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '&') - ADVANCE(246); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '\\') - SKIP(284); - if (lookahead == 'e') - ADVANCE(285); - if (lookahead == '|') - ADVANCE(131); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(283); - END_STATE(); - case 284: - if (lookahead == '\n') - SKIP(283); - END_STATE(); - case 285: - if (lookahead == 's') - ADVANCE(220); - END_STATE(); - case 286: - if (lookahead == '!') - ADVANCE(287); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '&') - ADVANCE(207); - if (lookahead == '-') - ADVANCE(288); - if (lookahead == '<') - ADVANCE(290); - if (lookahead == '=') - ADVANCE(36); - if (lookahead == '>') - ADVANCE(291); - if (lookahead == '\\') - SKIP(292); - if (lookahead == ']') - ADVANCE(211); - if (lookahead == '|') - ADVANCE(293); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(286); - END_STATE(); - case 287: - if (lookahead == '=') - ADVANCE(3); - END_STATE(); - case 288: - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(289); - END_STATE(); - case 289: - ACCEPT_TOKEN(sym_test_operator); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(289); - END_STATE(); - case 290: - ACCEPT_TOKEN(anon_sym_LT); - END_STATE(); - case 291: - ACCEPT_TOKEN(anon_sym_GT); - END_STATE(); - case 292: - if (lookahead == '\n') - SKIP(286); - END_STATE(); - case 293: - if (lookahead == '|') - ADVANCE(133); - END_STATE(); - case 294: - if (lookahead == '!') - ADVANCE(287); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '&') - ADVANCE(207); - if (lookahead == '-') - ADVANCE(288); - if (lookahead == '<') - ADVANCE(290); - if (lookahead == '=') - ADVANCE(36); - if (lookahead == '>') - ADVANCE(291); - if (lookahead == '\\') - SKIP(295); - if (lookahead == ']') - ADVANCE(296); - if (lookahead == '|') - ADVANCE(293); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(294); - END_STATE(); - case 295: - if (lookahead == '\n') - SKIP(294); - END_STATE(); - case 296: - if (lookahead == ']') - ADVANCE(49); - END_STATE(); - case 297: - if (lookahead == '#') - ADVANCE(5); - if (lookahead == '$') - ADVANCE(262); - if (lookahead == '*') - ADVANCE(18); - if (lookahead == '-') - ADVANCE(21); - if (lookahead == '0') - ADVANCE(298); - if (lookahead == '?') - ADVANCE(43); - if (lookahead == '@') - ADVANCE(44); - if (lookahead == '\\') - ADVANCE(300); - if (lookahead == '_') - ADVANCE(302); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(301); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(299); - if (lookahead != 0 && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '_' || lookahead > 'z')) - ADVANCE(256); - END_STATE(); - case 298: + case 101: ACCEPT_TOKEN(anon_sym_0); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(299); + ADVANCE(71); END_STATE(); - case 299: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(299); + case 102: + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 300: - ACCEPT_TOKEN(sym__string_content); + case 103: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 104: if (lookahead == '\n') - ADVANCE(301); - if (lookahead == '\\') - ADVANCE(257); - if (lookahead == '\"' || - lookahead == '$' || - lookahead == '`') - ADVANCE(256); - if (lookahead != 0) - ADVANCE(256); + SKIP(97); END_STATE(); - case 301: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '#') - ADVANCE(5); - if (lookahead == '*') - ADVANCE(18); - if (lookahead == '-') - ADVANCE(21); - if (lookahead == '0') - ADVANCE(298); - if (lookahead == '?') - ADVANCE(43); - if (lookahead == '@') - ADVANCE(44); - if (lookahead == '\\') - ADVANCE(300); - if (lookahead == '_') - ADVANCE(302); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(301); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(299); - if (lookahead != 0 && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '_' || lookahead > 'z')) - ADVANCE(256); - END_STATE(); - case 302: + case 105: ACCEPT_TOKEN(anon_sym__); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(299); + ADVANCE(71); END_STATE(); - case 303: + case 106: + if (lookahead == '\n') + ADVANCE(83); if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') ADVANCE(5); + if (lookahead == '#') + ADVANCE(57); if (lookahead == '$') - ADVANCE(6); - if (lookahead == '%') - ADVANCE(304); + ADVANCE(7); + if (lookahead == '&') + ADVANCE(11); if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '-') - ADVANCE(305); - if (lookahead == '/') - ADVANCE(22); - if (lookahead == ':') - ADVANCE(306); + ADVANCE(15); + if (lookahead == '(') + ADVANCE(17); + if (lookahead == ';') + ADVANCE(28); if (lookahead == '<') - ADVANCE(241); + ADVANCE(30); if (lookahead == '=') - ADVANCE(309); + ADVANCE(88); if (lookahead == '>') - ADVANCE(242); + ADVANCE(39); if (lookahead == '[') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\\') - ADVANCE(310); + ADVANCE(107); if (lookahead == ']') - ADVANCE(143); + ADVANCE(61); if (lookahead == '`') - ADVANCE(51); + ADVANCE(50); if (lookahead == '{') - ADVANCE(143); + ADVANCE(61); + if (lookahead == '|') + ADVANCE(52); if (lookahead == '}') - ADVANCE(134); + ADVANCE(61); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(106); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(4); + END_STATE(); + case 107: + if (lookahead == '\n') + SKIP(106); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); + END_STATE(); + case 108: + if (lookahead == 0) + ADVANCE(1); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '\\') + SKIP(109); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(303); + SKIP(108); + END_STATE(); + case 109: + if (lookahead == '\n') + SKIP(108); + END_STATE(); + case 110: + if (lookahead == '\n') + ADVANCE(83); + if (lookahead == '\"') + ADVANCE(5); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '$') + ADVANCE(7); + if (lookahead == '&') + ADVANCE(11); + if (lookahead == '\'') + ADVANCE(15); + if (lookahead == ';') + ADVANCE(28); + if (lookahead == '<') + ADVANCE(59); + if (lookahead == '>') + ADVANCE(39); + if (lookahead == '[') + ADVANCE(61); + if (lookahead == '\\') + ADVANCE(111); + if (lookahead == ']') + ADVANCE(61); + if (lookahead == '`') + ADVANCE(50); + if (lookahead == '{') + ADVANCE(61); + if (lookahead == '|') + ADVANCE(52); + if (lookahead == '}') + ADVANCE(61); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(110); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(4); + END_STATE(); + case 111: + if (lookahead == '\n') + SKIP(110); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); + END_STATE(); + case 112: + if (lookahead == '\n') + ADVANCE(83); + if (lookahead == '\"') + ADVANCE(5); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '$') + ADVANCE(7); + if (lookahead == '&') + ADVANCE(11); + if (lookahead == '\'') + ADVANCE(15); + if (lookahead == ')') + ADVANCE(18); + if (lookahead == ';') + ADVANCE(28); + if (lookahead == '<') + ADVANCE(30); + if (lookahead == '=') + ADVANCE(88); + if (lookahead == '>') + ADVANCE(39); + if (lookahead == '[') + ADVANCE(61); + if (lookahead == '\\') + ADVANCE(113); + if (lookahead == ']') + ADVANCE(61); + if (lookahead == '`') + ADVANCE(50); + if (lookahead == '{') + ADVANCE(61); + if (lookahead == '|') + ADVANCE(52); + if (lookahead == '}') + ADVANCE(61); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(112); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(4); + END_STATE(); + case 113: + if (lookahead == '\n') + SKIP(112); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); + END_STATE(); + case 114: + if (lookahead == '\"') + ADVANCE(5); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '$') + ADVANCE(7); + if (lookahead == '\'') + ADVANCE(15); + if (lookahead == '(') + ADVANCE(17); + if (lookahead == '<') + ADVANCE(79); + if (lookahead == '>') + ADVANCE(80); + if (lookahead == '[') + ADVANCE(61); + if (lookahead == '\\') + ADVANCE(115); + if (lookahead == ']') + ADVANCE(61); + if (lookahead == '`') + ADVANCE(50); + if (lookahead == '{') + ADVANCE(61); + if (lookahead == '}') + ADVANCE(61); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(114); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); + END_STATE(); + case 115: + if (lookahead == '\n') + SKIP(114); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); + END_STATE(); + case 116: + if (lookahead == '\n') + ADVANCE(83); + if (lookahead == '\"') + ADVANCE(5); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '$') + ADVANCE(7); + if (lookahead == '&') + ADVANCE(117); + if (lookahead == '\'') + ADVANCE(15); + if (lookahead == ';') + ADVANCE(28); + if (lookahead == '<') + ADVANCE(79); + if (lookahead == '>') + ADVANCE(80); + if (lookahead == '[') + ADVANCE(61); + if (lookahead == '\\') + ADVANCE(118); + if (lookahead == ']') + ADVANCE(61); + if (lookahead == '`') + ADVANCE(50); + if (lookahead == '{') + ADVANCE(61); + if (lookahead == '}') + ADVANCE(61); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(116); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); + END_STATE(); + case 117: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 118: + if (lookahead == '\n') + SKIP(116); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); + END_STATE(); + case 119: + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '(') + ADVANCE(17); + if (lookahead == '\\') + SKIP(120); + if (lookahead == '{') + ADVANCE(51); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(119); + END_STATE(); + case 120: + if (lookahead == '\n') + SKIP(119); + END_STATE(); + case 121: + if (lookahead == '\n') + ADVANCE(83); + if (lookahead == '\"') + ADVANCE(5); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '$') + ADVANCE(7); + if (lookahead == '&') + ADVANCE(84); + if (lookahead == '\'') + ADVANCE(15); + if (lookahead == ')') + ADVANCE(18); + if (lookahead == ';') + ADVANCE(28); + if (lookahead == '<') + ADVANCE(79); + if (lookahead == '>') + ADVANCE(80); + if (lookahead == '[') + ADVANCE(61); + if (lookahead == '\\') + ADVANCE(122); + if (lookahead == ']') + ADVANCE(61); + if (lookahead == '`') + ADVANCE(50); + if (lookahead == '{') + ADVANCE(61); + if (lookahead == '|') + ADVANCE(52); + if (lookahead == '}') + ADVANCE(61); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(121); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(86); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(4); + END_STATE(); + case 122: + if (lookahead == '\n') + SKIP(121); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); + END_STATE(); + case 123: + if (lookahead == '\n') + ADVANCE(83); + if (lookahead == '\"') + ADVANCE(5); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '$') + ADVANCE(7); + if (lookahead == '&') + ADVANCE(11); + if (lookahead == '\'') + ADVANCE(15); + if (lookahead == '(') + ADVANCE(17); + if (lookahead == ')') + ADVANCE(18); + if (lookahead == ';') + ADVANCE(28); + if (lookahead == '<') + ADVANCE(30); + if (lookahead == '=') + ADVANCE(88); + if (lookahead == '>') + ADVANCE(39); + if (lookahead == '[') + ADVANCE(61); + if (lookahead == '\\') + ADVANCE(124); + if (lookahead == ']') + ADVANCE(61); + if (lookahead == '`') + ADVANCE(50); + if (lookahead == '{') + ADVANCE(61); + if (lookahead == '|') + ADVANCE(52); + if (lookahead == '}') + ADVANCE(61); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(123); + if (lookahead != 0) + ADVANCE(4); + END_STATE(); + case 124: + if (lookahead == '\n') + SKIP(123); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); + END_STATE(); + case 125: + if (lookahead == '\n') + ADVANCE(83); + if (lookahead == '\"') + ADVANCE(5); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '$') + ADVANCE(7); + if (lookahead == '&') + ADVANCE(11); + if (lookahead == '\'') + ADVANCE(15); + if (lookahead == ')') + ADVANCE(18); + if (lookahead == ';') + ADVANCE(28); + if (lookahead == '<') + ADVANCE(59); + if (lookahead == '>') + ADVANCE(39); + if (lookahead == '[') + ADVANCE(61); + if (lookahead == '\\') + ADVANCE(126); + if (lookahead == ']') + ADVANCE(61); + if (lookahead == '`') + ADVANCE(50); + if (lookahead == '{') + ADVANCE(61); + if (lookahead == '|') + ADVANCE(52); + if (lookahead == '}') + ADVANCE(61); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(125); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(4); + END_STATE(); + case 126: + if (lookahead == '\n') + SKIP(125); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); + END_STATE(); + case 127: + if (lookahead == '\n') + ADVANCE(83); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '&') + ADVANCE(84); + if (lookahead == ')') + ADVANCE(18); + if (lookahead == ';') + ADVANCE(28); + if (lookahead == '\\') + ADVANCE(128); + if (lookahead == '|') + ADVANCE(52); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(127); + if (lookahead != 0 && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); + END_STATE(); + case 128: + if (lookahead == '\n') + SKIP(127); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); + END_STATE(); + case 129: + if (lookahead == '!') + ADVANCE(130); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '&') + ADVANCE(69); + if (lookahead == '-') + ADVANCE(132); + if (lookahead == '<') + ADVANCE(134); + if (lookahead == '=') + ADVANCE(135); + if (lookahead == '>') + ADVANCE(138); + if (lookahead == '\\') + SKIP(139); + if (lookahead == ']') + ADVANCE(48); + if (lookahead == '|') + ADVANCE(140); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(129); + END_STATE(); + case 130: + if (lookahead == '=') + ADVANCE(131); + END_STATE(); + case 131: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + END_STATE(); + case 132: + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(133); + END_STATE(); + case 133: + ACCEPT_TOKEN(sym_test_operator); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(133); + END_STATE(); + case 134: + ACCEPT_TOKEN(anon_sym_LT); + END_STATE(); + case 135: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') + ADVANCE(136); + if (lookahead == '~') + ADVANCE(137); + END_STATE(); + case 136: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + END_STATE(); + case 137: + ACCEPT_TOKEN(anon_sym_EQ_TILDE); + END_STATE(); + case 138: + ACCEPT_TOKEN(anon_sym_GT); + END_STATE(); + case 139: + if (lookahead == '\n') + SKIP(129); + END_STATE(); + case 140: + if (lookahead == '|') + ADVANCE(54); + END_STATE(); + case 141: + if (lookahead == '!') + ADVANCE(130); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '&') + ADVANCE(69); + if (lookahead == '-') + ADVANCE(132); + if (lookahead == '<') + ADVANCE(134); + if (lookahead == '=') + ADVANCE(135); + if (lookahead == '>') + ADVANCE(138); + if (lookahead == '\\') + SKIP(142); + if (lookahead == ']') + ADVANCE(143); + if (lookahead == '|') + ADVANCE(140); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(141); + END_STATE(); + case 142: + if (lookahead == '\n') + SKIP(141); + END_STATE(); + case 143: + if (lookahead == ']') + ADVANCE(144); + END_STATE(); + case 144: + ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); + END_STATE(); + case 145: + if (lookahead == '#') + ADVANCE(6); + if (lookahead == '$') + ADVANCE(98); + if (lookahead == '*') + ADVANCE(99); + if (lookahead == '-') + ADVANCE(100); + if (lookahead == '0') + ADVANCE(146); + if (lookahead == '?') + ADVANCE(102); + if (lookahead == '@') + ADVANCE(103); + if (lookahead == '\\') + ADVANCE(148); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(149); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(147); + if (lookahead != 0 && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '_' || lookahead > 'z')) + ADVANCE(92); + END_STATE(); + case 146: + ACCEPT_TOKEN(anon_sym_0); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(147); + END_STATE(); + case 147: + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(147); + END_STATE(); + case 148: + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\n') + ADVANCE(149); + if (lookahead == '\\') + ADVANCE(93); + if (lookahead == '\"' || + lookahead == '$' || + lookahead == '`') + ADVANCE(92); + if (lookahead != 0) + ADVANCE(92); + END_STATE(); + case 149: + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '#') + ADVANCE(6); + if (lookahead == '*') + ADVANCE(99); + if (lookahead == '-') + ADVANCE(100); + if (lookahead == '0') + ADVANCE(146); + if (lookahead == '?') + ADVANCE(102); + if (lookahead == '@') + ADVANCE(103); + if (lookahead == '\\') + ADVANCE(148); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(149); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(147); + if (lookahead != 0 && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '_' || lookahead > 'z')) + ADVANCE(92); + END_STATE(); + case 150: + ACCEPT_TOKEN(anon_sym__); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(147); + END_STATE(); + case 151: + if (lookahead == '\"') + ADVANCE(5); + if (lookahead == '#') + ADVANCE(6); + if (lookahead == '$') + ADVANCE(7); + if (lookahead == '%') + ADVANCE(10); + if (lookahead == '\'') + ADVANCE(15); + if (lookahead == '-') + ADVANCE(22); + if (lookahead == '/') + ADVANCE(23); + if (lookahead == ':') + ADVANCE(25); + if (lookahead == '<') + ADVANCE(79); + if (lookahead == '=') + ADVANCE(152); + if (lookahead == '>') + ADVANCE(80); + if (lookahead == '[') + ADVANCE(61); + if (lookahead == '\\') + ADVANCE(153); + if (lookahead == ']') + ADVANCE(61); + if (lookahead == '`') + ADVANCE(50); + if (lookahead == '{') + ADVANCE(61); + if (lookahead == '}') + ADVANCE(55); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(151); if (lookahead != 0 && (lookahead < '\"' || lookahead > ')') && (lookahead < ':' || lookahead > '>') && (lookahead < '{' || lookahead > '}')) - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 304: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '\\') - ADVANCE(137); - 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 305: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '\\') - ADVANCE(137); - 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 306: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '-') - ADVANCE(307); - if (lookahead == '?') - ADVANCE(308); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - lookahead != '?' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(138); - END_STATE(); - case 307: - ACCEPT_TOKEN(anon_sym_COLON_DASH); - if (lookahead == '\\') - ADVANCE(137); - 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 308: - ACCEPT_TOKEN(anon_sym_COLON_QMARK); - if (lookahead == '\\') - ADVANCE(137); - 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 309: + case 152: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '\\') - ADVANCE(137); + ADVANCE(3); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5014,830 +3002,810 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 310: + case 153: if (lookahead == '\n') - SKIP(303); + SKIP(151); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 311: + case 154: if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == '$') - ADVANCE(262); + ADVANCE(98); if (lookahead == '*') - ADVANCE(18); + ADVANCE(99); if (lookahead == '-') - ADVANCE(21); + ADVANCE(100); if (lookahead == '0') - ADVANCE(23); + ADVANCE(101); if (lookahead == '?') - ADVANCE(43); + ADVANCE(102); if (lookahead == '@') - ADVANCE(44); + ADVANCE(103); if (lookahead == '\\') - SKIP(312); + SKIP(155); if (lookahead == '_') - ADVANCE(50); + ADVANCE(105); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(311); + SKIP(154); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + ADVANCE(71); END_STATE(); - case 312: + case 155: if (lookahead == '\n') - SKIP(311); + SKIP(154); END_STATE(); - case 313: + case 156: if (lookahead == '\"') - ADVANCE(4); + ADVANCE(5); if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == '$') - ADVANCE(6); + ADVANCE(7); if (lookahead == '&') - ADVANCE(207); + ADVANCE(69); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(15); if (lookahead == ')') - ADVANCE(17); + ADVANCE(18); if (lookahead == '<') - ADVANCE(241); + ADVANCE(79); if (lookahead == '>') - ADVANCE(242); + ADVANCE(80); if (lookahead == '[') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\\') - ADVANCE(314); + ADVANCE(157); if (lookahead == ']') - ADVANCE(143); + ADVANCE(61); if (lookahead == '`') - ADVANCE(51); + ADVANCE(50); if (lookahead == '{') - ADVANCE(143); + ADVANCE(61); if (lookahead == '|') - ADVANCE(131); + ADVANCE(52); if (lookahead == '}') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(313); + SKIP(156); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(248); + ADVANCE(86); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<') - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 314: + case 157: if (lookahead == '\n') - SKIP(313); + SKIP(156); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 315: - if (lookahead == '\"') ADVANCE(4); + END_STATE(); + case 158: + if (lookahead == '\"') + ADVANCE(5); if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == '$') - ADVANCE(6); + ADVANCE(7); if (lookahead == '&') - ADVANCE(316); + ADVANCE(159); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(15); if (lookahead == ')') - ADVANCE(17); + ADVANCE(18); if (lookahead == '<') ADVANCE(30); if (lookahead == '=') - ADVANCE(250); + ADVANCE(88); if (lookahead == '>') ADVANCE(39); if (lookahead == '[') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\\') - ADVANCE(317); + ADVANCE(160); if (lookahead == ']') - ADVANCE(143); + ADVANCE(61); if (lookahead == '`') - ADVANCE(51); + ADVANCE(50); if (lookahead == '{') - ADVANCE(143); + ADVANCE(61); if (lookahead == '|') - ADVANCE(131); + ADVANCE(52); if (lookahead == '}') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(315); + SKIP(158); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && (lookahead < ';' || lookahead > '>')) - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 316: + case 159: if (lookahead == '&') - ADVANCE(11); - if (lookahead == '>') ADVANCE(12); + if (lookahead == '>') + ADVANCE(13); END_STATE(); - case 317: + case 160: if (lookahead == '\n') - SKIP(315); + SKIP(158); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 318: - if (lookahead == '\"') ADVANCE(4); + END_STATE(); + case 161: + if (lookahead == '\"') + ADVANCE(5); if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == '$') - ADVANCE(6); + ADVANCE(7); if (lookahead == '&') - ADVANCE(316); + ADVANCE(159); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(15); if (lookahead == '(') - ADVANCE(16); - if (lookahead == ')') ADVANCE(17); + if (lookahead == ')') + ADVANCE(18); if (lookahead == '<') ADVANCE(30); if (lookahead == '=') - ADVANCE(250); + ADVANCE(88); if (lookahead == '>') ADVANCE(39); if (lookahead == '[') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\\') - ADVANCE(319); + ADVANCE(162); if (lookahead == ']') - ADVANCE(143); + ADVANCE(61); if (lookahead == '`') - ADVANCE(51); + ADVANCE(50); if (lookahead == '{') - ADVANCE(143); + ADVANCE(61); if (lookahead == '|') - ADVANCE(131); + ADVANCE(52); if (lookahead == '}') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(318); + SKIP(161); if (lookahead != 0 && (lookahead < ';' || lookahead > '>')) - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 319: + case 162: if (lookahead == '\n') - SKIP(318); + SKIP(161); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 320: - if (lookahead == '\"') ADVANCE(4); + END_STATE(); + case 163: + if (lookahead == '\"') + ADVANCE(5); if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == '$') - ADVANCE(6); + ADVANCE(7); if (lookahead == '&') - ADVANCE(316); + ADVANCE(159); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(15); if (lookahead == ')') - ADVANCE(17); + ADVANCE(18); if (lookahead == '<') - ADVANCE(141); + ADVANCE(59); if (lookahead == '>') ADVANCE(39); if (lookahead == '[') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\\') - ADVANCE(321); + ADVANCE(164); if (lookahead == ']') - ADVANCE(143); + ADVANCE(61); if (lookahead == '`') - ADVANCE(51); + ADVANCE(50); if (lookahead == '{') - ADVANCE(143); + ADVANCE(61); if (lookahead == '|') - ADVANCE(131); + ADVANCE(52); if (lookahead == '}') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(320); + SKIP(163); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<') - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 321: + case 164: if (lookahead == '\n') - SKIP(320); + SKIP(163); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 322: - if (lookahead == '\"') ADVANCE(4); + END_STATE(); + case 165: + if (lookahead == '\"') + ADVANCE(5); if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == '$') - ADVANCE(6); + ADVANCE(7); if (lookahead == '&') - ADVANCE(207); + ADVANCE(69); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(15); if (lookahead == '<') - ADVANCE(241); + ADVANCE(79); if (lookahead == '>') - ADVANCE(242); + ADVANCE(80); if (lookahead == '[') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\\') - ADVANCE(323); + ADVANCE(166); if (lookahead == ']') - ADVANCE(143); + ADVANCE(61); if (lookahead == '`') - ADVANCE(51); + ADVANCE(50); if (lookahead == '{') - ADVANCE(143); + ADVANCE(61); if (lookahead == '|') - ADVANCE(131); + ADVANCE(52); if (lookahead == '}') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(322); + SKIP(165); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(248); + ADVANCE(86); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<') - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 323: + case 166: if (lookahead == '\n') - SKIP(322); + SKIP(165); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 324: - if (lookahead == '\"') ADVANCE(4); + END_STATE(); + case 167: + if (lookahead == '\"') + ADVANCE(5); if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == '$') - ADVANCE(6); + ADVANCE(7); if (lookahead == '&') - ADVANCE(316); + ADVANCE(159); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(15); if (lookahead == '<') ADVANCE(30); if (lookahead == '=') - ADVANCE(250); + ADVANCE(88); if (lookahead == '>') ADVANCE(39); if (lookahead == '[') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\\') - ADVANCE(325); + ADVANCE(168); if (lookahead == ']') - ADVANCE(143); + ADVANCE(61); if (lookahead == '`') - ADVANCE(51); + ADVANCE(50); if (lookahead == '{') - ADVANCE(143); + ADVANCE(61); if (lookahead == '|') - ADVANCE(131); + ADVANCE(52); if (lookahead == '}') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(324); + SKIP(167); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && (lookahead < ';' || lookahead > '>')) - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 325: + case 168: if (lookahead == '\n') - SKIP(324); + SKIP(167); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 326: - if (lookahead == '\"') ADVANCE(4); + END_STATE(); + case 169: + if (lookahead == '\"') + ADVANCE(5); if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == '$') - ADVANCE(6); + ADVANCE(7); if (lookahead == '&') - ADVANCE(316); + ADVANCE(159); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(15); if (lookahead == '(') - ADVANCE(16); + ADVANCE(17); if (lookahead == '<') ADVANCE(30); if (lookahead == '=') - ADVANCE(250); + ADVANCE(88); if (lookahead == '>') ADVANCE(39); if (lookahead == '[') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\\') - ADVANCE(327); + ADVANCE(170); if (lookahead == ']') - ADVANCE(143); + ADVANCE(61); if (lookahead == '`') - ADVANCE(51); + ADVANCE(50); if (lookahead == '{') - ADVANCE(143); + ADVANCE(61); if (lookahead == '|') - ADVANCE(131); + ADVANCE(52); if (lookahead == '}') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(326); + SKIP(169); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && (lookahead < ';' || lookahead > '>')) - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 327: + case 170: if (lookahead == '\n') - SKIP(326); + SKIP(169); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 328: - if (lookahead == '\"') ADVANCE(4); + END_STATE(); + case 171: + if (lookahead == '\"') + ADVANCE(5); if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == '$') - ADVANCE(6); + ADVANCE(7); if (lookahead == '&') - ADVANCE(316); + ADVANCE(159); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(15); if (lookahead == '<') - ADVANCE(141); + ADVANCE(59); if (lookahead == '>') ADVANCE(39); if (lookahead == '[') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\\') - ADVANCE(329); + ADVANCE(172); if (lookahead == ']') - ADVANCE(143); + ADVANCE(61); if (lookahead == '`') - ADVANCE(51); + ADVANCE(50); if (lookahead == '{') - ADVANCE(143); + ADVANCE(61); if (lookahead == '|') - ADVANCE(131); + ADVANCE(52); if (lookahead == '}') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(328); + SKIP(171); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<') - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 329: + case 172: if (lookahead == '\n') - SKIP(328); + SKIP(171); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 330: + case 173: if (lookahead == 0) ADVANCE(1); if (lookahead == '!') - ADVANCE(136); + ADVANCE(2); if (lookahead == '\"') - ADVANCE(4); + ADVANCE(5); if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == '$') - ADVANCE(6); + ADVANCE(7); if (lookahead == '&') - ADVANCE(140); + ADVANCE(58); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(15); if (lookahead == '(') - ADVANCE(16); + ADVANCE(17); if (lookahead == ';') - ADVANCE(331); + ADVANCE(174); if (lookahead == '<') - ADVANCE(141); + ADVANCE(59); if (lookahead == '>') ADVANCE(39); if (lookahead == '[') ADVANCE(45); if (lookahead == '\\') - ADVANCE(332); + ADVANCE(175); if (lookahead == ']') - ADVANCE(143); + ADVANCE(61); if (lookahead == '`') - ADVANCE(51); - if (lookahead == 'c') - ADVANCE(144); - if (lookahead == 'd') - ADVANCE(148); - if (lookahead == 'e') - ADVANCE(155); - if (lookahead == 'f') - ADVANCE(161); - if (lookahead == 'i') - ADVANCE(171); - if (lookahead == 'l') - ADVANCE(173); - if (lookahead == 'r') - ADVANCE(178); - if (lookahead == 't') - ADVANCE(186); - if (lookahead == 'u') - ADVANCE(193); - if (lookahead == 'w') - ADVANCE(201); + ADVANCE(50); if (lookahead == '{') - ADVANCE(143); + ADVANCE(61); if (lookahead == '}') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(330); + SKIP(173); if ((lookahead < '&' || lookahead > ')') && (lookahead < '{' || lookahead > '}')) - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 331: + case 174: if (lookahead == ';') ADVANCE(29); END_STATE(); - case 332: + case 175: if (lookahead == '\n') - SKIP(330); + SKIP(173); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 333: + case 176: if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == '$') - ADVANCE(334); + ADVANCE(177); if (lookahead == '\\') - SKIP(335); + SKIP(178); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(333); + SKIP(176); END_STATE(); - case 334: + case 177: ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead == '{') - ADVANCE(8); + ADVANCE(9); END_STATE(); - case 335: + case 178: if (lookahead == '\n') - SKIP(333); + SKIP(176); END_STATE(); - case 336: + case 179: if (lookahead == '\"') - ADVANCE(4); + ADVANCE(5); if (lookahead == '#') - ADVANCE(337); + ADVANCE(180); if (lookahead == '$') - ADVANCE(339); + ADVANCE(182); if (lookahead == '\'') - ADVANCE(344); + ADVANCE(187); if (lookahead == '<') - ADVANCE(347); + ADVANCE(190); if (lookahead == '>') - ADVANCE(349); + ADVANCE(192); if (lookahead == '[') - ADVANCE(351); + ADVANCE(194); if (lookahead == '\\') - ADVANCE(352); + ADVANCE(195); if (lookahead == ']') - ADVANCE(351); + ADVANCE(194); if (lookahead == '`') - ADVANCE(355); + ADVANCE(198); if (lookahead == '{') - ADVANCE(351); + ADVANCE(194); if (lookahead == '}') - ADVANCE(351); + ADVANCE(194); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(336); + SKIP(179); if (('&' <= lookahead && lookahead <= ')') || lookahead == ';' || lookahead == '|') - ADVANCE(342); + ADVANCE(185); if (lookahead != 0) - ADVANCE(354); + ADVANCE(197); END_STATE(); - case 337: + case 180: ACCEPT_TOKEN(sym_regex); if (lookahead == '\\') - ADVANCE(338); + ADVANCE(181); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(337); + ADVANCE(180); END_STATE(); - case 338: + case 181: ACCEPT_TOKEN(sym_regex); if (lookahead == '\\') - ADVANCE(338); + ADVANCE(181); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(337); + ADVANCE(180); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(337); + ADVANCE(180); END_STATE(); - case 339: + case 182: ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead == '(') - ADVANCE(340); + ADVANCE(183); if (lookahead == '\\') - ADVANCE(341); + ADVANCE(184); if (lookahead == '{') - ADVANCE(343); + ADVANCE(186); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(342); + ADVANCE(185); END_STATE(); - case 340: + case 183: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); if (lookahead == '\\') - ADVANCE(341); + ADVANCE(184); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(342); + ADVANCE(185); END_STATE(); - case 341: + case 184: ACCEPT_TOKEN(sym_regex); if (lookahead == '\\') - ADVANCE(341); + ADVANCE(184); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(342); + ADVANCE(185); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(342); + ADVANCE(185); END_STATE(); - case 342: + case 185: ACCEPT_TOKEN(sym_regex); if (lookahead == '\\') - ADVANCE(341); + ADVANCE(184); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(342); + ADVANCE(185); END_STATE(); - case 343: + case 186: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); if (lookahead == '\\') - ADVANCE(341); + ADVANCE(184); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(342); + ADVANCE(185); END_STATE(); - case 344: + case 187: ACCEPT_TOKEN(sym_regex); if (lookahead == '\'') - ADVANCE(345); + ADVANCE(188); if (lookahead == '\\') - ADVANCE(346); + ADVANCE(189); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(14); + ADVANCE(15); if (lookahead != 0) - ADVANCE(344); + ADVANCE(187); END_STATE(); - case 345: + case 188: ACCEPT_TOKEN(sym_raw_string); if (lookahead == '\\') - ADVANCE(341); + ADVANCE(184); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(342); + ADVANCE(185); END_STATE(); - case 346: + case 189: ACCEPT_TOKEN(sym_regex); if (lookahead == '\n') - ADVANCE(14); + ADVANCE(15); if (lookahead == '\'') - ADVANCE(345); + ADVANCE(188); if (lookahead == '\\') - ADVANCE(346); + ADVANCE(189); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(344); + ADVANCE(187); if (lookahead != 0) - ADVANCE(344); + ADVANCE(187); END_STATE(); - case 347: + case 190: ACCEPT_TOKEN(sym_regex); if (lookahead == '(') - ADVANCE(348); + ADVANCE(191); if (lookahead == '\\') - ADVANCE(341); + ADVANCE(184); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(342); + ADVANCE(185); END_STATE(); - case 348: + case 191: ACCEPT_TOKEN(anon_sym_LT_LPAREN); if (lookahead == '\\') - ADVANCE(341); + ADVANCE(184); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(342); + ADVANCE(185); END_STATE(); - case 349: + case 192: ACCEPT_TOKEN(sym_regex); if (lookahead == '(') - ADVANCE(350); + ADVANCE(193); if (lookahead == '\\') - ADVANCE(341); + ADVANCE(184); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(342); + ADVANCE(185); END_STATE(); - case 350: + case 193: ACCEPT_TOKEN(anon_sym_GT_LPAREN); if (lookahead == '\\') - ADVANCE(341); + ADVANCE(184); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(342); + ADVANCE(185); END_STATE(); - case 351: + case 194: ACCEPT_TOKEN(sym_regex); if (lookahead == '[') - ADVANCE(351); + ADVANCE(194); if (lookahead == '\\') - ADVANCE(341); + ADVANCE(184); if (lookahead == ']') - ADVANCE(351); + ADVANCE(194); if (lookahead == '{') - ADVANCE(351); + ADVANCE(194); if (lookahead == '}') - ADVANCE(351); + ADVANCE(194); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(342); + ADVANCE(185); END_STATE(); - case 352: + case 195: ACCEPT_TOKEN(sym_regex); if (lookahead == '\\') - ADVANCE(353); + ADVANCE(196); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(342); + ADVANCE(185); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(354); + ADVANCE(197); END_STATE(); - case 353: + case 196: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(352); + ADVANCE(195); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(342); + ADVANCE(185); if (('\"' <= lookahead && lookahead <= '$') || ('&' <= lookahead && lookahead <= ')') || lookahead == ';' || @@ -5846,16 +3814,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('[' <= lookahead && lookahead <= ']') || lookahead == '`' || ('{' <= lookahead && lookahead <= '}')) - ADVANCE(342); + ADVANCE(185); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(354); + ADVANCE(197); END_STATE(); - case 354: + case 197: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(352); + ADVANCE(195); if (('\"' <= lookahead && lookahead <= '$') || ('&' <= lookahead && lookahead <= ')') || lookahead == ';' || @@ -5864,781 +3832,325 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('[' <= lookahead && lookahead <= ']') || lookahead == '`' || ('{' <= lookahead && lookahead <= '}')) - ADVANCE(342); + ADVANCE(185); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(354); + ADVANCE(197); END_STATE(); - case 355: + case 198: ACCEPT_TOKEN(anon_sym_BQUOTE); if (lookahead == '\\') - ADVANCE(341); + ADVANCE(184); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(342); + ADVANCE(185); END_STATE(); - case 356: - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '\\') - SKIP(357); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(356); - END_STATE(); - case 357: + case 199: if (lookahead == '\n') - SKIP(356); - END_STATE(); - case 358: - if (lookahead == '\n') - ADVANCE(245); + ADVANCE(83); if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == '&') - ADVANCE(10); + ADVANCE(11); if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(359); + ADVANCE(200); if (lookahead == '>') - ADVANCE(360); + ADVANCE(201); if (lookahead == '\\') - SKIP(361); + SKIP(202); if (lookahead == '|') - ADVANCE(131); + ADVANCE(52); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(358); + SKIP(199); END_STATE(); - case 359: + case 200: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') ADVANCE(31); if (lookahead == '<') ADVANCE(33); END_STATE(); - case 360: + case 201: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '&') ADVANCE(40); if (lookahead == '>') ADVANCE(42); END_STATE(); - case 361: + case 202: if (lookahead == '\n') - SKIP(358); + SKIP(199); END_STATE(); - case 362: - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '\\') - SKIP(363); - if (lookahead == ']') - ADVANCE(211); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(362); - END_STATE(); - case 363: - if (lookahead == '\n') - SKIP(362); - END_STATE(); - case 364: - if (lookahead == '!') - ADVANCE(136); + case 203: if (lookahead == '\"') - ADVANCE(4); + ADVANCE(5); if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(140); + ADVANCE(7); if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '(') - ADVANCE(16); + ADVANCE(15); if (lookahead == '<') - ADVANCE(141); + ADVANCE(79); if (lookahead == '>') - ADVANCE(39); + ADVANCE(80); if (lookahead == '[') - ADVANCE(45); + ADVANCE(61); if (lookahead == '\\') - ADVANCE(365); + ADVANCE(204); if (lookahead == ']') - ADVANCE(143); + ADVANCE(48); if (lookahead == '`') - ADVANCE(51); - if (lookahead == 'c') - ADVANCE(144); - if (lookahead == 'd') - ADVANCE(366); - if (lookahead == 'e') - ADVANCE(155); - if (lookahead == 'f') - ADVANCE(161); - if (lookahead == 'i') - ADVANCE(171); - if (lookahead == 'l') - ADVANCE(173); - if (lookahead == 'r') - ADVANCE(178); - if (lookahead == 't') - ADVANCE(186); - if (lookahead == 'u') - ADVANCE(193); - if (lookahead == 'w') - ADVANCE(201); + ADVANCE(50); if (lookahead == '{') - ADVANCE(143); + ADVANCE(61); if (lookahead == '}') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(364); + SKIP(203); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 365: + case 204: if (lookahead == '\n') - SKIP(364); + SKIP(203); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 366: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'e') - ADVANCE(149); - if (lookahead == 'o') - ADVANCE(367); - 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 367: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'n') - ADVANCE(368); - 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 368: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'e') - ADVANCE(369); - 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 369: - ACCEPT_TOKEN(anon_sym_done); - if (lookahead == '\\') - ADVANCE(137); - 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 370: - if (lookahead == '!') - ADVANCE(136); - if (lookahead == '\"') ADVANCE(4); + END_STATE(); + case 205: + if (lookahead == '!') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(5); if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == '$') - ADVANCE(6); + ADVANCE(7); if (lookahead == '&') - ADVANCE(140); + ADVANCE(58); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(15); if (lookahead == '(') - ADVANCE(16); + ADVANCE(17); if (lookahead == '<') - ADVANCE(141); + ADVANCE(59); if (lookahead == '>') ADVANCE(39); if (lookahead == '[') ADVANCE(45); if (lookahead == '\\') - ADVANCE(371); + ADVANCE(206); if (lookahead == ']') - ADVANCE(143); + ADVANCE(61); if (lookahead == '`') - ADVANCE(51); - if (lookahead == 'c') - ADVANCE(144); - if (lookahead == 'd') - ADVANCE(148); - if (lookahead == 'e') - ADVANCE(372); - if (lookahead == 'f') - ADVANCE(378); - if (lookahead == 'i') - ADVANCE(171); - if (lookahead == 'l') - ADVANCE(173); - if (lookahead == 'r') - ADVANCE(178); - if (lookahead == 't') - ADVANCE(186); - if (lookahead == 'u') - ADVANCE(193); - if (lookahead == 'w') - ADVANCE(201); + ADVANCE(50); if (lookahead == '{') - ADVANCE(143); + ADVANCE(61); if (lookahead == '}') - ADVANCE(143); + ADVANCE(55); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(370); + SKIP(205); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 371: + case 206: if (lookahead == '\n') - SKIP(370); + SKIP(205); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 372: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'l') - ADVANCE(373); - if (lookahead == 'x') - 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 373: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'i') - ADVANCE(374); - if (lookahead == 's') - ADVANCE(376); - 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 374: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'f') - ADVANCE(375); - 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 375: - ACCEPT_TOKEN(anon_sym_elif); - if (lookahead == '\\') - ADVANCE(137); - 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 376: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'e') - ADVANCE(377); - 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 377: - ACCEPT_TOKEN(anon_sym_else); - if (lookahead == '\\') - ADVANCE(137); - 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 378: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'i') - ADVANCE(379); - if (lookahead == 'o') - ADVANCE(162); - if (lookahead == 'u') - 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 379: - ACCEPT_TOKEN(anon_sym_fi); - if (lookahead == '\\') - ADVANCE(137); - 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 380: - if (lookahead == '!') - ADVANCE(136); - if (lookahead == '\"') ADVANCE(4); + END_STATE(); + case 207: + if (lookahead == '!') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(5); if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == '$') - ADVANCE(6); + ADVANCE(7); if (lookahead == '&') - ADVANCE(140); + ADVANCE(58); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(15); if (lookahead == '(') - ADVANCE(16); + ADVANCE(17); + if (lookahead == ')') + ADVANCE(18); if (lookahead == '<') - ADVANCE(141); + ADVANCE(59); if (lookahead == '>') ADVANCE(39); if (lookahead == '[') ADVANCE(45); if (lookahead == '\\') - ADVANCE(381); + ADVANCE(208); if (lookahead == ']') - ADVANCE(143); + ADVANCE(61); if (lookahead == '`') - ADVANCE(51); - if (lookahead == 'c') - ADVANCE(144); - if (lookahead == 'd') - ADVANCE(148); - if (lookahead == 'e') - ADVANCE(155); - if (lookahead == 'f') - ADVANCE(161); - if (lookahead == 'i') - ADVANCE(171); - if (lookahead == 'l') - ADVANCE(173); - if (lookahead == 'r') - ADVANCE(178); - if (lookahead == 't') - ADVANCE(186); - if (lookahead == 'u') - ADVANCE(193); - if (lookahead == 'w') - ADVANCE(201); + ADVANCE(50); if (lookahead == '{') - ADVANCE(143); + ADVANCE(61); if (lookahead == '}') + ADVANCE(61); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(207); + if (lookahead != 0 && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); + END_STATE(); + case 208: + if (lookahead == '\n') + SKIP(207); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); + END_STATE(); + case 209: + if (lookahead == '\n') + ADVANCE(83); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '&') + ADVANCE(11); + if (lookahead == ')') + ADVANCE(18); + if (lookahead == ';') + ADVANCE(28); + if (lookahead == '<') + ADVANCE(200); + if (lookahead == '>') + ADVANCE(201); + if (lookahead == '\\') + SKIP(210); + if (lookahead == '|') + ADVANCE(52); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(209); + END_STATE(); + case 210: + if (lookahead == '\n') + SKIP(209); + END_STATE(); + case 211: + if (lookahead == '!') + ADVANCE(130); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '&') + ADVANCE(69); + if (lookahead == ')') + ADVANCE(18); + if (lookahead == '-') + ADVANCE(132); + if (lookahead == '<') ADVANCE(134); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(380); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(138); - END_STATE(); - case 381: - if (lookahead == '\n') - SKIP(380); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 382: - if (lookahead == '\n') - ADVANCE(245); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '&') - ADVANCE(10); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(383); - if (lookahead == '>') - ADVANCE(360); - if (lookahead == '\\') - SKIP(384); - if (lookahead == '|') - ADVANCE(131); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(382); - END_STATE(); - case 383: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') - ADVANCE(31); - END_STATE(); - case 384: - if (lookahead == '\n') - SKIP(382); - END_STATE(); - case 385: - if (lookahead == '!') - ADVANCE(136); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(140); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '(') - ADVANCE(16); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == '<') - ADVANCE(141); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(45); - if (lookahead == '\\') - ADVANCE(386); - if (lookahead == ']') - ADVANCE(143); - if (lookahead == '`') - ADVANCE(51); - if (lookahead == 'c') - ADVANCE(144); - if (lookahead == 'd') - ADVANCE(148); - if (lookahead == 'e') - ADVANCE(155); - if (lookahead == 'f') - ADVANCE(161); - if (lookahead == 'i') - ADVANCE(171); - if (lookahead == 'l') - ADVANCE(173); - if (lookahead == 'r') - ADVANCE(178); - if (lookahead == 't') - ADVANCE(186); - if (lookahead == 'u') - ADVANCE(193); - if (lookahead == 'w') - ADVANCE(201); - if (lookahead == '{') - ADVANCE(143); - if (lookahead == '}') - ADVANCE(143); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(385); - if (lookahead != 0 && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(138); - END_STATE(); - case 386: - if (lookahead == '\n') - SKIP(385); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 387: - if (lookahead == '\n') - ADVANCE(245); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '&') - ADVANCE(10); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(359); - if (lookahead == '>') - ADVANCE(360); - if (lookahead == '\\') - SKIP(388); - if (lookahead == '|') - ADVANCE(131); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(387); - END_STATE(); - case 388: - if (lookahead == '\n') - SKIP(387); - END_STATE(); - case 389: - if (lookahead == '!') - ADVANCE(287); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '&') - ADVANCE(207); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == '-') - ADVANCE(288); - if (lookahead == '<') - ADVANCE(290); if (lookahead == '=') - ADVANCE(36); + ADVANCE(135); if (lookahead == '>') - ADVANCE(291); + ADVANCE(138); if (lookahead == '\\') - SKIP(390); + SKIP(212); if (lookahead == '|') - ADVANCE(293); + ADVANCE(140); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(389); + SKIP(211); END_STATE(); - case 390: + case 212: if (lookahead == '\n') - SKIP(389); + SKIP(211); END_STATE(); - case 391: + case 213: if (lookahead == '!') - ADVANCE(392); + ADVANCE(214); if (lookahead == '\"') - ADVANCE(4); + ADVANCE(5); if (lookahead == '#') - ADVANCE(337); + ADVANCE(180); if (lookahead == '$') - ADVANCE(339); + ADVANCE(182); if (lookahead == '\'') - ADVANCE(344); + ADVANCE(187); if (lookahead == '(') - ADVANCE(393); + ADVANCE(215); if (lookahead == '-') - ADVANCE(394); + ADVANCE(216); if (lookahead == '<') - ADVANCE(347); + ADVANCE(190); if (lookahead == '>') - ADVANCE(349); + ADVANCE(192); if (lookahead == '[') - ADVANCE(351); + ADVANCE(194); if (lookahead == '\\') - ADVANCE(352); + ADVANCE(195); if (lookahead == ']') - ADVANCE(351); + ADVANCE(194); if (lookahead == '`') - ADVANCE(355); + ADVANCE(198); if (lookahead == '{') - ADVANCE(351); + ADVANCE(194); if (lookahead == '}') - ADVANCE(351); + ADVANCE(194); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(391); + SKIP(213); if (('&' <= lookahead && lookahead <= ')') || lookahead == ';' || lookahead == '|') - ADVANCE(342); + ADVANCE(185); if (lookahead != 0) - ADVANCE(354); + ADVANCE(197); END_STATE(); - case 392: + case 214: ACCEPT_TOKEN(anon_sym_BANG); if (lookahead == '\\') - ADVANCE(352); + ADVANCE(195); if (('\"' <= lookahead && lookahead <= '$') || ('&' <= lookahead && lookahead <= ')') || lookahead == ';' || @@ -6647,29 +4159,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('[' <= lookahead && lookahead <= ']') || lookahead == '`' || ('{' <= lookahead && lookahead <= '}')) - ADVANCE(342); + ADVANCE(185); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(354); + ADVANCE(197); END_STATE(); - case 393: + case 215: ACCEPT_TOKEN(anon_sym_LPAREN); if (lookahead == '\\') - ADVANCE(341); + ADVANCE(184); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(342); + ADVANCE(185); END_STATE(); - case 394: + case 216: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(352); + ADVANCE(195); if (('\"' <= lookahead && lookahead <= '$') || ('&' <= lookahead && lookahead <= ')') || lookahead == ';' || @@ -6678,1019 +4190,470 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('[' <= lookahead && lookahead <= ']') || lookahead == '`' || ('{' <= lookahead && lookahead <= '}')) - ADVANCE(342); + ADVANCE(185); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(395); + ADVANCE(217); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(354); + ADVANCE(197); END_STATE(); - case 395: + case 217: ACCEPT_TOKEN(sym_test_operator); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(395); + ADVANCE(217); END_STATE(); - case 396: + case 218: if (lookahead == '!') - ADVANCE(287); + ADVANCE(130); if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == '&') - ADVANCE(207); + ADVANCE(69); if (lookahead == ')') - ADVANCE(17); + ADVANCE(18); if (lookahead == '-') - ADVANCE(288); + ADVANCE(132); if (lookahead == '<') - ADVANCE(290); + ADVANCE(134); if (lookahead == '=') - ADVANCE(36); + ADVANCE(135); if (lookahead == '>') - ADVANCE(291); + ADVANCE(138); if (lookahead == '\\') - SKIP(397); + SKIP(219); if (lookahead == ']') - ADVANCE(296); + ADVANCE(143); if (lookahead == '|') - ADVANCE(398); + ADVANCE(220); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(396); + SKIP(218); END_STATE(); - case 397: + case 219: if (lookahead == '\n') - SKIP(396); + SKIP(218); END_STATE(); - case 398: + case 220: ACCEPT_TOKEN(anon_sym_PIPE); if (lookahead == '|') - ADVANCE(133); + ADVANCE(54); END_STATE(); - case 399: + case 221: if (lookahead == '\"') - ADVANCE(4); + ADVANCE(5); if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == '$') - ADVANCE(6); + ADVANCE(7); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(15); if (lookahead == '<') - ADVANCE(241); + ADVANCE(79); if (lookahead == '>') - ADVANCE(242); + ADVANCE(80); if (lookahead == '[') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\\') - ADVANCE(400); + ADVANCE(222); if (lookahead == ']') - ADVANCE(143); + ADVANCE(61); if (lookahead == '`') - ADVANCE(51); + ADVANCE(50); if (lookahead == '{') - ADVANCE(143); + ADVANCE(61); if (lookahead == '}') - ADVANCE(134); + ADVANCE(55); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(399); + SKIP(221); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 400: + case 222: if (lookahead == '\n') - SKIP(399); + SKIP(221); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 401: - if (lookahead == '\"') ADVANCE(4); - if (lookahead == '#') + END_STATE(); + case 223: + if (lookahead == '\"') ADVANCE(5); - if (lookahead == '$') + if (lookahead == '#') ADVANCE(6); + if (lookahead == '$') + ADVANCE(7); if (lookahead == '%') - ADVANCE(304); + ADVANCE(10); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(15); if (lookahead == '-') - ADVANCE(305); + ADVANCE(22); if (lookahead == ':') - ADVANCE(306); + ADVANCE(25); if (lookahead == '<') - ADVANCE(241); + ADVANCE(79); if (lookahead == '=') - ADVANCE(309); + ADVANCE(152); if (lookahead == '>') - ADVANCE(242); + ADVANCE(80); if (lookahead == '[') - ADVANCE(143); + ADVANCE(61); if (lookahead == '\\') - ADVANCE(402); + ADVANCE(224); if (lookahead == ']') - ADVANCE(143); + ADVANCE(61); if (lookahead == '`') - ADVANCE(51); + ADVANCE(50); if (lookahead == '{') - ADVANCE(143); + ADVANCE(61); if (lookahead == '}') - ADVANCE(134); + ADVANCE(55); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(401); + SKIP(223); if (lookahead != 0 && (lookahead < '\"' || lookahead > ')') && (lookahead < ':' || lookahead > '>') && (lookahead < '{' || lookahead > '}')) - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 402: + case 224: if (lookahead == '\n') - SKIP(401); + SKIP(223); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 403: + case 225: if (lookahead == '#') - ADVANCE(404); + ADVANCE(226); if (lookahead == '\\') - ADVANCE(406); + ADVANCE(228); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(403); + SKIP(225); if (lookahead != 0 && lookahead != '\"' && lookahead != '#' && lookahead != '}') - ADVANCE(407); + ADVANCE(229); END_STATE(); - case 404: + case 226: ACCEPT_TOKEN(sym_regex_without_right_brace); if (lookahead == '\\') - ADVANCE(405); + ADVANCE(227); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && lookahead != '}') - ADVANCE(404); + ADVANCE(226); END_STATE(); - case 405: + case 227: ACCEPT_TOKEN(sym_regex_without_right_brace); if (lookahead == '\\') - ADVANCE(405); + ADVANCE(227); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ' || lookahead == '}') - ADVANCE(404); + ADVANCE(226); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(404); + ADVANCE(226); END_STATE(); - case 406: + case 228: ACCEPT_TOKEN(sym_regex_without_right_brace); if (lookahead == '\\') - ADVANCE(406); + ADVANCE(228); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ' || lookahead == '}') - ADVANCE(407); + ADVANCE(229); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(407); + ADVANCE(229); END_STATE(); - case 407: + case 229: ACCEPT_TOKEN(sym_regex_without_right_brace); if (lookahead == '\\') - ADVANCE(406); + ADVANCE(228); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && lookahead != '}') - ADVANCE(407); + ADVANCE(229); END_STATE(); - case 408: + case 230: if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == '&') - ADVANCE(316); + ADVANCE(159); if (lookahead == ')') - ADVANCE(17); + ADVANCE(18); if (lookahead == '<') - ADVANCE(359); + ADVANCE(200); if (lookahead == '>') - ADVANCE(360); - if (lookahead == '\\') - SKIP(409); - if (lookahead == '|') - ADVANCE(131); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(408); - END_STATE(); - case 409: - if (lookahead == '\n') - SKIP(408); - END_STATE(); - case 410: - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '&') - ADVANCE(316); - if (lookahead == '<') - ADVANCE(359); - if (lookahead == '>') - ADVANCE(360); - if (lookahead == '\\') - SKIP(411); - if (lookahead == '`') - ADVANCE(51); - if (lookahead == '|') - ADVANCE(131); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(410); - END_STATE(); - case 411: - if (lookahead == '\n') - SKIP(410); - END_STATE(); - case 412: - if (lookahead == '\n') - ADVANCE(245); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '&') - ADVANCE(10); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(359); - if (lookahead == '>') - ADVANCE(360); - if (lookahead == '\\') - SKIP(413); - if (lookahead == 'e') - ADVANCE(285); - if (lookahead == '|') - ADVANCE(131); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(412); - END_STATE(); - case 413: - if (lookahead == '\n') - SKIP(412); - END_STATE(); - case 414: - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '<') - ADVANCE(241); - if (lookahead == '>') - ADVANCE(242); - if (lookahead == '[') - ADVANCE(143); - if (lookahead == '\\') - ADVANCE(415); - if (lookahead == ']') - ADVANCE(211); - if (lookahead == '`') - ADVANCE(51); - if (lookahead == '{') - ADVANCE(143); - if (lookahead == '}') - ADVANCE(143); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(414); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(138); - END_STATE(); - case 415: - if (lookahead == '\n') - SKIP(414); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 416: - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '+') - ADVANCE(19); - if (lookahead == '=') - ADVANCE(208); - if (lookahead == '\\') - SKIP(417); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(416); - END_STATE(); - case 417: - if (lookahead == '\n') - SKIP(416); - END_STATE(); - case 418: - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == '<') - ADVANCE(241); - if (lookahead == '>') - ADVANCE(242); - if (lookahead == '[') - ADVANCE(143); - if (lookahead == '\\') - ADVANCE(419); - if (lookahead == ']') - ADVANCE(143); - if (lookahead == '`') - ADVANCE(51); - if (lookahead == '{') - ADVANCE(143); - if (lookahead == '}') - ADVANCE(143); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(418); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(138); - END_STATE(); - case 419: - if (lookahead == '\n') - SKIP(418); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 420: - if (lookahead == '\n') - ADVANCE(245); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(275); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(241); - if (lookahead == '>') - ADVANCE(242); - if (lookahead == '[') - ADVANCE(143); - if (lookahead == '\\') - ADVANCE(421); - if (lookahead == ']') - ADVANCE(143); - if (lookahead == '`') - ADVANCE(51); - if (lookahead == '{') - ADVANCE(143); - if (lookahead == '}') - ADVANCE(143); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(420); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - (lookahead < '{' || lookahead > '}')) - ADVANCE(138); - END_STATE(); - case 421: - if (lookahead == '\n') - SKIP(420); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 422: - if (lookahead == '!') - ADVANCE(136); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(140); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '(') - ADVANCE(16); - if (lookahead == '<') - ADVANCE(141); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(45); - if (lookahead == '\\') - ADVANCE(423); - if (lookahead == ']') - ADVANCE(143); - if (lookahead == '`') - ADVANCE(51); - if (lookahead == 'c') - ADVANCE(144); - if (lookahead == 'd') - ADVANCE(148); - if (lookahead == 'e') - ADVANCE(155); - if (lookahead == 'f') - ADVANCE(378); - if (lookahead == 'i') - ADVANCE(171); - if (lookahead == 'l') - ADVANCE(173); - if (lookahead == 'r') - ADVANCE(178); - if (lookahead == 't') - ADVANCE(186); - if (lookahead == 'u') - ADVANCE(193); - if (lookahead == 'w') ADVANCE(201); - if (lookahead == '{') - ADVANCE(143); - if (lookahead == '}') - ADVANCE(143); + if (lookahead == '\\') + SKIP(231); + if (lookahead == '|') + ADVANCE(52); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(422); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(138); + SKIP(230); END_STATE(); - case 423: + case 231: if (lookahead == '\n') - SKIP(422); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(138); + SKIP(230); END_STATE(); - case 424: - if (lookahead == '\"') - ADVANCE(4); + case 232: if (lookahead == '#') - ADVANCE(139); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '\'') - ADVANCE(14); + ADVANCE(57); + if (lookahead == '&') + ADVANCE(159); if (lookahead == '<') - ADVANCE(241); + ADVANCE(200); if (lookahead == '>') - ADVANCE(242); - if (lookahead == '[') - ADVANCE(143); + ADVANCE(201); if (lookahead == '\\') - ADVANCE(425); - if (lookahead == ']') - ADVANCE(143); + SKIP(233); if (lookahead == '`') - ADVANCE(51); - if (lookahead == 'e') - ADVANCE(426); - if (lookahead == '{') - ADVANCE(143); - if (lookahead == '}') - ADVANCE(143); + ADVANCE(50); + if (lookahead == '|') + ADVANCE(52); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(424); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(138); + SKIP(232); END_STATE(); - case 425: + case 233: if (lookahead == '\n') - SKIP(424); + SKIP(232); + END_STATE(); + case 234: + if (lookahead == '\n') + ADVANCE(83); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '&') + ADVANCE(11); + if (lookahead == ')') + ADVANCE(18); + if (lookahead == ';') + ADVANCE(28); + if (lookahead == '<') + ADVANCE(200); + if (lookahead == '>') + ADVANCE(201); + if (lookahead == '\\') + ADVANCE(235); + if (lookahead == '|') + ADVANCE(52); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(234); + if (lookahead != 0 && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); + END_STATE(); + case 235: + if (lookahead == '\n') + SKIP(234); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 426: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 's') - ADVANCE(427); - 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 427: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'a') - ADVANCE(428); - 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 428: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'c') - ADVANCE(429); - 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 429: - ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') - ADVANCE(137); - 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 430: - if (lookahead == '\n') - ADVANCE(245); + case 236: + if (lookahead == '\"') + ADVANCE(5); if (lookahead == '#') - ADVANCE(139); - if (lookahead == '&') - ADVANCE(10); + ADVANCE(57); + if (lookahead == '$') + ADVANCE(7); + if (lookahead == '\'') + ADVANCE(15); if (lookahead == ')') - ADVANCE(17); - if (lookahead == ';') - ADVANCE(28); + ADVANCE(18); if (lookahead == '<') - ADVANCE(383); + ADVANCE(79); if (lookahead == '>') - ADVANCE(360); + ADVANCE(80); + if (lookahead == '[') + ADVANCE(61); if (lookahead == '\\') - SKIP(431); - if (lookahead == 'e') - ADVANCE(285); - if (lookahead == '|') - ADVANCE(131); + ADVANCE(237); + if (lookahead == ']') + ADVANCE(61); + if (lookahead == '`') + ADVANCE(50); + if (lookahead == '{') + ADVANCE(61); + if (lookahead == '}') + ADVANCE(61); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(430); + SKIP(236); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); END_STATE(); - case 431: + case 237: if (lookahead == '\n') - SKIP(430); + SKIP(236); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); END_STATE(); - case 432: - if (lookahead == '\n') - ADVANCE(245); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '&') - ADVANCE(10); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(383); - if (lookahead == '>') - ADVANCE(360); - if (lookahead == '\\') - SKIP(433); - if (lookahead == '|') - ADVANCE(131); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(432); - END_STATE(); - case 433: - if (lookahead == '\n') - SKIP(432); - END_STATE(); - case 434: + case 238: if (lookahead == '!') - ADVANCE(287); + ADVANCE(130); if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == '&') - ADVANCE(207); + ADVANCE(69); if (lookahead == ')') - ADVANCE(17); + ADVANCE(18); if (lookahead == '-') - ADVANCE(288); + ADVANCE(132); if (lookahead == '<') - ADVANCE(290); - if (lookahead == '=') - ADVANCE(36); - if (lookahead == '>') - ADVANCE(291); - if (lookahead == '\\') - SKIP(435); - if (lookahead == ']') - ADVANCE(296); - if (lookahead == '|') - ADVANCE(293); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(434); - END_STATE(); - case 435: - if (lookahead == '\n') - SKIP(434); - END_STATE(); - case 436: - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '\\') - SKIP(437); - if (lookahead == '}') ADVANCE(134); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(436); - END_STATE(); - case 437: - if (lookahead == '\n') - SKIP(436); - END_STATE(); - case 438: - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '&') - ADVANCE(316); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == '<') - ADVANCE(383); + if (lookahead == '=') + ADVANCE(135); if (lookahead == '>') - ADVANCE(360); + ADVANCE(138); if (lookahead == '\\') - SKIP(439); + SKIP(239); + if (lookahead == ']') + ADVANCE(143); if (lookahead == '|') - ADVANCE(131); + ADVANCE(140); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(438); + SKIP(238); END_STATE(); - case 439: + case 239: if (lookahead == '\n') - SKIP(438); + SKIP(238); END_STATE(); - case 440: + case 240: if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == '&') - ADVANCE(316); + ADVANCE(159); if (lookahead == ')') - ADVANCE(17); + ADVANCE(18); if (lookahead == '<') - ADVANCE(359); + ADVANCE(200); if (lookahead == '>') - ADVANCE(360); + ADVANCE(201); if (lookahead == '\\') - SKIP(441); + SKIP(241); if (lookahead == '`') - ADVANCE(51); + ADVANCE(50); if (lookahead == '|') - ADVANCE(131); + ADVANCE(52); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(440); + SKIP(240); END_STATE(); - case 441: + case 241: if (lookahead == '\n') - SKIP(440); + SKIP(240); END_STATE(); - case 442: + case 242: if (lookahead == '#') - ADVANCE(139); - if (lookahead == '&') - ADVANCE(316); - if (lookahead == '<') - ADVANCE(383); - if (lookahead == '>') - ADVANCE(360); - if (lookahead == '\\') - SKIP(443); - if (lookahead == '`') - ADVANCE(51); - if (lookahead == '|') - ADVANCE(131); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(442); - END_STATE(); - case 443: - if (lookahead == '\n') - SKIP(442); - END_STATE(); - case 444: - if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == ')') - ADVANCE(17); + ADVANCE(18); if (lookahead == '\\') - SKIP(445); + SKIP(243); if (lookahead == '|') - ADVANCE(233); + ADVANCE(244); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(444); + SKIP(242); END_STATE(); - case 445: + case 243: if (lookahead == '\n') - SKIP(444); + SKIP(242); END_STATE(); - case 446: + case 244: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 245: if (lookahead == '\n') - ADVANCE(245); + ADVANCE(83); if (lookahead == '#') - ADVANCE(139); + ADVANCE(57); if (lookahead == '&') - ADVANCE(246); + ADVANCE(84); if (lookahead == ';') ADVANCE(28); if (lookahead == '\\') - SKIP(447); + ADVANCE(246); if (lookahead == '|') - ADVANCE(131); + ADVANCE(52); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(446); - END_STATE(); - case 447: - if (lookahead == '\n') - SKIP(446); - END_STATE(); - case 448: - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '&') - ADVANCE(316); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == '<') - ADVANCE(383); - if (lookahead == '>') - ADVANCE(360); - if (lookahead == '\\') - SKIP(449); - if (lookahead == '`') - ADVANCE(51); - if (lookahead == '|') - ADVANCE(131); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(448); - END_STATE(); - case 449: - if (lookahead == '\n') - SKIP(448); - END_STATE(); - case 450: - if (lookahead == '!') - ADVANCE(136); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(140); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '(') - ADVANCE(16); - if (lookahead == ';') - ADVANCE(331); - if (lookahead == '<') - ADVANCE(141); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(45); - if (lookahead == '\\') - ADVANCE(451); - if (lookahead == ']') - ADVANCE(143); - if (lookahead == '`') - ADVANCE(51); - if (lookahead == 'c') - ADVANCE(144); - if (lookahead == 'd') - ADVANCE(148); - if (lookahead == 'e') - ADVANCE(452); - if (lookahead == 'f') - ADVANCE(161); - if (lookahead == 'i') - ADVANCE(171); - if (lookahead == 'l') - ADVANCE(173); - if (lookahead == 'r') - ADVANCE(178); - if (lookahead == 't') - ADVANCE(186); - if (lookahead == 'u') - ADVANCE(193); - if (lookahead == 'w') - ADVANCE(201); - if (lookahead == '{') - ADVANCE(143); - if (lookahead == '}') - ADVANCE(143); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(450); + SKIP(245); if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - (lookahead < '{' || lookahead > '}')) - ADVANCE(138); - END_STATE(); - case 451: - if (lookahead == '\n') - SKIP(450); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(138); - END_STATE(); - case 452: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 's') - ADVANCE(427); - if (lookahead == 'x') - ADVANCE(156); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && (lookahead < '\"' || lookahead > '$') && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -7699,473 +4662,398 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(138); - END_STATE(); - case 453: - if (lookahead == '\n') - ADVANCE(245); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '&') - ADVANCE(246); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '\\') - SKIP(454); - if (lookahead == '|') - ADVANCE(131); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(453); - END_STATE(); - case 454: - if (lookahead == '\n') - SKIP(453); - END_STATE(); - case 455: - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '&') - ADVANCE(207); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == '\\') - SKIP(456); - if (lookahead == '|') - ADVANCE(131); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(455); - END_STATE(); - case 456: - if (lookahead == '\n') - SKIP(455); - END_STATE(); - case 457: - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '&') - ADVANCE(207); - if (lookahead == '\\') - SKIP(458); - if (lookahead == '`') - ADVANCE(51); - if (lookahead == '|') - ADVANCE(131); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(457); - END_STATE(); - case 458: - if (lookahead == '\n') - SKIP(457); - END_STATE(); - case 459: - if (lookahead == '\n') - ADVANCE(245); - if (lookahead == '\"') ADVANCE(4); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(246); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(241); - if (lookahead == '>') - ADVANCE(242); - if (lookahead == '[') - ADVANCE(143); - if (lookahead == '\\') - ADVANCE(460); - if (lookahead == ']') - ADVANCE(143); - if (lookahead == '`') - ADVANCE(51); - if (lookahead == 'e') - ADVANCE(461); - if (lookahead == '{') - ADVANCE(143); - if (lookahead == '|') - ADVANCE(131); - if (lookahead == '}') - ADVANCE(143); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(459); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(248); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')')) - ADVANCE(138); END_STATE(); - case 460: + case 246: if (lookahead == '\n') - SKIP(459); + SKIP(245); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(138); + ADVANCE(4); END_STATE(); - case 461: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + case 247: + if (lookahead == '\n') + ADVANCE(83); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '&') + ADVANCE(11); + if (lookahead == ';') + ADVANCE(28); + if (lookahead == '<') + ADVANCE(200); + if (lookahead == '>') + ADVANCE(201); if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 's') - ADVANCE(462); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + if (lookahead == '|') + ADVANCE(52); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(247); + if (lookahead != 0 && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); + END_STATE(); + case 248: + if (lookahead == '\n') + SKIP(247); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < 'A' || lookahead > ']') && - (lookahead < '_' || lookahead > '}')) - ADVANCE(138); + lookahead != ' ') + ADVANCE(4); END_STATE(); - case 462: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == '\\') - ADVANCE(137); - if (lookahead == 'a') - ADVANCE(463); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(248); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < 'A' || lookahead > ']') && - (lookahead < '_' || lookahead > '}')) - ADVANCE(138); - END_STATE(); - case 463: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == '\\') - ADVANCE(137); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + switch (state) { + case 0: if (lookahead == 'c') - ADVANCE(464); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(248); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < 'A' || lookahead > ']') && - (lookahead < '_' || lookahead > '}')) - ADVANCE(138); - END_STATE(); - case 464: - ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') - ADVANCE(137); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(248); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < 'A' || lookahead > ']') && - (lookahead < '_' || lookahead > '}')) - ADVANCE(138); - END_STATE(); - case 465: - if (lookahead == '\n') - ADVANCE(245); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(10); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(30); - if (lookahead == '=') - ADVANCE(250); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(143); - if (lookahead == '\\') - ADVANCE(466); - if (lookahead == ']') - ADVANCE(143); - if (lookahead == '`') - ADVANCE(51); + ADVANCE(1); + if (lookahead == 'd') + ADVANCE(5); if (lookahead == 'e') - ADVANCE(426); - if (lookahead == '{') - ADVANCE(143); - if (lookahead == '|') - ADVANCE(131); - if (lookahead == '}') - ADVANCE(143); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(465); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')')) - ADVANCE(138); + ADVANCE(15); + if (lookahead == 'f') + ADVANCE(29); + if (lookahead == 'i') + ADVANCE(40); + if (lookahead == 'l') + ADVANCE(43); + if (lookahead == 'r') + ADVANCE(48); + if (lookahead == 't') + ADVANCE(56); + if (lookahead == 'u') + ADVANCE(66); + if (lookahead == 'w') + ADVANCE(74); END_STATE(); - case 466: - if (lookahead == '\n') - SKIP(465); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(138); + case 1: + if (lookahead == 'a') + ADVANCE(2); END_STATE(); - case 467: - if (lookahead == '\n') - ADVANCE(245); - if (lookahead == '\"') + case 2: + if (lookahead == 's') + ADVANCE(3); + END_STATE(); + case 3: + if (lookahead == 'e') ADVANCE(4); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '$') + END_STATE(); + case 4: + ACCEPT_TOKEN(anon_sym_case); + END_STATE(); + case 5: + if (lookahead == 'e') ADVANCE(6); - if (lookahead == '&') + if (lookahead == 'o') + ADVANCE(12); + END_STATE(); + case 6: + if (lookahead == 'c') + ADVANCE(7); + END_STATE(); + case 7: + if (lookahead == 'l') + ADVANCE(8); + END_STATE(); + case 8: + if (lookahead == 'a') + ADVANCE(9); + END_STATE(); + case 9: + if (lookahead == 'r') ADVANCE(10); - if (lookahead == '\'') + END_STATE(); + case 10: + if (lookahead == 'e') + ADVANCE(11); + END_STATE(); + case 11: + ACCEPT_TOKEN(anon_sym_declare); + END_STATE(); + case 12: + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == 'n') + ADVANCE(13); + END_STATE(); + case 13: + if (lookahead == 'e') ADVANCE(14); - if (lookahead == '(') + END_STATE(); + case 14: + ACCEPT_TOKEN(anon_sym_done); + END_STATE(); + case 15: + if (lookahead == 'l') ADVANCE(16); - if (lookahead == ';') + if (lookahead == 's') + ADVANCE(21); + if (lookahead == 'x') + ADVANCE(24); + END_STATE(); + case 16: + if (lookahead == 'i') + ADVANCE(17); + if (lookahead == 's') + ADVANCE(19); + END_STATE(); + case 17: + if (lookahead == 'f') + ADVANCE(18); + END_STATE(); + case 18: + ACCEPT_TOKEN(anon_sym_elif); + END_STATE(); + case 19: + if (lookahead == 'e') + ADVANCE(20); + END_STATE(); + case 20: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 21: + if (lookahead == 'a') + ADVANCE(22); + END_STATE(); + case 22: + if (lookahead == 'c') + ADVANCE(23); + END_STATE(); + case 23: + ACCEPT_TOKEN(anon_sym_esac); + END_STATE(); + case 24: + if (lookahead == 'p') + ADVANCE(25); + END_STATE(); + case 25: + if (lookahead == 'o') + ADVANCE(26); + END_STATE(); + case 26: + if (lookahead == 'r') + ADVANCE(27); + END_STATE(); + case 27: + if (lookahead == 't') ADVANCE(28); - if (lookahead == '<') + END_STATE(); + case 28: + ACCEPT_TOKEN(anon_sym_export); + END_STATE(); + case 29: + if (lookahead == 'i') ADVANCE(30); - if (lookahead == '=') - ADVANCE(250); - if (lookahead == '>') + if (lookahead == 'o') + ADVANCE(31); + if (lookahead == 'u') + ADVANCE(33); + END_STATE(); + case 30: + ACCEPT_TOKEN(anon_sym_fi); + END_STATE(); + case 31: + if (lookahead == 'r') + ADVANCE(32); + END_STATE(); + case 32: + ACCEPT_TOKEN(anon_sym_for); + END_STATE(); + case 33: + if (lookahead == 'n') + ADVANCE(34); + END_STATE(); + case 34: + if (lookahead == 'c') + ADVANCE(35); + END_STATE(); + case 35: + if (lookahead == 't') + ADVANCE(36); + END_STATE(); + case 36: + if (lookahead == 'i') + ADVANCE(37); + END_STATE(); + case 37: + if (lookahead == 'o') + ADVANCE(38); + END_STATE(); + case 38: + if (lookahead == 'n') ADVANCE(39); - if (lookahead == '[') - ADVANCE(143); - if (lookahead == '\\') - ADVANCE(468); - if (lookahead == ']') - ADVANCE(143); - if (lookahead == '`') + END_STATE(); + case 39: + ACCEPT_TOKEN(anon_sym_function); + END_STATE(); + case 40: + if (lookahead == 'f') + ADVANCE(41); + if (lookahead == 'n') + ADVANCE(42); + END_STATE(); + case 41: + ACCEPT_TOKEN(anon_sym_if); + END_STATE(); + case 42: + ACCEPT_TOKEN(anon_sym_in); + END_STATE(); + case 43: + if (lookahead == 'o') + ADVANCE(44); + END_STATE(); + case 44: + if (lookahead == 'c') + ADVANCE(45); + END_STATE(); + case 45: + if (lookahead == 'a') + ADVANCE(46); + END_STATE(); + case 46: + if (lookahead == 'l') + ADVANCE(47); + END_STATE(); + case 47: + ACCEPT_TOKEN(anon_sym_local); + END_STATE(); + case 48: + if (lookahead == 'e') + ADVANCE(49); + END_STATE(); + case 49: + if (lookahead == 'a') + ADVANCE(50); + END_STATE(); + case 50: + if (lookahead == 'd') ADVANCE(51); + END_STATE(); + case 51: + if (lookahead == 'o') + ADVANCE(52); + END_STATE(); + case 52: + if (lookahead == 'n') + ADVANCE(53); + END_STATE(); + case 53: + if (lookahead == 'l') + ADVANCE(54); + END_STATE(); + case 54: + if (lookahead == 'y') + ADVANCE(55); + END_STATE(); + case 55: + ACCEPT_TOKEN(anon_sym_readonly); + END_STATE(); + case 56: + if (lookahead == 'h') + ADVANCE(57); + if (lookahead == 'y') + ADVANCE(60); + END_STATE(); + case 57: if (lookahead == 'e') - ADVANCE(426); - if (lookahead == '{') - ADVANCE(143); - if (lookahead == '|') - ADVANCE(131); - if (lookahead == '}') - ADVANCE(143); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(467); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')')) - ADVANCE(138); + ADVANCE(58); END_STATE(); - case 468: - if (lookahead == '\n') - SKIP(467); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(138); + case 58: + if (lookahead == 'n') + ADVANCE(59); END_STATE(); - case 469: - if (lookahead == '\n') - ADVANCE(245); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(10); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(141); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(143); - if (lookahead == '\\') - ADVANCE(470); - if (lookahead == ']') - ADVANCE(143); - if (lookahead == '`') - ADVANCE(51); + case 59: + ACCEPT_TOKEN(anon_sym_then); + END_STATE(); + case 60: + if (lookahead == 'p') + ADVANCE(61); + END_STATE(); + case 61: if (lookahead == 'e') - ADVANCE(426); - if (lookahead == '{') - ADVANCE(143); - if (lookahead == '|') - ADVANCE(131); - if (lookahead == '}') - ADVANCE(143); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(469); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')')) - ADVANCE(138); + ADVANCE(62); END_STATE(); - case 470: - if (lookahead == '\n') - SKIP(469); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(138); + case 62: + if (lookahead == 's') + ADVANCE(63); END_STATE(); - case 471: - if (lookahead == '\n') - ADVANCE(245); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '&') - ADVANCE(10); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(359); - if (lookahead == '>') - ADVANCE(360); - if (lookahead == '\\') - SKIP(472); + case 63: if (lookahead == 'e') - ADVANCE(285); - if (lookahead == '|') - ADVANCE(131); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(471); + ADVANCE(64); END_STATE(); - case 472: - if (lookahead == '\n') - SKIP(471); + case 64: + if (lookahead == 't') + ADVANCE(65); END_STATE(); - case 473: - if (lookahead == '\n') - ADVANCE(245); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '&') - ADVANCE(10); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(383); - if (lookahead == '>') - ADVANCE(360); - if (lookahead == '\\') - SKIP(474); + case 65: + ACCEPT_TOKEN(anon_sym_typeset); + END_STATE(); + case 66: + if (lookahead == 'n') + ADVANCE(67); + END_STATE(); + case 67: + if (lookahead == 's') + ADVANCE(68); + END_STATE(); + case 68: if (lookahead == 'e') - ADVANCE(285); - if (lookahead == '|') - ADVANCE(131); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(473); + ADVANCE(69); END_STATE(); - case 474: - if (lookahead == '\n') - SKIP(473); + case 69: + if (lookahead == 't') + ADVANCE(70); END_STATE(); - case 475: - if (lookahead == '\n') - ADVANCE(245); - if (lookahead == '#') - ADVANCE(139); - if (lookahead == '&') - ADVANCE(246); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '\\') - SKIP(476); + case 70: + ACCEPT_TOKEN(anon_sym_unset); if (lookahead == 'e') - ADVANCE(285); - if (lookahead == '|') - ADVANCE(131); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(475); + ADVANCE(71); END_STATE(); - case 476: - if (lookahead == '\n') - SKIP(475); + case 71: + if (lookahead == 'n') + ADVANCE(72); + END_STATE(); + case 72: + if (lookahead == 'v') + ADVANCE(73); + END_STATE(); + case 73: + ACCEPT_TOKEN(anon_sym_unsetenv); + END_STATE(); + case 74: + if (lookahead == 'h') + ADVANCE(75); + END_STATE(); + case 75: + if (lookahead == 'i') + ADVANCE(76); + END_STATE(); + case 76: + if (lookahead == 'l') + ADVANCE(77); + END_STATE(); + case 77: + if (lookahead == 'e') + ADVANCE(78); + END_STATE(); + case 78: + ACCEPT_TOKEN(anon_sym_while); END_STATE(); default: return false; @@ -8174,3211 +5062,2835 @@ 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 = 135, .external_lex_state = 2}, - [2] = {.lex_state = 135}, - [3] = {.lex_state = 206}, - [4] = {.lex_state = 231}, - [5] = {.lex_state = 135, .external_lex_state = 2}, - [6] = {.lex_state = 135, .external_lex_state = 2}, - [7] = {.lex_state = 234}, - [8] = {.lex_state = 234}, - [9] = {.lex_state = 135, .external_lex_state = 2}, - [10] = {.lex_state = 236, .external_lex_state = 2}, - [11] = {.lex_state = 238}, - [12] = {.lex_state = 238}, - [13] = {.lex_state = 244, .external_lex_state = 3}, - [14] = {.lex_state = 244, .external_lex_state = 4}, - [15] = {.lex_state = 234}, - [16] = {.lex_state = 249, .external_lex_state = 5}, - [17] = {.lex_state = 254}, - [18] = {.lex_state = 261}, - [19] = {.lex_state = 249, .external_lex_state = 5}, - [20] = {.lex_state = 264, .external_lex_state = 6}, - [21] = {.lex_state = 135, .external_lex_state = 2}, - [22] = {.lex_state = 135, .external_lex_state = 2}, - [23] = {.lex_state = 135, .external_lex_state = 2}, - [24] = {.lex_state = 266, .external_lex_state = 5}, - [25] = {.lex_state = 135}, - [26] = {.lex_state = 244, .external_lex_state = 4}, - [27] = {.lex_state = 249, .external_lex_state = 7}, - [28] = {.lex_state = 268, .external_lex_state = 8}, - [29] = {.lex_state = 206}, - [30] = {.lex_state = 234, .external_lex_state = 2}, - [31] = {.lex_state = 270, .external_lex_state = 7}, - [32] = {.lex_state = 135, .external_lex_state = 2}, - [33] = {.lex_state = 234, .external_lex_state = 2}, - [34] = {.lex_state = 234}, - [35] = {.lex_state = 234}, - [36] = {.lex_state = 272, .external_lex_state = 9}, - [37] = {.lex_state = 274, .external_lex_state = 4}, - [38] = {.lex_state = 206}, - [39] = {.lex_state = 244, .external_lex_state = 4}, - [40] = {.lex_state = 268, .external_lex_state = 8}, - [41] = {.lex_state = 206}, - [42] = {.lex_state = 274, .external_lex_state = 10}, - [43] = {.lex_state = 254}, - [44] = {.lex_state = 261}, - [45] = {.lex_state = 274, .external_lex_state = 10}, - [46] = {.lex_state = 264, .external_lex_state = 6}, - [47] = {.lex_state = 135, .external_lex_state = 2}, - [48] = {.lex_state = 135, .external_lex_state = 2}, - [49] = {.lex_state = 135, .external_lex_state = 2}, - [50] = {.lex_state = 274, .external_lex_state = 4}, - [51] = {.lex_state = 206}, - [52] = {.lex_state = 206}, - [53] = {.lex_state = 135, .external_lex_state = 2}, - [54] = {.lex_state = 234}, - [55] = {.lex_state = 236, .external_lex_state = 2}, - [56] = {.lex_state = 238}, - [57] = {.lex_state = 238}, - [58] = {.lex_state = 277, .external_lex_state = 3}, - [59] = {.lex_state = 277, .external_lex_state = 4}, - [60] = {.lex_state = 270, .external_lex_state = 5}, - [61] = {.lex_state = 270, .external_lex_state = 5}, - [62] = {.lex_state = 279, .external_lex_state = 5}, - [63] = {.lex_state = 277, .external_lex_state = 4}, - [64] = {.lex_state = 270, .external_lex_state = 7}, - [65] = {.lex_state = 281, .external_lex_state = 8}, - [66] = {.lex_state = 206}, - [67] = {.lex_state = 135, .external_lex_state = 2}, - [68] = {.lex_state = 234, .external_lex_state = 2}, - [69] = {.lex_state = 206}, - [70] = {.lex_state = 283, .external_lex_state = 4}, - [71] = {.lex_state = 206}, - [72] = {.lex_state = 238}, - [73] = {.lex_state = 238}, - [74] = {.lex_state = 286, .external_lex_state = 11}, - [75] = {.lex_state = 254}, - [76] = {.lex_state = 261}, - [77] = {.lex_state = 286, .external_lex_state = 11}, - [78] = {.lex_state = 264, .external_lex_state = 6}, - [79] = {.lex_state = 135, .external_lex_state = 2}, - [80] = {.lex_state = 135, .external_lex_state = 2}, - [81] = {.lex_state = 135, .external_lex_state = 2}, - [82] = {.lex_state = 286, .external_lex_state = 12}, - [83] = {.lex_state = 238}, - [84] = {.lex_state = 238}, - [85] = {.lex_state = 294, .external_lex_state = 13}, - [86] = {.lex_state = 254}, - [87] = {.lex_state = 261}, - [88] = {.lex_state = 294, .external_lex_state = 13}, - [89] = {.lex_state = 264, .external_lex_state = 6}, - [90] = {.lex_state = 135, .external_lex_state = 2}, - [91] = {.lex_state = 135, .external_lex_state = 2}, - [92] = {.lex_state = 135, .external_lex_state = 2}, - [93] = {.lex_state = 294}, - [94] = {.lex_state = 206}, - [95] = {.lex_state = 244, .external_lex_state = 14}, - [96] = {.lex_state = 254}, - [97] = {.lex_state = 261}, - [98] = {.lex_state = 244, .external_lex_state = 14}, - [99] = {.lex_state = 264, .external_lex_state = 6}, - [100] = {.lex_state = 135, .external_lex_state = 2}, - [101] = {.lex_state = 135, .external_lex_state = 2}, - [102] = {.lex_state = 135, .external_lex_state = 2}, - [103] = {.lex_state = 277, .external_lex_state = 3}, - [104] = {.lex_state = 206}, - [105] = {.lex_state = 244, .external_lex_state = 3}, - [106] = {.lex_state = 244, .external_lex_state = 10}, - [107] = {.lex_state = 254}, - [108] = {.lex_state = 261}, - [109] = {.lex_state = 244, .external_lex_state = 10}, - [110] = {.lex_state = 264, .external_lex_state = 6}, - [111] = {.lex_state = 135, .external_lex_state = 2}, - [112] = {.lex_state = 135, .external_lex_state = 2}, - [113] = {.lex_state = 135, .external_lex_state = 2}, - [114] = {.lex_state = 277, .external_lex_state = 4}, - [115] = {.lex_state = 244, .external_lex_state = 4}, - [116] = {.lex_state = 234, .external_lex_state = 15}, - [117] = {.lex_state = 254}, - [118] = {.lex_state = 261}, - [119] = {.lex_state = 234, .external_lex_state = 15}, - [120] = {.lex_state = 264, .external_lex_state = 6}, - [121] = {.lex_state = 135, .external_lex_state = 2}, - [122] = {.lex_state = 135, .external_lex_state = 2}, - [123] = {.lex_state = 135, .external_lex_state = 2}, - [124] = {.lex_state = 234, .external_lex_state = 2}, - [125] = {.lex_state = 234}, - [126] = {.lex_state = 249, .external_lex_state = 5}, - [127] = {.lex_state = 270, .external_lex_state = 5}, - [128] = {.lex_state = 297}, - [129] = {.lex_state = 254, .external_lex_state = 13}, - [130] = {.lex_state = 264, .external_lex_state = 6}, - [131] = {.lex_state = 135, .external_lex_state = 2}, - [132] = {.lex_state = 135, .external_lex_state = 2}, - [133] = {.lex_state = 254}, - [134] = {.lex_state = 270, .external_lex_state = 5}, - [135] = {.lex_state = 270, .external_lex_state = 5}, - [136] = {.lex_state = 270, .external_lex_state = 5}, - [137] = {.lex_state = 206}, - [138] = {.lex_state = 303, .external_lex_state = 16}, - [139] = {.lex_state = 311, .external_lex_state = 6}, - [140] = {.lex_state = 303, .external_lex_state = 16}, - [141] = {.lex_state = 303, .external_lex_state = 16}, - [142] = {.lex_state = 206}, - [143] = {.lex_state = 231}, - [144] = {.lex_state = 135, .external_lex_state = 2}, - [145] = {.lex_state = 135, .external_lex_state = 2}, - [146] = {.lex_state = 234}, - [147] = {.lex_state = 234}, - [148] = {.lex_state = 135, .external_lex_state = 2}, - [149] = {.lex_state = 236, .external_lex_state = 2}, - [150] = {.lex_state = 238}, - [151] = {.lex_state = 238}, - [152] = {.lex_state = 313, .external_lex_state = 6}, - [153] = {.lex_state = 313}, - [154] = {.lex_state = 315, .external_lex_state = 17}, - [155] = {.lex_state = 254}, - [156] = {.lex_state = 261}, - [157] = {.lex_state = 315, .external_lex_state = 17}, - [158] = {.lex_state = 264, .external_lex_state = 6}, - [159] = {.lex_state = 135, .external_lex_state = 2}, - [160] = {.lex_state = 135, .external_lex_state = 2}, - [161] = {.lex_state = 135, .external_lex_state = 2}, - [162] = {.lex_state = 318, .external_lex_state = 17}, - [163] = {.lex_state = 206}, - [164] = {.lex_state = 315, .external_lex_state = 18}, - [165] = {.lex_state = 320, .external_lex_state = 2}, - [166] = {.lex_state = 206}, - [167] = {.lex_state = 315, .external_lex_state = 18}, - [168] = {.lex_state = 234, .external_lex_state = 2}, - [169] = {.lex_state = 206}, - [170] = {.lex_state = 135, .external_lex_state = 2}, - [171] = {.lex_state = 234}, - [172] = {.lex_state = 236, .external_lex_state = 2}, - [173] = {.lex_state = 238}, - [174] = {.lex_state = 238}, - [175] = {.lex_state = 322, .external_lex_state = 6}, - [176] = {.lex_state = 313}, - [177] = {.lex_state = 324, .external_lex_state = 17}, - [178] = {.lex_state = 324, .external_lex_state = 17}, - [179] = {.lex_state = 326, .external_lex_state = 17}, - [180] = {.lex_state = 206}, - [181] = {.lex_state = 324, .external_lex_state = 18}, - [182] = {.lex_state = 328, .external_lex_state = 2}, - [183] = {.lex_state = 206}, - [184] = {.lex_state = 234, .external_lex_state = 2}, - [185] = {.lex_state = 206}, - [186] = {.lex_state = 320, .external_lex_state = 2}, - [187] = {.lex_state = 206}, - [188] = {.lex_state = 135, .external_lex_state = 2}, - [189] = {.lex_state = 330, .external_lex_state = 2}, - [190] = {.lex_state = 135, .external_lex_state = 2}, - [191] = {.lex_state = 283, .external_lex_state = 4}, - [192] = {.lex_state = 333, .external_lex_state = 19}, - [193] = {.lex_state = 135}, - [194] = {.lex_state = 336}, - [195] = {.lex_state = 234}, - [196] = {.lex_state = 356, .external_lex_state = 20}, - [197] = {.lex_state = 234}, - [198] = {.lex_state = 249, .external_lex_state = 5}, - [199] = {.lex_state = 249, .external_lex_state = 5}, - [200] = {.lex_state = 283, .external_lex_state = 4}, - [201] = {.lex_state = 358, .external_lex_state = 7}, - [202] = {.lex_state = 249, .external_lex_state = 7}, - [203] = {.lex_state = 135, .external_lex_state = 2}, - [204] = {.lex_state = 249, .external_lex_state = 7}, - [205] = {.lex_state = 234, .external_lex_state = 2}, - [206] = {.lex_state = 234, .external_lex_state = 15}, - [207] = {.lex_state = 234, .external_lex_state = 15}, - [208] = {.lex_state = 234, .external_lex_state = 2}, - [209] = {.lex_state = 362, .external_lex_state = 11}, - [210] = {.lex_state = 362, .external_lex_state = 11}, - [211] = {.lex_state = 362, .external_lex_state = 11}, - [212] = {.lex_state = 281, .external_lex_state = 8}, - [213] = {.lex_state = 320}, - [214] = {.lex_state = 268, .external_lex_state = 21}, - [215] = {.lex_state = 254}, - [216] = {.lex_state = 261}, - [217] = {.lex_state = 268, .external_lex_state = 21}, - [218] = {.lex_state = 264, .external_lex_state = 6}, - [219] = {.lex_state = 135, .external_lex_state = 2}, - [220] = {.lex_state = 135, .external_lex_state = 2}, - [221] = {.lex_state = 135, .external_lex_state = 2}, - [222] = {.lex_state = 234}, - [223] = {.lex_state = 206}, - [224] = {.lex_state = 364, .external_lex_state = 2}, - [225] = {.lex_state = 358, .external_lex_state = 7}, - [226] = {.lex_state = 206}, - [227] = {.lex_state = 370, .external_lex_state = 2}, - [228] = {.lex_state = 234}, - [229] = {.lex_state = 274, .external_lex_state = 4}, - [230] = {.lex_state = 206}, - [231] = {.lex_state = 274, .external_lex_state = 10}, - [232] = {.lex_state = 274, .external_lex_state = 10}, - [233] = {.lex_state = 254}, - [234] = {.lex_state = 274, .external_lex_state = 10}, - [235] = {.lex_state = 274, .external_lex_state = 10}, - [236] = {.lex_state = 274, .external_lex_state = 10}, - [237] = {.lex_state = 274, .external_lex_state = 4}, - [238] = {.lex_state = 206}, - [239] = {.lex_state = 206}, - [240] = {.lex_state = 303, .external_lex_state = 16}, - [241] = {.lex_state = 311, .external_lex_state = 6}, - [242] = {.lex_state = 303, .external_lex_state = 16}, - [243] = {.lex_state = 303, .external_lex_state = 16}, - [244] = {.lex_state = 206}, - [245] = {.lex_state = 320, .external_lex_state = 2}, - [246] = {.lex_state = 206}, - [247] = {.lex_state = 328, .external_lex_state = 2}, - [248] = {.lex_state = 206}, - [249] = {.lex_state = 320, .external_lex_state = 2}, - [250] = {.lex_state = 206}, - [251] = {.lex_state = 380, .external_lex_state = 22}, - [252] = {.lex_state = 382, .external_lex_state = 23}, - [253] = {.lex_state = 272, .external_lex_state = 9}, - [254] = {.lex_state = 206}, - [255] = {.lex_state = 206}, - [256] = {.lex_state = 286, .external_lex_state = 12}, - [257] = {.lex_state = 294}, - [258] = {.lex_state = 206}, - [259] = {.lex_state = 277, .external_lex_state = 14}, - [260] = {.lex_state = 277, .external_lex_state = 14}, - [261] = {.lex_state = 206}, - [262] = {.lex_state = 277, .external_lex_state = 3}, - [263] = {.lex_state = 277, .external_lex_state = 10}, - [264] = {.lex_state = 277, .external_lex_state = 10}, - [265] = {.lex_state = 277, .external_lex_state = 4}, - [266] = {.lex_state = 270, .external_lex_state = 5}, - [267] = {.lex_state = 206}, - [268] = {.lex_state = 135, .external_lex_state = 2}, - [269] = {.lex_state = 283, .external_lex_state = 4}, - [270] = {.lex_state = 385, .external_lex_state = 2}, - [271] = {.lex_state = 135, .external_lex_state = 2}, - [272] = {.lex_state = 135}, - [273] = {.lex_state = 336}, - [274] = {.lex_state = 234}, - [275] = {.lex_state = 234}, - [276] = {.lex_state = 270, .external_lex_state = 5}, - [277] = {.lex_state = 270, .external_lex_state = 5}, - [278] = {.lex_state = 387, .external_lex_state = 7}, - [279] = {.lex_state = 270, .external_lex_state = 7}, - [280] = {.lex_state = 277, .external_lex_state = 4}, - [281] = {.lex_state = 281, .external_lex_state = 8}, - [282] = {.lex_state = 135, .external_lex_state = 2}, - [283] = {.lex_state = 270, .external_lex_state = 7}, - [284] = {.lex_state = 272, .external_lex_state = 9}, - [285] = {.lex_state = 238}, - [286] = {.lex_state = 389, .external_lex_state = 13}, - [287] = {.lex_state = 389, .external_lex_state = 13}, - [288] = {.lex_state = 389}, - [289] = {.lex_state = 286, .external_lex_state = 12}, - [290] = {.lex_state = 234}, - [291] = {.lex_state = 286, .external_lex_state = 11}, - [292] = {.lex_state = 286, .external_lex_state = 11}, - [293] = {.lex_state = 254}, - [294] = {.lex_state = 286, .external_lex_state = 11}, - [295] = {.lex_state = 286, .external_lex_state = 11}, - [296] = {.lex_state = 286, .external_lex_state = 11}, - [297] = {.lex_state = 206}, - [298] = {.lex_state = 303, .external_lex_state = 16}, - [299] = {.lex_state = 311, .external_lex_state = 6}, - [300] = {.lex_state = 303, .external_lex_state = 16}, - [301] = {.lex_state = 303, .external_lex_state = 16}, - [302] = {.lex_state = 206}, - [303] = {.lex_state = 320, .external_lex_state = 2}, - [304] = {.lex_state = 206}, - [305] = {.lex_state = 328, .external_lex_state = 2}, - [306] = {.lex_state = 206}, - [307] = {.lex_state = 320, .external_lex_state = 2}, - [308] = {.lex_state = 238}, - [309] = {.lex_state = 358, .external_lex_state = 23}, - [310] = {.lex_state = 391}, - [311] = {.lex_state = 389}, - [312] = {.lex_state = 294}, - [313] = {.lex_state = 234}, - [314] = {.lex_state = 294, .external_lex_state = 13}, - [315] = {.lex_state = 396, .external_lex_state = 13}, - [316] = {.lex_state = 254}, - [317] = {.lex_state = 396, .external_lex_state = 13}, - [318] = {.lex_state = 396, .external_lex_state = 13}, - [319] = {.lex_state = 396, .external_lex_state = 13}, - [320] = {.lex_state = 206}, - [321] = {.lex_state = 303, .external_lex_state = 16}, - [322] = {.lex_state = 311, .external_lex_state = 6}, - [323] = {.lex_state = 303, .external_lex_state = 16}, - [324] = {.lex_state = 303, .external_lex_state = 16}, - [325] = {.lex_state = 206}, - [326] = {.lex_state = 320, .external_lex_state = 2}, - [327] = {.lex_state = 206}, - [328] = {.lex_state = 328, .external_lex_state = 2}, - [329] = {.lex_state = 206}, - [330] = {.lex_state = 320, .external_lex_state = 2}, - [331] = {.lex_state = 238}, - [332] = {.lex_state = 391}, - [333] = {.lex_state = 272, .external_lex_state = 9}, - [334] = {.lex_state = 234}, - [335] = {.lex_state = 244, .external_lex_state = 14}, - [336] = {.lex_state = 277, .external_lex_state = 14}, - [337] = {.lex_state = 254}, - [338] = {.lex_state = 277, .external_lex_state = 14}, - [339] = {.lex_state = 277, .external_lex_state = 14}, - [340] = {.lex_state = 277, .external_lex_state = 14}, - [341] = {.lex_state = 206}, - [342] = {.lex_state = 303, .external_lex_state = 16}, - [343] = {.lex_state = 311, .external_lex_state = 6}, - [344] = {.lex_state = 303, .external_lex_state = 16}, - [345] = {.lex_state = 303, .external_lex_state = 16}, - [346] = {.lex_state = 206}, - [347] = {.lex_state = 320, .external_lex_state = 2}, - [348] = {.lex_state = 206}, - [349] = {.lex_state = 328, .external_lex_state = 2}, - [350] = {.lex_state = 206}, - [351] = {.lex_state = 320, .external_lex_state = 2}, - [352] = {.lex_state = 244, .external_lex_state = 3}, - [353] = {.lex_state = 234}, - [354] = {.lex_state = 244, .external_lex_state = 10}, - [355] = {.lex_state = 277, .external_lex_state = 10}, - [356] = {.lex_state = 254}, - [357] = {.lex_state = 277, .external_lex_state = 10}, - [358] = {.lex_state = 277, .external_lex_state = 10}, - [359] = {.lex_state = 277, .external_lex_state = 10}, - [360] = {.lex_state = 206}, - [361] = {.lex_state = 303, .external_lex_state = 16}, - [362] = {.lex_state = 311, .external_lex_state = 6}, - [363] = {.lex_state = 303, .external_lex_state = 16}, - [364] = {.lex_state = 303, .external_lex_state = 16}, - [365] = {.lex_state = 206}, - [366] = {.lex_state = 320, .external_lex_state = 2}, - [367] = {.lex_state = 206}, - [368] = {.lex_state = 328, .external_lex_state = 2}, - [369] = {.lex_state = 206}, - [370] = {.lex_state = 320, .external_lex_state = 2}, - [371] = {.lex_state = 244, .external_lex_state = 4}, - [372] = {.lex_state = 234}, - [373] = {.lex_state = 234, .external_lex_state = 15}, - [374] = {.lex_state = 320, .external_lex_state = 15}, - [375] = {.lex_state = 254}, - [376] = {.lex_state = 320, .external_lex_state = 15}, - [377] = {.lex_state = 320, .external_lex_state = 15}, - [378] = {.lex_state = 320, .external_lex_state = 15}, - [379] = {.lex_state = 206}, - [380] = {.lex_state = 303, .external_lex_state = 16}, - [381] = {.lex_state = 311, .external_lex_state = 6}, - [382] = {.lex_state = 303, .external_lex_state = 16}, - [383] = {.lex_state = 303, .external_lex_state = 16}, - [384] = {.lex_state = 206}, - [385] = {.lex_state = 320, .external_lex_state = 2}, - [386] = {.lex_state = 206}, - [387] = {.lex_state = 328, .external_lex_state = 2}, - [388] = {.lex_state = 206}, - [389] = {.lex_state = 320, .external_lex_state = 2}, - [390] = {.lex_state = 270, .external_lex_state = 5}, - [391] = {.lex_state = 249, .external_lex_state = 5}, - [392] = {.lex_state = 254, .external_lex_state = 13}, - [393] = {.lex_state = 254, .external_lex_state = 13}, - [394] = {.lex_state = 254, .external_lex_state = 13}, - [395] = {.lex_state = 254}, - [396] = {.lex_state = 206}, - [397] = {.lex_state = 303, .external_lex_state = 16}, - [398] = {.lex_state = 311, .external_lex_state = 6}, - [399] = {.lex_state = 303, .external_lex_state = 16}, - [400] = {.lex_state = 303, .external_lex_state = 16}, - [401] = {.lex_state = 206}, - [402] = {.lex_state = 320, .external_lex_state = 2}, - [403] = {.lex_state = 206}, - [404] = {.lex_state = 328, .external_lex_state = 2}, - [405] = {.lex_state = 270, .external_lex_state = 5}, - [406] = {.lex_state = 254}, - [407] = {.lex_state = 234}, - [408] = {.lex_state = 399, .external_lex_state = 16}, - [409] = {.lex_state = 270, .external_lex_state = 5}, - [410] = {.lex_state = 401, .external_lex_state = 24}, - [411] = {.lex_state = 254}, - [412] = {.lex_state = 261}, - [413] = {.lex_state = 401, .external_lex_state = 24}, - [414] = {.lex_state = 264, .external_lex_state = 6}, - [415] = {.lex_state = 403}, - [416] = {.lex_state = 135, .external_lex_state = 2}, - [417] = {.lex_state = 135, .external_lex_state = 2}, - [418] = {.lex_state = 135, .external_lex_state = 2}, - [419] = {.lex_state = 401, .external_lex_state = 16}, - [420] = {.lex_state = 206}, - [421] = {.lex_state = 303, .external_lex_state = 16}, - [422] = {.lex_state = 303, .external_lex_state = 16}, - [423] = {.lex_state = 303, .external_lex_state = 16}, - [424] = {.lex_state = 270, .external_lex_state = 5}, - [425] = {.lex_state = 403}, - [426] = {.lex_state = 401, .external_lex_state = 16}, - [427] = {.lex_state = 270, .external_lex_state = 5}, - [428] = {.lex_state = 403}, - [429] = {.lex_state = 401, .external_lex_state = 16}, - [430] = {.lex_state = 272, .external_lex_state = 9}, - [431] = {.lex_state = 274, .external_lex_state = 4}, - [432] = {.lex_state = 206}, - [433] = {.lex_state = 206}, - [434] = {.lex_state = 274, .external_lex_state = 10}, - [435] = {.lex_state = 274, .external_lex_state = 10}, - [436] = {.lex_state = 274, .external_lex_state = 4}, - [437] = {.lex_state = 206}, - [438] = {.lex_state = 277, .external_lex_state = 4}, - [439] = {.lex_state = 281, .external_lex_state = 8}, - [440] = {.lex_state = 135, .external_lex_state = 2}, - [441] = {.lex_state = 206}, - [442] = {.lex_state = 286, .external_lex_state = 12}, - [443] = {.lex_state = 294}, - [444] = {.lex_state = 206}, - [445] = {.lex_state = 313, .external_lex_state = 25}, - [446] = {.lex_state = 254}, - [447] = {.lex_state = 261}, - [448] = {.lex_state = 313, .external_lex_state = 25}, - [449] = {.lex_state = 264, .external_lex_state = 6}, - [450] = {.lex_state = 135, .external_lex_state = 2}, - [451] = {.lex_state = 135, .external_lex_state = 2}, - [452] = {.lex_state = 135, .external_lex_state = 2}, - [453] = {.lex_state = 313, .external_lex_state = 6}, - [454] = {.lex_state = 206}, - [455] = {.lex_state = 313, .external_lex_state = 6}, - [456] = {.lex_state = 313, .external_lex_state = 13}, - [457] = {.lex_state = 254}, - [458] = {.lex_state = 261}, - [459] = {.lex_state = 313, .external_lex_state = 13}, - [460] = {.lex_state = 264, .external_lex_state = 6}, - [461] = {.lex_state = 135, .external_lex_state = 2}, - [462] = {.lex_state = 135, .external_lex_state = 2}, - [463] = {.lex_state = 135, .external_lex_state = 2}, - [464] = {.lex_state = 313}, - [465] = {.lex_state = 313}, - [466] = {.lex_state = 234}, - [467] = {.lex_state = 315, .external_lex_state = 17}, - [468] = {.lex_state = 315, .external_lex_state = 17}, - [469] = {.lex_state = 254}, - [470] = {.lex_state = 315, .external_lex_state = 17}, - [471] = {.lex_state = 315, .external_lex_state = 17}, - [472] = {.lex_state = 315, .external_lex_state = 17}, - [473] = {.lex_state = 206}, - [474] = {.lex_state = 303, .external_lex_state = 16}, - [475] = {.lex_state = 311, .external_lex_state = 6}, - [476] = {.lex_state = 303, .external_lex_state = 16}, - [477] = {.lex_state = 303, .external_lex_state = 16}, - [478] = {.lex_state = 206}, - [479] = {.lex_state = 320, .external_lex_state = 2}, - [480] = {.lex_state = 206}, - [481] = {.lex_state = 328, .external_lex_state = 2}, - [482] = {.lex_state = 206}, - [483] = {.lex_state = 320, .external_lex_state = 2}, - [484] = {.lex_state = 206}, - [485] = {.lex_state = 135, .external_lex_state = 2}, - [486] = {.lex_state = 270, .external_lex_state = 5}, - [487] = {.lex_state = 135, .external_lex_state = 2}, - [488] = {.lex_state = 206}, - [489] = {.lex_state = 333, .external_lex_state = 19}, - [490] = {.lex_state = 135}, - [491] = {.lex_state = 336}, - [492] = {.lex_state = 234}, - [493] = {.lex_state = 356, .external_lex_state = 20}, - [494] = {.lex_state = 234}, - [495] = {.lex_state = 315, .external_lex_state = 17}, - [496] = {.lex_state = 315, .external_lex_state = 17}, - [497] = {.lex_state = 206}, - [498] = {.lex_state = 408, .external_lex_state = 18}, - [499] = {.lex_state = 315, .external_lex_state = 18}, - [500] = {.lex_state = 315, .external_lex_state = 18}, - [501] = {.lex_state = 272, .external_lex_state = 9}, - [502] = {.lex_state = 206}, - [503] = {.lex_state = 206}, - [504] = {.lex_state = 286, .external_lex_state = 12}, - [505] = {.lex_state = 294}, - [506] = {.lex_state = 206}, - [507] = {.lex_state = 322, .external_lex_state = 25}, - [508] = {.lex_state = 322, .external_lex_state = 25}, - [509] = {.lex_state = 206}, - [510] = {.lex_state = 322, .external_lex_state = 6}, - [511] = {.lex_state = 322, .external_lex_state = 13}, - [512] = {.lex_state = 322, .external_lex_state = 13}, - [513] = {.lex_state = 313}, - [514] = {.lex_state = 324, .external_lex_state = 17}, - [515] = {.lex_state = 206}, - [516] = {.lex_state = 135, .external_lex_state = 2}, - [517] = {.lex_state = 135, .external_lex_state = 2}, - [518] = {.lex_state = 135}, - [519] = {.lex_state = 336}, - [520] = {.lex_state = 234}, - [521] = {.lex_state = 234}, - [522] = {.lex_state = 324, .external_lex_state = 17}, - [523] = {.lex_state = 324, .external_lex_state = 17}, - [524] = {.lex_state = 410, .external_lex_state = 18}, - [525] = {.lex_state = 324, .external_lex_state = 18}, - [526] = {.lex_state = 324, .external_lex_state = 18}, - [527] = {.lex_state = 270, .external_lex_state = 5}, - [528] = {.lex_state = 206}, - [529] = {.lex_state = 283, .external_lex_state = 4}, - [530] = {.lex_state = 281, .external_lex_state = 8}, - [531] = {.lex_state = 244, .external_lex_state = 4}, - [532] = {.lex_state = 268, .external_lex_state = 8}, - [533] = {.lex_state = 283, .external_lex_state = 4}, - [534] = {.lex_state = 261}, - [535] = {.lex_state = 264, .external_lex_state = 6}, - [536] = {.lex_state = 333, .external_lex_state = 19}, - [537] = {.lex_state = 234}, - [538] = {.lex_state = 249, .external_lex_state = 5}, - [539] = {.lex_state = 249, .external_lex_state = 5}, - [540] = {.lex_state = 270, .external_lex_state = 7}, - [541] = {.lex_state = 358, .external_lex_state = 5}, - [542] = {.lex_state = 358, .external_lex_state = 5}, - [543] = {.lex_state = 412, .external_lex_state = 7}, - [544] = {.lex_state = 412, .external_lex_state = 7}, - [545] = {.lex_state = 358, .external_lex_state = 5}, - [546] = {.lex_state = 358, .external_lex_state = 5}, - [547] = {.lex_state = 412, .external_lex_state = 7}, - [548] = {.lex_state = 283, .external_lex_state = 4}, - [549] = {.lex_state = 358, .external_lex_state = 7}, - [550] = {.lex_state = 358, .external_lex_state = 7}, - [551] = {.lex_state = 249, .external_lex_state = 7}, - [552] = {.lex_state = 249, .external_lex_state = 7}, - [553] = {.lex_state = 414, .external_lex_state = 12}, - [554] = {.lex_state = 416, .external_lex_state = 13}, - [555] = {.lex_state = 362, .external_lex_state = 11}, - [556] = {.lex_state = 414, .external_lex_state = 12}, - [557] = {.lex_state = 416, .external_lex_state = 13}, - [558] = {.lex_state = 206, .external_lex_state = 12}, - [559] = {.lex_state = 281, .external_lex_state = 8}, - [560] = {.lex_state = 418, .external_lex_state = 13}, - [561] = {.lex_state = 254}, - [562] = {.lex_state = 261}, - [563] = {.lex_state = 418, .external_lex_state = 13}, - [564] = {.lex_state = 264, .external_lex_state = 6}, - [565] = {.lex_state = 135, .external_lex_state = 2}, - [566] = {.lex_state = 135, .external_lex_state = 2}, - [567] = {.lex_state = 135, .external_lex_state = 2}, - [568] = {.lex_state = 320}, - [569] = {.lex_state = 234}, - [570] = {.lex_state = 268, .external_lex_state = 21}, - [571] = {.lex_state = 281, .external_lex_state = 21}, - [572] = {.lex_state = 254}, - [573] = {.lex_state = 281, .external_lex_state = 21}, - [574] = {.lex_state = 281, .external_lex_state = 21}, - [575] = {.lex_state = 281, .external_lex_state = 21}, - [576] = {.lex_state = 206}, - [577] = {.lex_state = 303, .external_lex_state = 16}, - [578] = {.lex_state = 311, .external_lex_state = 6}, - [579] = {.lex_state = 303, .external_lex_state = 16}, - [580] = {.lex_state = 303, .external_lex_state = 16}, - [581] = {.lex_state = 206}, - [582] = {.lex_state = 320, .external_lex_state = 2}, - [583] = {.lex_state = 206}, - [584] = {.lex_state = 328, .external_lex_state = 2}, - [585] = {.lex_state = 206}, - [586] = {.lex_state = 320, .external_lex_state = 2}, - [587] = {.lex_state = 420, .external_lex_state = 10}, - [588] = {.lex_state = 254}, - [589] = {.lex_state = 261}, - [590] = {.lex_state = 420, .external_lex_state = 10}, - [591] = {.lex_state = 264, .external_lex_state = 6}, - [592] = {.lex_state = 135, .external_lex_state = 2}, - [593] = {.lex_state = 135, .external_lex_state = 2}, - [594] = {.lex_state = 135, .external_lex_state = 2}, - [595] = {.lex_state = 420, .external_lex_state = 4}, - [596] = {.lex_state = 364, .external_lex_state = 2}, - [597] = {.lex_state = 283, .external_lex_state = 4}, - [598] = {.lex_state = 412, .external_lex_state = 7}, - [599] = {.lex_state = 244, .external_lex_state = 4}, - [600] = {.lex_state = 268, .external_lex_state = 8}, - [601] = {.lex_state = 364, .external_lex_state = 2}, - [602] = {.lex_state = 283, .external_lex_state = 4}, - [603] = {.lex_state = 358, .external_lex_state = 7}, - [604] = {.lex_state = 283, .external_lex_state = 4}, - [605] = {.lex_state = 135, .external_lex_state = 2}, - [606] = {.lex_state = 422, .external_lex_state = 2}, - [607] = {.lex_state = 244, .external_lex_state = 4}, - [608] = {.lex_state = 206}, - [609] = {.lex_state = 206}, - [610] = {.lex_state = 268, .external_lex_state = 8}, - [611] = {.lex_state = 370, .external_lex_state = 2}, - [612] = {.lex_state = 206}, - [613] = {.lex_state = 274, .external_lex_state = 10}, - [614] = {.lex_state = 424}, - [615] = {.lex_state = 274, .external_lex_state = 4}, - [616] = {.lex_state = 274, .external_lex_state = 10}, - [617] = {.lex_state = 274, .external_lex_state = 10}, - [618] = {.lex_state = 424}, - [619] = {.lex_state = 274, .external_lex_state = 4}, - [620] = {.lex_state = 399, .external_lex_state = 16}, - [621] = {.lex_state = 274, .external_lex_state = 10}, - [622] = {.lex_state = 403}, - [623] = {.lex_state = 401, .external_lex_state = 16}, - [624] = {.lex_state = 206}, - [625] = {.lex_state = 303, .external_lex_state = 16}, - [626] = {.lex_state = 303, .external_lex_state = 16}, - [627] = {.lex_state = 303, .external_lex_state = 16}, - [628] = {.lex_state = 274, .external_lex_state = 10}, - [629] = {.lex_state = 403}, - [630] = {.lex_state = 401, .external_lex_state = 16}, - [631] = {.lex_state = 274, .external_lex_state = 10}, - [632] = {.lex_state = 403}, - [633] = {.lex_state = 401, .external_lex_state = 16}, - [634] = {.lex_state = 274, .external_lex_state = 10}, - [635] = {.lex_state = 274, .external_lex_state = 10}, - [636] = {.lex_state = 206}, - [637] = {.lex_state = 430, .external_lex_state = 23}, - [638] = {.lex_state = 244, .external_lex_state = 4}, - [639] = {.lex_state = 268, .external_lex_state = 8}, - [640] = {.lex_state = 380, .external_lex_state = 22}, - [641] = {.lex_state = 135}, - [642] = {.lex_state = 234}, - [643] = {.lex_state = 283, .external_lex_state = 4}, - [644] = {.lex_state = 281, .external_lex_state = 21}, - [645] = {.lex_state = 281, .external_lex_state = 21}, - [646] = {.lex_state = 387, .external_lex_state = 7}, - [647] = {.lex_state = 206}, - [648] = {.lex_state = 432, .external_lex_state = 23}, - [649] = {.lex_state = 387, .external_lex_state = 23}, - [650] = {.lex_state = 272, .external_lex_state = 9}, - [651] = {.lex_state = 277, .external_lex_state = 14}, - [652] = {.lex_state = 277, .external_lex_state = 3}, - [653] = {.lex_state = 277, .external_lex_state = 10}, - [654] = {.lex_state = 277, .external_lex_state = 4}, - [655] = {.lex_state = 270, .external_lex_state = 5}, - [656] = {.lex_state = 206}, - [657] = {.lex_state = 283, .external_lex_state = 4}, - [658] = {.lex_state = 277, .external_lex_state = 4}, - [659] = {.lex_state = 281, .external_lex_state = 8}, - [660] = {.lex_state = 234}, - [661] = {.lex_state = 270, .external_lex_state = 5}, - [662] = {.lex_state = 270, .external_lex_state = 5}, - [663] = {.lex_state = 387, .external_lex_state = 5}, - [664] = {.lex_state = 387, .external_lex_state = 5}, - [665] = {.lex_state = 387, .external_lex_state = 5}, - [666] = {.lex_state = 387, .external_lex_state = 5}, - [667] = {.lex_state = 387, .external_lex_state = 7}, - [668] = {.lex_state = 387, .external_lex_state = 7}, - [669] = {.lex_state = 270, .external_lex_state = 7}, - [670] = {.lex_state = 385, .external_lex_state = 2}, - [671] = {.lex_state = 270, .external_lex_state = 7}, - [672] = {.lex_state = 320, .external_lex_state = 2}, - [673] = {.lex_state = 320}, - [674] = {.lex_state = 234, .external_lex_state = 15}, - [675] = {.lex_state = 234, .external_lex_state = 15}, - [676] = {.lex_state = 389}, - [677] = {.lex_state = 389, .external_lex_state = 13}, - [678] = {.lex_state = 286, .external_lex_state = 12}, - [679] = {.lex_state = 238}, - [680] = {.lex_state = 391}, - [681] = {.lex_state = 286, .external_lex_state = 11}, - [682] = {.lex_state = 286, .external_lex_state = 11}, - [683] = {.lex_state = 286, .external_lex_state = 11}, - [684] = {.lex_state = 399, .external_lex_state = 16}, - [685] = {.lex_state = 286, .external_lex_state = 11}, - [686] = {.lex_state = 403}, - [687] = {.lex_state = 401, .external_lex_state = 16}, - [688] = {.lex_state = 206}, - [689] = {.lex_state = 303, .external_lex_state = 16}, - [690] = {.lex_state = 303, .external_lex_state = 16}, - [691] = {.lex_state = 303, .external_lex_state = 16}, - [692] = {.lex_state = 286, .external_lex_state = 11}, - [693] = {.lex_state = 403}, - [694] = {.lex_state = 401, .external_lex_state = 16}, - [695] = {.lex_state = 286, .external_lex_state = 11}, - [696] = {.lex_state = 403}, - [697] = {.lex_state = 401, .external_lex_state = 16}, - [698] = {.lex_state = 286, .external_lex_state = 11}, - [699] = {.lex_state = 286, .external_lex_state = 11}, - [700] = {.lex_state = 286, .external_lex_state = 12}, - [701] = {.lex_state = 135}, - [702] = {.lex_state = 234}, - [703] = {.lex_state = 356, .external_lex_state = 20}, - [704] = {.lex_state = 234}, - [705] = {.lex_state = 358, .external_lex_state = 23}, - [706] = {.lex_state = 286, .external_lex_state = 12}, - [707] = {.lex_state = 434}, - [708] = {.lex_state = 396, .external_lex_state = 13}, - [709] = {.lex_state = 294, .external_lex_state = 13}, - [710] = {.lex_state = 396, .external_lex_state = 13}, - [711] = {.lex_state = 399, .external_lex_state = 16}, - [712] = {.lex_state = 396, .external_lex_state = 13}, - [713] = {.lex_state = 403}, - [714] = {.lex_state = 401, .external_lex_state = 16}, - [715] = {.lex_state = 206}, - [716] = {.lex_state = 303, .external_lex_state = 16}, - [717] = {.lex_state = 303, .external_lex_state = 16}, - [718] = {.lex_state = 303, .external_lex_state = 16}, - [719] = {.lex_state = 396, .external_lex_state = 13}, - [720] = {.lex_state = 403}, - [721] = {.lex_state = 401, .external_lex_state = 16}, - [722] = {.lex_state = 396, .external_lex_state = 13}, - [723] = {.lex_state = 403}, - [724] = {.lex_state = 401, .external_lex_state = 16}, - [725] = {.lex_state = 396, .external_lex_state = 13}, - [726] = {.lex_state = 396, .external_lex_state = 13}, - [727] = {.lex_state = 434}, - [728] = {.lex_state = 434}, - [729] = {.lex_state = 277, .external_lex_state = 3}, - [730] = {.lex_state = 320}, - [731] = {.lex_state = 244, .external_lex_state = 14}, - [732] = {.lex_state = 244, .external_lex_state = 14}, - [733] = {.lex_state = 277, .external_lex_state = 14}, - [734] = {.lex_state = 244, .external_lex_state = 14}, - [735] = {.lex_state = 277, .external_lex_state = 14}, - [736] = {.lex_state = 399, .external_lex_state = 16}, - [737] = {.lex_state = 277, .external_lex_state = 14}, - [738] = {.lex_state = 403}, - [739] = {.lex_state = 401, .external_lex_state = 16}, - [740] = {.lex_state = 206}, - [741] = {.lex_state = 303, .external_lex_state = 16}, - [742] = {.lex_state = 303, .external_lex_state = 16}, - [743] = {.lex_state = 303, .external_lex_state = 16}, - [744] = {.lex_state = 277, .external_lex_state = 14}, - [745] = {.lex_state = 403}, - [746] = {.lex_state = 401, .external_lex_state = 16}, - [747] = {.lex_state = 277, .external_lex_state = 14}, - [748] = {.lex_state = 403}, - [749] = {.lex_state = 401, .external_lex_state = 16}, - [750] = {.lex_state = 277, .external_lex_state = 14}, - [751] = {.lex_state = 277, .external_lex_state = 14}, - [752] = {.lex_state = 277, .external_lex_state = 10}, - [753] = {.lex_state = 244, .external_lex_state = 10}, - [754] = {.lex_state = 277, .external_lex_state = 10}, - [755] = {.lex_state = 399, .external_lex_state = 16}, - [756] = {.lex_state = 277, .external_lex_state = 10}, - [757] = {.lex_state = 403}, - [758] = {.lex_state = 401, .external_lex_state = 16}, - [759] = {.lex_state = 206}, - [760] = {.lex_state = 303, .external_lex_state = 16}, - [761] = {.lex_state = 303, .external_lex_state = 16}, - [762] = {.lex_state = 303, .external_lex_state = 16}, - [763] = {.lex_state = 277, .external_lex_state = 10}, - [764] = {.lex_state = 403}, - [765] = {.lex_state = 401, .external_lex_state = 16}, - [766] = {.lex_state = 277, .external_lex_state = 10}, - [767] = {.lex_state = 403}, - [768] = {.lex_state = 401, .external_lex_state = 16}, - [769] = {.lex_state = 277, .external_lex_state = 10}, - [770] = {.lex_state = 277, .external_lex_state = 10}, - [771] = {.lex_state = 320, .external_lex_state = 15}, - [772] = {.lex_state = 234, .external_lex_state = 15}, - [773] = {.lex_state = 320, .external_lex_state = 15}, - [774] = {.lex_state = 399, .external_lex_state = 16}, - [775] = {.lex_state = 320, .external_lex_state = 15}, - [776] = {.lex_state = 403}, - [777] = {.lex_state = 401, .external_lex_state = 16}, - [778] = {.lex_state = 206}, - [779] = {.lex_state = 303, .external_lex_state = 16}, - [780] = {.lex_state = 303, .external_lex_state = 16}, - [781] = {.lex_state = 303, .external_lex_state = 16}, - [782] = {.lex_state = 320, .external_lex_state = 15}, - [783] = {.lex_state = 403}, - [784] = {.lex_state = 401, .external_lex_state = 16}, - [785] = {.lex_state = 320, .external_lex_state = 15}, - [786] = {.lex_state = 403}, - [787] = {.lex_state = 401, .external_lex_state = 16}, - [788] = {.lex_state = 320, .external_lex_state = 15}, - [789] = {.lex_state = 320, .external_lex_state = 15}, - [790] = {.lex_state = 254}, - [791] = {.lex_state = 399, .external_lex_state = 16}, - [792] = {.lex_state = 254, .external_lex_state = 13}, - [793] = {.lex_state = 403}, - [794] = {.lex_state = 401, .external_lex_state = 16}, - [795] = {.lex_state = 206}, - [796] = {.lex_state = 303, .external_lex_state = 16}, - [797] = {.lex_state = 303, .external_lex_state = 16}, - [798] = {.lex_state = 303, .external_lex_state = 16}, - [799] = {.lex_state = 254, .external_lex_state = 13}, - [800] = {.lex_state = 403}, - [801] = {.lex_state = 401, .external_lex_state = 16}, - [802] = {.lex_state = 254, .external_lex_state = 13}, - [803] = {.lex_state = 403}, - [804] = {.lex_state = 401, .external_lex_state = 16}, - [805] = {.lex_state = 254, .external_lex_state = 13}, - [806] = {.lex_state = 362, .external_lex_state = 11}, - [807] = {.lex_state = 362, .external_lex_state = 11}, - [808] = {.lex_state = 362, .external_lex_state = 11}, - [809] = {.lex_state = 270, .external_lex_state = 5}, - [810] = {.lex_state = 436, .external_lex_state = 24}, - [811] = {.lex_state = 254}, - [812] = {.lex_state = 261}, - [813] = {.lex_state = 436, .external_lex_state = 24}, - [814] = {.lex_state = 264, .external_lex_state = 6}, - [815] = {.lex_state = 135, .external_lex_state = 2}, - [816] = {.lex_state = 135, .external_lex_state = 2}, - [817] = {.lex_state = 135, .external_lex_state = 2}, - [818] = {.lex_state = 206, .external_lex_state = 16}, - [819] = {.lex_state = 234}, - [820] = {.lex_state = 401, .external_lex_state = 24}, - [821] = {.lex_state = 401, .external_lex_state = 24}, - [822] = {.lex_state = 254}, - [823] = {.lex_state = 401, .external_lex_state = 24}, - [824] = {.lex_state = 401, .external_lex_state = 24}, - [825] = {.lex_state = 401, .external_lex_state = 24}, - [826] = {.lex_state = 206}, - [827] = {.lex_state = 303, .external_lex_state = 16}, - [828] = {.lex_state = 311, .external_lex_state = 6}, - [829] = {.lex_state = 303, .external_lex_state = 16}, - [830] = {.lex_state = 303, .external_lex_state = 16}, - [831] = {.lex_state = 401, .external_lex_state = 16}, - [832] = {.lex_state = 206}, - [833] = {.lex_state = 320, .external_lex_state = 2}, - [834] = {.lex_state = 206}, - [835] = {.lex_state = 328, .external_lex_state = 2}, - [836] = {.lex_state = 206}, - [837] = {.lex_state = 320, .external_lex_state = 2}, - [838] = {.lex_state = 270, .external_lex_state = 5}, - [839] = {.lex_state = 401, .external_lex_state = 16}, - [840] = {.lex_state = 399, .external_lex_state = 16}, - [841] = {.lex_state = 270, .external_lex_state = 5}, - [842] = {.lex_state = 403}, - [843] = {.lex_state = 401, .external_lex_state = 16}, - [844] = {.lex_state = 270, .external_lex_state = 5}, - [845] = {.lex_state = 403}, - [846] = {.lex_state = 401, .external_lex_state = 16}, - [847] = {.lex_state = 403}, - [848] = {.lex_state = 401, .external_lex_state = 16}, - [849] = {.lex_state = 401, .external_lex_state = 16}, - [850] = {.lex_state = 270, .external_lex_state = 5}, - [851] = {.lex_state = 401, .external_lex_state = 16}, - [852] = {.lex_state = 320, .external_lex_state = 15}, - [853] = {.lex_state = 320, .external_lex_state = 15}, - [854] = {.lex_state = 234}, - [855] = {.lex_state = 206}, - [856] = {.lex_state = 364, .external_lex_state = 2}, - [857] = {.lex_state = 408, .external_lex_state = 18}, - [858] = {.lex_state = 370, .external_lex_state = 2}, - [859] = {.lex_state = 274, .external_lex_state = 4}, - [860] = {.lex_state = 206}, - [861] = {.lex_state = 274, .external_lex_state = 4}, - [862] = {.lex_state = 206}, - [863] = {.lex_state = 206}, - [864] = {.lex_state = 380, .external_lex_state = 22}, - [865] = {.lex_state = 438, .external_lex_state = 26}, - [866] = {.lex_state = 206}, - [867] = {.lex_state = 385, .external_lex_state = 2}, - [868] = {.lex_state = 277, .external_lex_state = 4}, - [869] = {.lex_state = 281, .external_lex_state = 8}, - [870] = {.lex_state = 408, .external_lex_state = 26}, - [871] = {.lex_state = 272, .external_lex_state = 9}, - [872] = {.lex_state = 234}, - [873] = {.lex_state = 313, .external_lex_state = 25}, - [874] = {.lex_state = 313, .external_lex_state = 25}, - [875] = {.lex_state = 254}, - [876] = {.lex_state = 313, .external_lex_state = 25}, - [877] = {.lex_state = 313, .external_lex_state = 25}, - [878] = {.lex_state = 313, .external_lex_state = 25}, - [879] = {.lex_state = 206}, - [880] = {.lex_state = 303, .external_lex_state = 16}, - [881] = {.lex_state = 311, .external_lex_state = 6}, - [882] = {.lex_state = 303, .external_lex_state = 16}, - [883] = {.lex_state = 303, .external_lex_state = 16}, - [884] = {.lex_state = 206}, - [885] = {.lex_state = 320, .external_lex_state = 2}, - [886] = {.lex_state = 206}, - [887] = {.lex_state = 328, .external_lex_state = 2}, - [888] = {.lex_state = 206}, - [889] = {.lex_state = 320, .external_lex_state = 2}, - [890] = {.lex_state = 313, .external_lex_state = 6}, - [891] = {.lex_state = 234}, - [892] = {.lex_state = 313, .external_lex_state = 13}, - [893] = {.lex_state = 313, .external_lex_state = 13}, - [894] = {.lex_state = 254}, - [895] = {.lex_state = 313, .external_lex_state = 13}, - [896] = {.lex_state = 313, .external_lex_state = 13}, - [897] = {.lex_state = 313, .external_lex_state = 13}, - [898] = {.lex_state = 206}, - [899] = {.lex_state = 303, .external_lex_state = 16}, - [900] = {.lex_state = 311, .external_lex_state = 6}, - [901] = {.lex_state = 303, .external_lex_state = 16}, - [902] = {.lex_state = 303, .external_lex_state = 16}, - [903] = {.lex_state = 206}, - [904] = {.lex_state = 320, .external_lex_state = 2}, - [905] = {.lex_state = 206}, - [906] = {.lex_state = 328, .external_lex_state = 2}, - [907] = {.lex_state = 206}, - [908] = {.lex_state = 320, .external_lex_state = 2}, - [909] = {.lex_state = 313}, - [910] = {.lex_state = 315, .external_lex_state = 17}, - [911] = {.lex_state = 315, .external_lex_state = 17}, - [912] = {.lex_state = 315, .external_lex_state = 17}, - [913] = {.lex_state = 399, .external_lex_state = 16}, - [914] = {.lex_state = 315, .external_lex_state = 17}, - [915] = {.lex_state = 403}, - [916] = {.lex_state = 401, .external_lex_state = 16}, - [917] = {.lex_state = 206}, - [918] = {.lex_state = 303, .external_lex_state = 16}, - [919] = {.lex_state = 303, .external_lex_state = 16}, - [920] = {.lex_state = 303, .external_lex_state = 16}, - [921] = {.lex_state = 315, .external_lex_state = 17}, - [922] = {.lex_state = 403}, - [923] = {.lex_state = 401, .external_lex_state = 16}, - [924] = {.lex_state = 315, .external_lex_state = 17}, - [925] = {.lex_state = 403}, - [926] = {.lex_state = 401, .external_lex_state = 16}, - [927] = {.lex_state = 315, .external_lex_state = 17}, - [928] = {.lex_state = 315, .external_lex_state = 17}, - [929] = {.lex_state = 206}, - [930] = {.lex_state = 206}, - [931] = {.lex_state = 320, .external_lex_state = 2}, - [932] = {.lex_state = 206}, - [933] = {.lex_state = 320, .external_lex_state = 2}, - [934] = {.lex_state = 206}, - [935] = {.lex_state = 333, .external_lex_state = 19}, - [936] = {.lex_state = 234}, - [937] = {.lex_state = 315, .external_lex_state = 17}, - [938] = {.lex_state = 315, .external_lex_state = 17}, - [939] = {.lex_state = 315, .external_lex_state = 18}, - [940] = {.lex_state = 408, .external_lex_state = 17}, - [941] = {.lex_state = 408, .external_lex_state = 17}, - [942] = {.lex_state = 440, .external_lex_state = 18}, - [943] = {.lex_state = 440, .external_lex_state = 18}, - [944] = {.lex_state = 408, .external_lex_state = 17}, - [945] = {.lex_state = 408, .external_lex_state = 17}, - [946] = {.lex_state = 440, .external_lex_state = 18}, - [947] = {.lex_state = 206}, - [948] = {.lex_state = 408, .external_lex_state = 18}, - [949] = {.lex_state = 408, .external_lex_state = 18}, - [950] = {.lex_state = 315, .external_lex_state = 18}, - [951] = {.lex_state = 315, .external_lex_state = 18}, - [952] = {.lex_state = 328, .external_lex_state = 15}, - [953] = {.lex_state = 328, .external_lex_state = 15}, - [954] = {.lex_state = 410, .external_lex_state = 18}, - [955] = {.lex_state = 206}, - [956] = {.lex_state = 442, .external_lex_state = 26}, - [957] = {.lex_state = 410, .external_lex_state = 26}, - [958] = {.lex_state = 272, .external_lex_state = 9}, - [959] = {.lex_state = 322, .external_lex_state = 25}, - [960] = {.lex_state = 322, .external_lex_state = 6}, - [961] = {.lex_state = 322, .external_lex_state = 13}, - [962] = {.lex_state = 313}, - [963] = {.lex_state = 324, .external_lex_state = 17}, - [964] = {.lex_state = 206}, - [965] = {.lex_state = 328, .external_lex_state = 2}, - [966] = {.lex_state = 206}, - [967] = {.lex_state = 328, .external_lex_state = 2}, - [968] = {.lex_state = 234}, - [969] = {.lex_state = 324, .external_lex_state = 17}, - [970] = {.lex_state = 324, .external_lex_state = 17}, - [971] = {.lex_state = 410, .external_lex_state = 17}, - [972] = {.lex_state = 410, .external_lex_state = 17}, - [973] = {.lex_state = 410, .external_lex_state = 17}, - [974] = {.lex_state = 410, .external_lex_state = 17}, - [975] = {.lex_state = 410, .external_lex_state = 18}, - [976] = {.lex_state = 410, .external_lex_state = 18}, - [977] = {.lex_state = 324, .external_lex_state = 18}, - [978] = {.lex_state = 324, .external_lex_state = 18}, - [979] = {.lex_state = 382, .external_lex_state = 23}, - [980] = {.lex_state = 333, .external_lex_state = 19}, - [981] = {.lex_state = 333, .external_lex_state = 19}, - [982] = {.lex_state = 206}, - [983] = {.lex_state = 303, .external_lex_state = 16}, - [984] = {.lex_state = 311, .external_lex_state = 6}, - [985] = {.lex_state = 303, .external_lex_state = 16}, - [986] = {.lex_state = 303, .external_lex_state = 16}, - [987] = {.lex_state = 283, .external_lex_state = 4}, - [988] = {.lex_state = 333, .external_lex_state = 19}, - [989] = {.lex_state = 358, .external_lex_state = 5}, - [990] = {.lex_state = 358, .external_lex_state = 5}, - [991] = {.lex_state = 412, .external_lex_state = 7}, - [992] = {.lex_state = 358, .external_lex_state = 5}, - [993] = {.lex_state = 283, .external_lex_state = 4}, - [994] = {.lex_state = 358, .external_lex_state = 7}, - [995] = {.lex_state = 416, .external_lex_state = 13}, - [996] = {.lex_state = 206}, - [997] = {.lex_state = 362, .external_lex_state = 11}, - [998] = {.lex_state = 416, .external_lex_state = 13}, - [999] = {.lex_state = 206}, - [1000] = {.lex_state = 234}, - [1001] = {.lex_state = 418, .external_lex_state = 13}, - [1002] = {.lex_state = 418, .external_lex_state = 13}, - [1003] = {.lex_state = 254}, - [1004] = {.lex_state = 418, .external_lex_state = 13}, - [1005] = {.lex_state = 418, .external_lex_state = 13}, - [1006] = {.lex_state = 418, .external_lex_state = 13}, - [1007] = {.lex_state = 206}, - [1008] = {.lex_state = 303, .external_lex_state = 16}, - [1009] = {.lex_state = 311, .external_lex_state = 6}, - [1010] = {.lex_state = 303, .external_lex_state = 16}, - [1011] = {.lex_state = 303, .external_lex_state = 16}, - [1012] = {.lex_state = 206}, - [1013] = {.lex_state = 320, .external_lex_state = 2}, - [1014] = {.lex_state = 206}, - [1015] = {.lex_state = 328, .external_lex_state = 2}, - [1016] = {.lex_state = 206}, - [1017] = {.lex_state = 320, .external_lex_state = 2}, - [1018] = {.lex_state = 281, .external_lex_state = 8}, - [1019] = {.lex_state = 320}, - [1020] = {.lex_state = 281, .external_lex_state = 21}, - [1021] = {.lex_state = 268, .external_lex_state = 21}, - [1022] = {.lex_state = 281, .external_lex_state = 21}, - [1023] = {.lex_state = 399, .external_lex_state = 16}, - [1024] = {.lex_state = 281, .external_lex_state = 21}, - [1025] = {.lex_state = 403}, - [1026] = {.lex_state = 401, .external_lex_state = 16}, - [1027] = {.lex_state = 206}, - [1028] = {.lex_state = 303, .external_lex_state = 16}, - [1029] = {.lex_state = 303, .external_lex_state = 16}, - [1030] = {.lex_state = 303, .external_lex_state = 16}, - [1031] = {.lex_state = 281, .external_lex_state = 21}, - [1032] = {.lex_state = 403}, - [1033] = {.lex_state = 401, .external_lex_state = 16}, - [1034] = {.lex_state = 281, .external_lex_state = 21}, - [1035] = {.lex_state = 403}, - [1036] = {.lex_state = 401, .external_lex_state = 16}, - [1037] = {.lex_state = 281, .external_lex_state = 21}, - [1038] = {.lex_state = 281, .external_lex_state = 21}, - [1039] = {.lex_state = 234}, - [1040] = {.lex_state = 420, .external_lex_state = 10}, - [1041] = {.lex_state = 420, .external_lex_state = 10}, - [1042] = {.lex_state = 254}, - [1043] = {.lex_state = 420, .external_lex_state = 10}, - [1044] = {.lex_state = 420, .external_lex_state = 10}, - [1045] = {.lex_state = 420, .external_lex_state = 10}, - [1046] = {.lex_state = 206}, - [1047] = {.lex_state = 303, .external_lex_state = 16}, - [1048] = {.lex_state = 311, .external_lex_state = 6}, - [1049] = {.lex_state = 303, .external_lex_state = 16}, - [1050] = {.lex_state = 303, .external_lex_state = 16}, - [1051] = {.lex_state = 206}, - [1052] = {.lex_state = 320, .external_lex_state = 2}, - [1053] = {.lex_state = 206}, - [1054] = {.lex_state = 328, .external_lex_state = 2}, - [1055] = {.lex_state = 206}, - [1056] = {.lex_state = 320, .external_lex_state = 2}, - [1057] = {.lex_state = 206}, - [1058] = {.lex_state = 420, .external_lex_state = 4}, - [1059] = {.lex_state = 283, .external_lex_state = 4}, - [1060] = {.lex_state = 364, .external_lex_state = 2}, - [1061] = {.lex_state = 364, .external_lex_state = 2}, - [1062] = {.lex_state = 412, .external_lex_state = 7}, - [1063] = {.lex_state = 364, .external_lex_state = 2}, - [1064] = {.lex_state = 283, .external_lex_state = 4}, - [1065] = {.lex_state = 206}, - [1066] = {.lex_state = 244, .external_lex_state = 4}, - [1067] = {.lex_state = 268, .external_lex_state = 8}, - [1068] = {.lex_state = 422, .external_lex_state = 2}, - [1069] = {.lex_state = 370, .external_lex_state = 2}, - [1070] = {.lex_state = 283, .external_lex_state = 4}, - [1071] = {.lex_state = 206}, - [1072] = {.lex_state = 370, .external_lex_state = 2}, - [1073] = {.lex_state = 206}, - [1074] = {.lex_state = 206}, - [1075] = {.lex_state = 283, .external_lex_state = 4}, - [1076] = {.lex_state = 444, .external_lex_state = 13}, - [1077] = {.lex_state = 444, .external_lex_state = 13}, - [1078] = {.lex_state = 206}, - [1079] = {.lex_state = 231}, - [1080] = {.lex_state = 234}, - [1081] = {.lex_state = 424}, - [1082] = {.lex_state = 283, .external_lex_state = 4}, - [1083] = {.lex_state = 206}, - [1084] = {.lex_state = 234}, - [1085] = {.lex_state = 424}, - [1086] = {.lex_state = 274, .external_lex_state = 10}, - [1087] = {.lex_state = 436, .external_lex_state = 24}, - [1088] = {.lex_state = 436, .external_lex_state = 24}, - [1089] = {.lex_state = 206, .external_lex_state = 16}, - [1090] = {.lex_state = 401, .external_lex_state = 16}, - [1091] = {.lex_state = 274, .external_lex_state = 10}, - [1092] = {.lex_state = 399, .external_lex_state = 16}, - [1093] = {.lex_state = 274, .external_lex_state = 10}, - [1094] = {.lex_state = 403}, - [1095] = {.lex_state = 401, .external_lex_state = 16}, - [1096] = {.lex_state = 274, .external_lex_state = 10}, - [1097] = {.lex_state = 403}, - [1098] = {.lex_state = 401, .external_lex_state = 16}, - [1099] = {.lex_state = 403}, - [1100] = {.lex_state = 401, .external_lex_state = 16}, - [1101] = {.lex_state = 401, .external_lex_state = 16}, - [1102] = {.lex_state = 274, .external_lex_state = 10}, - [1103] = {.lex_state = 401, .external_lex_state = 16}, - [1104] = {.lex_state = 382, .external_lex_state = 23}, - [1105] = {.lex_state = 380, .external_lex_state = 22}, - [1106] = {.lex_state = 430, .external_lex_state = 23}, - [1107] = {.lex_state = 380, .external_lex_state = 22}, - [1108] = {.lex_state = 234}, - [1109] = {.lex_state = 446, .external_lex_state = 10}, - [1110] = {.lex_state = 446, .external_lex_state = 10}, - [1111] = {.lex_state = 283, .external_lex_state = 4}, - [1112] = {.lex_state = 281, .external_lex_state = 21}, - [1113] = {.lex_state = 387, .external_lex_state = 7}, - [1114] = {.lex_state = 206}, - [1115] = {.lex_state = 135}, - [1116] = {.lex_state = 234}, - [1117] = {.lex_state = 135}, - [1118] = {.lex_state = 234}, - [1119] = {.lex_state = 234}, - [1120] = {.lex_state = 387, .external_lex_state = 23}, - [1121] = {.lex_state = 277, .external_lex_state = 14}, - [1122] = {.lex_state = 277, .external_lex_state = 14}, - [1123] = {.lex_state = 277, .external_lex_state = 14}, - [1124] = {.lex_state = 277, .external_lex_state = 10}, - [1125] = {.lex_state = 432, .external_lex_state = 23}, - [1126] = {.lex_state = 387, .external_lex_state = 5}, - [1127] = {.lex_state = 387, .external_lex_state = 5}, - [1128] = {.lex_state = 387, .external_lex_state = 5}, - [1129] = {.lex_state = 283, .external_lex_state = 4}, - [1130] = {.lex_state = 387, .external_lex_state = 7}, - [1131] = {.lex_state = 320, .external_lex_state = 2}, - [1132] = {.lex_state = 320}, - [1133] = {.lex_state = 389, .external_lex_state = 13}, - [1134] = {.lex_state = 286, .external_lex_state = 11}, - [1135] = {.lex_state = 436, .external_lex_state = 24}, - [1136] = {.lex_state = 436, .external_lex_state = 24}, - [1137] = {.lex_state = 206, .external_lex_state = 16}, - [1138] = {.lex_state = 401, .external_lex_state = 16}, - [1139] = {.lex_state = 286, .external_lex_state = 11}, - [1140] = {.lex_state = 399, .external_lex_state = 16}, - [1141] = {.lex_state = 286, .external_lex_state = 11}, - [1142] = {.lex_state = 403}, - [1143] = {.lex_state = 401, .external_lex_state = 16}, - [1144] = {.lex_state = 286, .external_lex_state = 11}, - [1145] = {.lex_state = 403}, - [1146] = {.lex_state = 401, .external_lex_state = 16}, - [1147] = {.lex_state = 403}, - [1148] = {.lex_state = 401, .external_lex_state = 16}, - [1149] = {.lex_state = 401, .external_lex_state = 16}, - [1150] = {.lex_state = 286, .external_lex_state = 11}, - [1151] = {.lex_state = 401, .external_lex_state = 16}, - [1152] = {.lex_state = 234}, - [1153] = {.lex_state = 358, .external_lex_state = 27}, - [1154] = {.lex_state = 254}, - [1155] = {.lex_state = 261}, - [1156] = {.lex_state = 358, .external_lex_state = 27}, - [1157] = {.lex_state = 264, .external_lex_state = 6}, - [1158] = {.lex_state = 135, .external_lex_state = 2}, - [1159] = {.lex_state = 135, .external_lex_state = 2}, - [1160] = {.lex_state = 135, .external_lex_state = 2}, - [1161] = {.lex_state = 412, .external_lex_state = 23}, - [1162] = {.lex_state = 412, .external_lex_state = 23}, - [1163] = {.lex_state = 358, .external_lex_state = 27}, - [1164] = {.lex_state = 358, .external_lex_state = 27}, - [1165] = {.lex_state = 412, .external_lex_state = 23}, - [1166] = {.lex_state = 358, .external_lex_state = 23}, - [1167] = {.lex_state = 396, .external_lex_state = 13}, - [1168] = {.lex_state = 436, .external_lex_state = 24}, - [1169] = {.lex_state = 436, .external_lex_state = 24}, - [1170] = {.lex_state = 206, .external_lex_state = 16}, - [1171] = {.lex_state = 401, .external_lex_state = 16}, - [1172] = {.lex_state = 396, .external_lex_state = 13}, - [1173] = {.lex_state = 399, .external_lex_state = 16}, - [1174] = {.lex_state = 396, .external_lex_state = 13}, - [1175] = {.lex_state = 403}, - [1176] = {.lex_state = 401, .external_lex_state = 16}, - [1177] = {.lex_state = 396, .external_lex_state = 13}, - [1178] = {.lex_state = 403}, - [1179] = {.lex_state = 401, .external_lex_state = 16}, - [1180] = {.lex_state = 403}, - [1181] = {.lex_state = 401, .external_lex_state = 16}, - [1182] = {.lex_state = 401, .external_lex_state = 16}, - [1183] = {.lex_state = 396, .external_lex_state = 13}, - [1184] = {.lex_state = 401, .external_lex_state = 16}, - [1185] = {.lex_state = 277, .external_lex_state = 3}, - [1186] = {.lex_state = 320}, - [1187] = {.lex_state = 277, .external_lex_state = 14}, - [1188] = {.lex_state = 436, .external_lex_state = 24}, - [1189] = {.lex_state = 436, .external_lex_state = 24}, - [1190] = {.lex_state = 206, .external_lex_state = 16}, - [1191] = {.lex_state = 401, .external_lex_state = 16}, - [1192] = {.lex_state = 277, .external_lex_state = 14}, - [1193] = {.lex_state = 399, .external_lex_state = 16}, - [1194] = {.lex_state = 277, .external_lex_state = 14}, - [1195] = {.lex_state = 403}, - [1196] = {.lex_state = 401, .external_lex_state = 16}, - [1197] = {.lex_state = 277, .external_lex_state = 14}, - [1198] = {.lex_state = 403}, - [1199] = {.lex_state = 401, .external_lex_state = 16}, - [1200] = {.lex_state = 403}, - [1201] = {.lex_state = 401, .external_lex_state = 16}, - [1202] = {.lex_state = 401, .external_lex_state = 16}, - [1203] = {.lex_state = 277, .external_lex_state = 14}, - [1204] = {.lex_state = 401, .external_lex_state = 16}, - [1205] = {.lex_state = 277, .external_lex_state = 10}, - [1206] = {.lex_state = 436, .external_lex_state = 24}, - [1207] = {.lex_state = 436, .external_lex_state = 24}, - [1208] = {.lex_state = 206, .external_lex_state = 16}, - [1209] = {.lex_state = 401, .external_lex_state = 16}, - [1210] = {.lex_state = 277, .external_lex_state = 10}, - [1211] = {.lex_state = 399, .external_lex_state = 16}, - [1212] = {.lex_state = 277, .external_lex_state = 10}, - [1213] = {.lex_state = 403}, - [1214] = {.lex_state = 401, .external_lex_state = 16}, - [1215] = {.lex_state = 277, .external_lex_state = 10}, - [1216] = {.lex_state = 403}, - [1217] = {.lex_state = 401, .external_lex_state = 16}, - [1218] = {.lex_state = 403}, - [1219] = {.lex_state = 401, .external_lex_state = 16}, - [1220] = {.lex_state = 401, .external_lex_state = 16}, - [1221] = {.lex_state = 277, .external_lex_state = 10}, - [1222] = {.lex_state = 401, .external_lex_state = 16}, - [1223] = {.lex_state = 320, .external_lex_state = 15}, - [1224] = {.lex_state = 436, .external_lex_state = 24}, - [1225] = {.lex_state = 436, .external_lex_state = 24}, - [1226] = {.lex_state = 206, .external_lex_state = 16}, - [1227] = {.lex_state = 401, .external_lex_state = 16}, - [1228] = {.lex_state = 320, .external_lex_state = 15}, - [1229] = {.lex_state = 399, .external_lex_state = 16}, - [1230] = {.lex_state = 320, .external_lex_state = 15}, - [1231] = {.lex_state = 403}, - [1232] = {.lex_state = 401, .external_lex_state = 16}, - [1233] = {.lex_state = 320, .external_lex_state = 15}, - [1234] = {.lex_state = 403}, - [1235] = {.lex_state = 401, .external_lex_state = 16}, - [1236] = {.lex_state = 403}, - [1237] = {.lex_state = 401, .external_lex_state = 16}, - [1238] = {.lex_state = 401, .external_lex_state = 16}, - [1239] = {.lex_state = 320, .external_lex_state = 15}, - [1240] = {.lex_state = 401, .external_lex_state = 16}, - [1241] = {.lex_state = 254, .external_lex_state = 13}, - [1242] = {.lex_state = 436, .external_lex_state = 24}, - [1243] = {.lex_state = 436, .external_lex_state = 24}, - [1244] = {.lex_state = 206, .external_lex_state = 16}, - [1245] = {.lex_state = 401, .external_lex_state = 16}, - [1246] = {.lex_state = 254, .external_lex_state = 13}, - [1247] = {.lex_state = 399, .external_lex_state = 16}, - [1248] = {.lex_state = 254, .external_lex_state = 13}, - [1249] = {.lex_state = 403}, - [1250] = {.lex_state = 401, .external_lex_state = 16}, - [1251] = {.lex_state = 254, .external_lex_state = 13}, - [1252] = {.lex_state = 403}, - [1253] = {.lex_state = 401, .external_lex_state = 16}, - [1254] = {.lex_state = 403}, - [1255] = {.lex_state = 401, .external_lex_state = 16}, - [1256] = {.lex_state = 401, .external_lex_state = 16}, - [1257] = {.lex_state = 254, .external_lex_state = 13}, - [1258] = {.lex_state = 401, .external_lex_state = 16}, - [1259] = {.lex_state = 414, .external_lex_state = 12}, - [1260] = {.lex_state = 303, .external_lex_state = 24}, - [1261] = {.lex_state = 414, .external_lex_state = 12}, - [1262] = {.lex_state = 303, .external_lex_state = 24}, - [1263] = {.lex_state = 206, .external_lex_state = 12}, - [1264] = {.lex_state = 234}, - [1265] = {.lex_state = 270, .external_lex_state = 5}, - [1266] = {.lex_state = 436, .external_lex_state = 24}, - [1267] = {.lex_state = 436, .external_lex_state = 24}, - [1268] = {.lex_state = 254}, - [1269] = {.lex_state = 436, .external_lex_state = 24}, - [1270] = {.lex_state = 436, .external_lex_state = 24}, - [1271] = {.lex_state = 436, .external_lex_state = 24}, - [1272] = {.lex_state = 270, .external_lex_state = 5}, - [1273] = {.lex_state = 206}, - [1274] = {.lex_state = 303, .external_lex_state = 16}, - [1275] = {.lex_state = 311, .external_lex_state = 6}, - [1276] = {.lex_state = 303, .external_lex_state = 16}, - [1277] = {.lex_state = 303, .external_lex_state = 16}, - [1278] = {.lex_state = 206}, - [1279] = {.lex_state = 320, .external_lex_state = 2}, - [1280] = {.lex_state = 206}, - [1281] = {.lex_state = 328, .external_lex_state = 2}, - [1282] = {.lex_state = 206}, - [1283] = {.lex_state = 320, .external_lex_state = 2}, - [1284] = {.lex_state = 401, .external_lex_state = 24}, - [1285] = {.lex_state = 401, .external_lex_state = 24}, - [1286] = {.lex_state = 401, .external_lex_state = 24}, - [1287] = {.lex_state = 399, .external_lex_state = 16}, - [1288] = {.lex_state = 401, .external_lex_state = 24}, - [1289] = {.lex_state = 403}, - [1290] = {.lex_state = 401, .external_lex_state = 16}, - [1291] = {.lex_state = 206}, - [1292] = {.lex_state = 303, .external_lex_state = 16}, - [1293] = {.lex_state = 303, .external_lex_state = 16}, - [1294] = {.lex_state = 303, .external_lex_state = 16}, - [1295] = {.lex_state = 401, .external_lex_state = 24}, - [1296] = {.lex_state = 403}, - [1297] = {.lex_state = 401, .external_lex_state = 16}, - [1298] = {.lex_state = 401, .external_lex_state = 24}, - [1299] = {.lex_state = 403}, - [1300] = {.lex_state = 401, .external_lex_state = 16}, - [1301] = {.lex_state = 270, .external_lex_state = 5}, - [1302] = {.lex_state = 401, .external_lex_state = 16}, - [1303] = {.lex_state = 401, .external_lex_state = 24}, - [1304] = {.lex_state = 401, .external_lex_state = 24}, - [1305] = {.lex_state = 436, .external_lex_state = 24}, - [1306] = {.lex_state = 436, .external_lex_state = 24}, - [1307] = {.lex_state = 206, .external_lex_state = 16}, - [1308] = {.lex_state = 401, .external_lex_state = 16}, - [1309] = {.lex_state = 270, .external_lex_state = 5}, - [1310] = {.lex_state = 401, .external_lex_state = 16}, - [1311] = {.lex_state = 270, .external_lex_state = 5}, - [1312] = {.lex_state = 401, .external_lex_state = 16}, - [1313] = {.lex_state = 270, .external_lex_state = 5}, - [1314] = {.lex_state = 401, .external_lex_state = 16}, - [1315] = {.lex_state = 270, .external_lex_state = 5}, - [1316] = {.lex_state = 401, .external_lex_state = 16}, - [1317] = {.lex_state = 320, .external_lex_state = 15}, - [1318] = {.lex_state = 420, .external_lex_state = 4}, - [1319] = {.lex_state = 364, .external_lex_state = 2}, - [1320] = {.lex_state = 206}, - [1321] = {.lex_state = 440, .external_lex_state = 18}, - [1322] = {.lex_state = 364, .external_lex_state = 2}, - [1323] = {.lex_state = 206}, - [1324] = {.lex_state = 408, .external_lex_state = 18}, - [1325] = {.lex_state = 206}, - [1326] = {.lex_state = 206}, - [1327] = {.lex_state = 370, .external_lex_state = 2}, - [1328] = {.lex_state = 206}, - [1329] = {.lex_state = 424}, - [1330] = {.lex_state = 274, .external_lex_state = 4}, - [1331] = {.lex_state = 424}, - [1332] = {.lex_state = 274, .external_lex_state = 4}, - [1333] = {.lex_state = 206}, - [1334] = {.lex_state = 448, .external_lex_state = 26}, - [1335] = {.lex_state = 380, .external_lex_state = 22}, - [1336] = {.lex_state = 135}, - [1337] = {.lex_state = 234}, - [1338] = {.lex_state = 206}, - [1339] = {.lex_state = 206}, - [1340] = {.lex_state = 385, .external_lex_state = 2}, - [1341] = {.lex_state = 135}, - [1342] = {.lex_state = 234}, - [1343] = {.lex_state = 356, .external_lex_state = 20}, - [1344] = {.lex_state = 234}, - [1345] = {.lex_state = 408, .external_lex_state = 26}, - [1346] = {.lex_state = 313, .external_lex_state = 6}, - [1347] = {.lex_state = 320}, - [1348] = {.lex_state = 313, .external_lex_state = 25}, - [1349] = {.lex_state = 313, .external_lex_state = 25}, - [1350] = {.lex_state = 313, .external_lex_state = 25}, - [1351] = {.lex_state = 313, .external_lex_state = 25}, - [1352] = {.lex_state = 313, .external_lex_state = 25}, - [1353] = {.lex_state = 399, .external_lex_state = 16}, - [1354] = {.lex_state = 313, .external_lex_state = 25}, - [1355] = {.lex_state = 403}, - [1356] = {.lex_state = 401, .external_lex_state = 16}, - [1357] = {.lex_state = 206}, - [1358] = {.lex_state = 303, .external_lex_state = 16}, - [1359] = {.lex_state = 303, .external_lex_state = 16}, - [1360] = {.lex_state = 303, .external_lex_state = 16}, - [1361] = {.lex_state = 313, .external_lex_state = 25}, - [1362] = {.lex_state = 403}, - [1363] = {.lex_state = 401, .external_lex_state = 16}, - [1364] = {.lex_state = 313, .external_lex_state = 25}, - [1365] = {.lex_state = 403}, - [1366] = {.lex_state = 401, .external_lex_state = 16}, - [1367] = {.lex_state = 313, .external_lex_state = 25}, - [1368] = {.lex_state = 313, .external_lex_state = 25}, - [1369] = {.lex_state = 313, .external_lex_state = 13}, - [1370] = {.lex_state = 313, .external_lex_state = 13}, - [1371] = {.lex_state = 313, .external_lex_state = 13}, - [1372] = {.lex_state = 399, .external_lex_state = 16}, - [1373] = {.lex_state = 313, .external_lex_state = 13}, - [1374] = {.lex_state = 403}, - [1375] = {.lex_state = 401, .external_lex_state = 16}, - [1376] = {.lex_state = 206}, - [1377] = {.lex_state = 303, .external_lex_state = 16}, - [1378] = {.lex_state = 303, .external_lex_state = 16}, - [1379] = {.lex_state = 303, .external_lex_state = 16}, - [1380] = {.lex_state = 313, .external_lex_state = 13}, - [1381] = {.lex_state = 403}, - [1382] = {.lex_state = 401, .external_lex_state = 16}, - [1383] = {.lex_state = 313, .external_lex_state = 13}, - [1384] = {.lex_state = 403}, - [1385] = {.lex_state = 401, .external_lex_state = 16}, - [1386] = {.lex_state = 313, .external_lex_state = 13}, - [1387] = {.lex_state = 313, .external_lex_state = 13}, - [1388] = {.lex_state = 315, .external_lex_state = 17}, - [1389] = {.lex_state = 436, .external_lex_state = 24}, - [1390] = {.lex_state = 436, .external_lex_state = 24}, - [1391] = {.lex_state = 206, .external_lex_state = 16}, - [1392] = {.lex_state = 401, .external_lex_state = 16}, - [1393] = {.lex_state = 315, .external_lex_state = 17}, - [1394] = {.lex_state = 399, .external_lex_state = 16}, - [1395] = {.lex_state = 315, .external_lex_state = 17}, - [1396] = {.lex_state = 403}, - [1397] = {.lex_state = 401, .external_lex_state = 16}, - [1398] = {.lex_state = 315, .external_lex_state = 17}, - [1399] = {.lex_state = 403}, - [1400] = {.lex_state = 401, .external_lex_state = 16}, - [1401] = {.lex_state = 403}, - [1402] = {.lex_state = 401, .external_lex_state = 16}, - [1403] = {.lex_state = 401, .external_lex_state = 16}, - [1404] = {.lex_state = 315, .external_lex_state = 17}, - [1405] = {.lex_state = 401, .external_lex_state = 16}, - [1406] = {.lex_state = 438, .external_lex_state = 26}, - [1407] = {.lex_state = 206}, - [1408] = {.lex_state = 408, .external_lex_state = 17}, - [1409] = {.lex_state = 408, .external_lex_state = 17}, - [1410] = {.lex_state = 440, .external_lex_state = 18}, - [1411] = {.lex_state = 408, .external_lex_state = 17}, - [1412] = {.lex_state = 206}, - [1413] = {.lex_state = 408, .external_lex_state = 18}, - [1414] = {.lex_state = 328, .external_lex_state = 15}, - [1415] = {.lex_state = 410, .external_lex_state = 18}, - [1416] = {.lex_state = 206}, - [1417] = {.lex_state = 135}, - [1418] = {.lex_state = 234}, - [1419] = {.lex_state = 135}, - [1420] = {.lex_state = 234}, - [1421] = {.lex_state = 234}, - [1422] = {.lex_state = 410, .external_lex_state = 26}, - [1423] = {.lex_state = 322, .external_lex_state = 25}, - [1424] = {.lex_state = 322, .external_lex_state = 25}, - [1425] = {.lex_state = 322, .external_lex_state = 25}, - [1426] = {.lex_state = 322, .external_lex_state = 13}, - [1427] = {.lex_state = 442, .external_lex_state = 26}, - [1428] = {.lex_state = 410, .external_lex_state = 17}, - [1429] = {.lex_state = 410, .external_lex_state = 17}, - [1430] = {.lex_state = 410, .external_lex_state = 17}, - [1431] = {.lex_state = 410, .external_lex_state = 18}, - [1432] = {.lex_state = 283, .external_lex_state = 4}, - [1433] = {.lex_state = 399, .external_lex_state = 16}, - [1434] = {.lex_state = 333, .external_lex_state = 19}, - [1435] = {.lex_state = 403}, - [1436] = {.lex_state = 401, .external_lex_state = 16}, - [1437] = {.lex_state = 206}, - [1438] = {.lex_state = 303, .external_lex_state = 16}, - [1439] = {.lex_state = 303, .external_lex_state = 16}, - [1440] = {.lex_state = 303, .external_lex_state = 16}, - [1441] = {.lex_state = 333, .external_lex_state = 19}, - [1442] = {.lex_state = 403}, - [1443] = {.lex_state = 401, .external_lex_state = 16}, - [1444] = {.lex_state = 333, .external_lex_state = 19}, - [1445] = {.lex_state = 403}, - [1446] = {.lex_state = 401, .external_lex_state = 16}, - [1447] = {.lex_state = 358, .external_lex_state = 5}, - [1448] = {.lex_state = 283, .external_lex_state = 4}, - [1449] = {.lex_state = 206}, - [1450] = {.lex_state = 206}, - [1451] = {.lex_state = 418, .external_lex_state = 13}, - [1452] = {.lex_state = 418, .external_lex_state = 13}, - [1453] = {.lex_state = 418, .external_lex_state = 13}, - [1454] = {.lex_state = 399, .external_lex_state = 16}, - [1455] = {.lex_state = 418, .external_lex_state = 13}, - [1456] = {.lex_state = 403}, - [1457] = {.lex_state = 401, .external_lex_state = 16}, - [1458] = {.lex_state = 206}, - [1459] = {.lex_state = 303, .external_lex_state = 16}, - [1460] = {.lex_state = 303, .external_lex_state = 16}, - [1461] = {.lex_state = 303, .external_lex_state = 16}, - [1462] = {.lex_state = 418, .external_lex_state = 13}, - [1463] = {.lex_state = 403}, - [1464] = {.lex_state = 401, .external_lex_state = 16}, - [1465] = {.lex_state = 418, .external_lex_state = 13}, - [1466] = {.lex_state = 403}, - [1467] = {.lex_state = 401, .external_lex_state = 16}, - [1468] = {.lex_state = 418, .external_lex_state = 13}, - [1469] = {.lex_state = 418, .external_lex_state = 13}, - [1470] = {.lex_state = 281, .external_lex_state = 21}, - [1471] = {.lex_state = 436, .external_lex_state = 24}, - [1472] = {.lex_state = 436, .external_lex_state = 24}, - [1473] = {.lex_state = 206, .external_lex_state = 16}, - [1474] = {.lex_state = 401, .external_lex_state = 16}, - [1475] = {.lex_state = 281, .external_lex_state = 21}, - [1476] = {.lex_state = 399, .external_lex_state = 16}, - [1477] = {.lex_state = 281, .external_lex_state = 21}, - [1478] = {.lex_state = 403}, - [1479] = {.lex_state = 401, .external_lex_state = 16}, - [1480] = {.lex_state = 281, .external_lex_state = 21}, - [1481] = {.lex_state = 403}, - [1482] = {.lex_state = 401, .external_lex_state = 16}, - [1483] = {.lex_state = 403}, - [1484] = {.lex_state = 401, .external_lex_state = 16}, - [1485] = {.lex_state = 401, .external_lex_state = 16}, - [1486] = {.lex_state = 281, .external_lex_state = 21}, - [1487] = {.lex_state = 401, .external_lex_state = 16}, - [1488] = {.lex_state = 420, .external_lex_state = 10}, - [1489] = {.lex_state = 420, .external_lex_state = 10}, - [1490] = {.lex_state = 420, .external_lex_state = 10}, - [1491] = {.lex_state = 399, .external_lex_state = 16}, - [1492] = {.lex_state = 420, .external_lex_state = 10}, - [1493] = {.lex_state = 403}, - [1494] = {.lex_state = 401, .external_lex_state = 16}, - [1495] = {.lex_state = 206}, - [1496] = {.lex_state = 303, .external_lex_state = 16}, - [1497] = {.lex_state = 303, .external_lex_state = 16}, - [1498] = {.lex_state = 303, .external_lex_state = 16}, - [1499] = {.lex_state = 420, .external_lex_state = 10}, - [1500] = {.lex_state = 403}, - [1501] = {.lex_state = 401, .external_lex_state = 16}, - [1502] = {.lex_state = 420, .external_lex_state = 10}, - [1503] = {.lex_state = 403}, - [1504] = {.lex_state = 401, .external_lex_state = 16}, - [1505] = {.lex_state = 420, .external_lex_state = 10}, - [1506] = {.lex_state = 420, .external_lex_state = 10}, - [1507] = {.lex_state = 283, .external_lex_state = 4}, - [1508] = {.lex_state = 283, .external_lex_state = 4}, - [1509] = {.lex_state = 370, .external_lex_state = 2}, - [1510] = {.lex_state = 422, .external_lex_state = 2}, - [1511] = {.lex_state = 422, .external_lex_state = 2}, - [1512] = {.lex_state = 283, .external_lex_state = 4}, - [1513] = {.lex_state = 206}, - [1514] = {.lex_state = 234}, - [1515] = {.lex_state = 450, .external_lex_state = 2}, - [1516] = {.lex_state = 231}, - [1517] = {.lex_state = 444, .external_lex_state = 13}, - [1518] = {.lex_state = 450, .external_lex_state = 2}, - [1519] = {.lex_state = 231}, - [1520] = {.lex_state = 283, .external_lex_state = 4}, - [1521] = {.lex_state = 206}, - [1522] = {.lex_state = 234}, - [1523] = {.lex_state = 283, .external_lex_state = 4}, - [1524] = {.lex_state = 234}, - [1525] = {.lex_state = 283, .external_lex_state = 4}, - [1526] = {.lex_state = 206}, - [1527] = {.lex_state = 283, .external_lex_state = 4}, - [1528] = {.lex_state = 234}, - [1529] = {.lex_state = 274, .external_lex_state = 10}, - [1530] = {.lex_state = 274, .external_lex_state = 10}, - [1531] = {.lex_state = 274, .external_lex_state = 10}, - [1532] = {.lex_state = 401, .external_lex_state = 16}, - [1533] = {.lex_state = 436, .external_lex_state = 24}, - [1534] = {.lex_state = 436, .external_lex_state = 24}, - [1535] = {.lex_state = 206, .external_lex_state = 16}, - [1536] = {.lex_state = 401, .external_lex_state = 16}, - [1537] = {.lex_state = 274, .external_lex_state = 10}, - [1538] = {.lex_state = 401, .external_lex_state = 16}, - [1539] = {.lex_state = 274, .external_lex_state = 10}, - [1540] = {.lex_state = 401, .external_lex_state = 16}, - [1541] = {.lex_state = 274, .external_lex_state = 10}, - [1542] = {.lex_state = 401, .external_lex_state = 16}, - [1543] = {.lex_state = 274, .external_lex_state = 10}, - [1544] = {.lex_state = 401, .external_lex_state = 16}, - [1545] = {.lex_state = 283, .external_lex_state = 4}, - [1546] = {.lex_state = 446, .external_lex_state = 10}, - [1547] = {.lex_state = 446, .external_lex_state = 10}, - [1548] = {.lex_state = 283, .external_lex_state = 4}, - [1549] = {.lex_state = 446, .external_lex_state = 10}, - [1550] = {.lex_state = 281, .external_lex_state = 21}, - [1551] = {.lex_state = 432, .external_lex_state = 23}, - [1552] = {.lex_state = 234}, - [1553] = {.lex_state = 453, .external_lex_state = 10}, - [1554] = {.lex_state = 453, .external_lex_state = 10}, - [1555] = {.lex_state = 234}, - [1556] = {.lex_state = 387, .external_lex_state = 27}, - [1557] = {.lex_state = 387, .external_lex_state = 27}, - [1558] = {.lex_state = 387, .external_lex_state = 27}, - [1559] = {.lex_state = 387, .external_lex_state = 27}, - [1560] = {.lex_state = 387, .external_lex_state = 23}, - [1561] = {.lex_state = 387, .external_lex_state = 5}, - [1562] = {.lex_state = 320, .external_lex_state = 2}, - [1563] = {.lex_state = 286, .external_lex_state = 11}, - [1564] = {.lex_state = 286, .external_lex_state = 11}, - [1565] = {.lex_state = 286, .external_lex_state = 11}, - [1566] = {.lex_state = 401, .external_lex_state = 16}, - [1567] = {.lex_state = 436, .external_lex_state = 24}, - [1568] = {.lex_state = 436, .external_lex_state = 24}, - [1569] = {.lex_state = 206, .external_lex_state = 16}, - [1570] = {.lex_state = 401, .external_lex_state = 16}, - [1571] = {.lex_state = 286, .external_lex_state = 11}, - [1572] = {.lex_state = 401, .external_lex_state = 16}, - [1573] = {.lex_state = 286, .external_lex_state = 11}, - [1574] = {.lex_state = 401, .external_lex_state = 16}, - [1575] = {.lex_state = 286, .external_lex_state = 11}, - [1576] = {.lex_state = 401, .external_lex_state = 16}, - [1577] = {.lex_state = 286, .external_lex_state = 11}, - [1578] = {.lex_state = 401, .external_lex_state = 16}, - [1579] = {.lex_state = 358, .external_lex_state = 27}, - [1580] = {.lex_state = 358, .external_lex_state = 27}, - [1581] = {.lex_state = 412, .external_lex_state = 23}, - [1582] = {.lex_state = 234}, - [1583] = {.lex_state = 358, .external_lex_state = 27}, - [1584] = {.lex_state = 412, .external_lex_state = 27}, - [1585] = {.lex_state = 254}, - [1586] = {.lex_state = 412, .external_lex_state = 27}, - [1587] = {.lex_state = 412, .external_lex_state = 27}, - [1588] = {.lex_state = 412, .external_lex_state = 27}, - [1589] = {.lex_state = 206}, - [1590] = {.lex_state = 303, .external_lex_state = 16}, - [1591] = {.lex_state = 311, .external_lex_state = 6}, - [1592] = {.lex_state = 303, .external_lex_state = 16}, - [1593] = {.lex_state = 303, .external_lex_state = 16}, - [1594] = {.lex_state = 206}, - [1595] = {.lex_state = 320, .external_lex_state = 2}, - [1596] = {.lex_state = 206}, - [1597] = {.lex_state = 328, .external_lex_state = 2}, - [1598] = {.lex_state = 206}, - [1599] = {.lex_state = 320, .external_lex_state = 2}, - [1600] = {.lex_state = 396, .external_lex_state = 13}, - [1601] = {.lex_state = 396, .external_lex_state = 13}, - [1602] = {.lex_state = 396, .external_lex_state = 13}, - [1603] = {.lex_state = 401, .external_lex_state = 16}, - [1604] = {.lex_state = 436, .external_lex_state = 24}, - [1605] = {.lex_state = 436, .external_lex_state = 24}, - [1606] = {.lex_state = 206, .external_lex_state = 16}, - [1607] = {.lex_state = 401, .external_lex_state = 16}, - [1608] = {.lex_state = 396, .external_lex_state = 13}, - [1609] = {.lex_state = 401, .external_lex_state = 16}, - [1610] = {.lex_state = 396, .external_lex_state = 13}, - [1611] = {.lex_state = 401, .external_lex_state = 16}, - [1612] = {.lex_state = 396, .external_lex_state = 13}, - [1613] = {.lex_state = 401, .external_lex_state = 16}, - [1614] = {.lex_state = 396, .external_lex_state = 13}, - [1615] = {.lex_state = 401, .external_lex_state = 16}, - [1616] = {.lex_state = 277, .external_lex_state = 3}, - [1617] = {.lex_state = 277, .external_lex_state = 14}, - [1618] = {.lex_state = 277, .external_lex_state = 14}, - [1619] = {.lex_state = 277, .external_lex_state = 14}, - [1620] = {.lex_state = 401, .external_lex_state = 16}, - [1621] = {.lex_state = 436, .external_lex_state = 24}, - [1622] = {.lex_state = 436, .external_lex_state = 24}, - [1623] = {.lex_state = 206, .external_lex_state = 16}, - [1624] = {.lex_state = 401, .external_lex_state = 16}, - [1625] = {.lex_state = 277, .external_lex_state = 14}, - [1626] = {.lex_state = 401, .external_lex_state = 16}, - [1627] = {.lex_state = 277, .external_lex_state = 14}, - [1628] = {.lex_state = 401, .external_lex_state = 16}, - [1629] = {.lex_state = 277, .external_lex_state = 14}, - [1630] = {.lex_state = 401, .external_lex_state = 16}, - [1631] = {.lex_state = 277, .external_lex_state = 14}, - [1632] = {.lex_state = 401, .external_lex_state = 16}, - [1633] = {.lex_state = 277, .external_lex_state = 10}, - [1634] = {.lex_state = 277, .external_lex_state = 10}, - [1635] = {.lex_state = 277, .external_lex_state = 10}, - [1636] = {.lex_state = 401, .external_lex_state = 16}, - [1637] = {.lex_state = 436, .external_lex_state = 24}, - [1638] = {.lex_state = 436, .external_lex_state = 24}, - [1639] = {.lex_state = 206, .external_lex_state = 16}, - [1640] = {.lex_state = 401, .external_lex_state = 16}, - [1641] = {.lex_state = 277, .external_lex_state = 10}, - [1642] = {.lex_state = 401, .external_lex_state = 16}, - [1643] = {.lex_state = 277, .external_lex_state = 10}, - [1644] = {.lex_state = 401, .external_lex_state = 16}, - [1645] = {.lex_state = 277, .external_lex_state = 10}, - [1646] = {.lex_state = 401, .external_lex_state = 16}, - [1647] = {.lex_state = 277, .external_lex_state = 10}, - [1648] = {.lex_state = 401, .external_lex_state = 16}, - [1649] = {.lex_state = 320, .external_lex_state = 15}, - [1650] = {.lex_state = 320, .external_lex_state = 15}, - [1651] = {.lex_state = 320, .external_lex_state = 15}, - [1652] = {.lex_state = 401, .external_lex_state = 16}, - [1653] = {.lex_state = 436, .external_lex_state = 24}, - [1654] = {.lex_state = 436, .external_lex_state = 24}, - [1655] = {.lex_state = 206, .external_lex_state = 16}, - [1656] = {.lex_state = 401, .external_lex_state = 16}, - [1657] = {.lex_state = 320, .external_lex_state = 15}, - [1658] = {.lex_state = 401, .external_lex_state = 16}, - [1659] = {.lex_state = 320, .external_lex_state = 15}, - [1660] = {.lex_state = 401, .external_lex_state = 16}, - [1661] = {.lex_state = 320, .external_lex_state = 15}, - [1662] = {.lex_state = 401, .external_lex_state = 16}, - [1663] = {.lex_state = 320, .external_lex_state = 15}, - [1664] = {.lex_state = 401, .external_lex_state = 16}, - [1665] = {.lex_state = 254, .external_lex_state = 13}, - [1666] = {.lex_state = 254, .external_lex_state = 13}, - [1667] = {.lex_state = 254, .external_lex_state = 13}, - [1668] = {.lex_state = 401, .external_lex_state = 16}, - [1669] = {.lex_state = 436, .external_lex_state = 24}, - [1670] = {.lex_state = 436, .external_lex_state = 24}, - [1671] = {.lex_state = 206, .external_lex_state = 16}, - [1672] = {.lex_state = 401, .external_lex_state = 16}, - [1673] = {.lex_state = 254, .external_lex_state = 13}, - [1674] = {.lex_state = 401, .external_lex_state = 16}, - [1675] = {.lex_state = 254, .external_lex_state = 13}, - [1676] = {.lex_state = 401, .external_lex_state = 16}, - [1677] = {.lex_state = 254, .external_lex_state = 13}, - [1678] = {.lex_state = 401, .external_lex_state = 16}, - [1679] = {.lex_state = 254, .external_lex_state = 13}, - [1680] = {.lex_state = 401, .external_lex_state = 16}, - [1681] = {.lex_state = 303, .external_lex_state = 24}, - [1682] = {.lex_state = 303, .external_lex_state = 16}, - [1683] = {.lex_state = 303, .external_lex_state = 24}, - [1684] = {.lex_state = 303, .external_lex_state = 16}, - [1685] = {.lex_state = 436, .external_lex_state = 24}, - [1686] = {.lex_state = 436, .external_lex_state = 24}, - [1687] = {.lex_state = 436, .external_lex_state = 24}, - [1688] = {.lex_state = 399, .external_lex_state = 16}, - [1689] = {.lex_state = 436, .external_lex_state = 24}, - [1690] = {.lex_state = 403}, - [1691] = {.lex_state = 401, .external_lex_state = 16}, - [1692] = {.lex_state = 206}, - [1693] = {.lex_state = 303, .external_lex_state = 16}, - [1694] = {.lex_state = 303, .external_lex_state = 16}, - [1695] = {.lex_state = 303, .external_lex_state = 16}, - [1696] = {.lex_state = 436, .external_lex_state = 24}, - [1697] = {.lex_state = 403}, - [1698] = {.lex_state = 401, .external_lex_state = 16}, - [1699] = {.lex_state = 436, .external_lex_state = 24}, - [1700] = {.lex_state = 403}, - [1701] = {.lex_state = 401, .external_lex_state = 16}, - [1702] = {.lex_state = 436, .external_lex_state = 24}, - [1703] = {.lex_state = 436, .external_lex_state = 24}, - [1704] = {.lex_state = 401, .external_lex_state = 24}, - [1705] = {.lex_state = 436, .external_lex_state = 24}, - [1706] = {.lex_state = 436, .external_lex_state = 24}, - [1707] = {.lex_state = 206, .external_lex_state = 16}, - [1708] = {.lex_state = 401, .external_lex_state = 16}, - [1709] = {.lex_state = 401, .external_lex_state = 24}, - [1710] = {.lex_state = 399, .external_lex_state = 16}, - [1711] = {.lex_state = 401, .external_lex_state = 24}, - [1712] = {.lex_state = 403}, - [1713] = {.lex_state = 401, .external_lex_state = 16}, - [1714] = {.lex_state = 401, .external_lex_state = 24}, - [1715] = {.lex_state = 403}, - [1716] = {.lex_state = 401, .external_lex_state = 16}, - [1717] = {.lex_state = 403}, - [1718] = {.lex_state = 401, .external_lex_state = 16}, - [1719] = {.lex_state = 401, .external_lex_state = 16}, - [1720] = {.lex_state = 401, .external_lex_state = 24}, - [1721] = {.lex_state = 401, .external_lex_state = 16}, - [1722] = {.lex_state = 270, .external_lex_state = 5}, - [1723] = {.lex_state = 270, .external_lex_state = 5}, - [1724] = {.lex_state = 270, .external_lex_state = 5}, - [1725] = {.lex_state = 270, .external_lex_state = 5}, - [1726] = {.lex_state = 401, .external_lex_state = 16}, - [1727] = {.lex_state = 270, .external_lex_state = 5}, - [1728] = {.lex_state = 401, .external_lex_state = 16}, - [1729] = {.lex_state = 270, .external_lex_state = 5}, - [1730] = {.lex_state = 401, .external_lex_state = 16}, - [1731] = {.lex_state = 270, .external_lex_state = 5}, - [1732] = {.lex_state = 270, .external_lex_state = 5}, - [1733] = {.lex_state = 320, .external_lex_state = 15}, - [1734] = {.lex_state = 206}, - [1735] = {.lex_state = 206}, - [1736] = {.lex_state = 364, .external_lex_state = 2}, - [1737] = {.lex_state = 440, .external_lex_state = 18}, - [1738] = {.lex_state = 206}, - [1739] = {.lex_state = 206}, - [1740] = {.lex_state = 206}, - [1741] = {.lex_state = 206}, - [1742] = {.lex_state = 206}, - [1743] = {.lex_state = 206}, - [1744] = {.lex_state = 234}, - [1745] = {.lex_state = 424}, - [1746] = {.lex_state = 206}, - [1747] = {.lex_state = 206}, - [1748] = {.lex_state = 234}, - [1749] = {.lex_state = 424}, - [1750] = {.lex_state = 438, .external_lex_state = 26}, - [1751] = {.lex_state = 448, .external_lex_state = 26}, - [1752] = {.lex_state = 234}, - [1753] = {.lex_state = 455, .external_lex_state = 13}, - [1754] = {.lex_state = 455, .external_lex_state = 13}, - [1755] = {.lex_state = 206}, - [1756] = {.lex_state = 206}, - [1757] = {.lex_state = 234}, - [1758] = {.lex_state = 408, .external_lex_state = 28}, - [1759] = {.lex_state = 254}, - [1760] = {.lex_state = 261}, - [1761] = {.lex_state = 408, .external_lex_state = 28}, - [1762] = {.lex_state = 264, .external_lex_state = 6}, - [1763] = {.lex_state = 135, .external_lex_state = 2}, - [1764] = {.lex_state = 135, .external_lex_state = 2}, - [1765] = {.lex_state = 135, .external_lex_state = 2}, - [1766] = {.lex_state = 440, .external_lex_state = 26}, - [1767] = {.lex_state = 440, .external_lex_state = 26}, - [1768] = {.lex_state = 408, .external_lex_state = 28}, - [1769] = {.lex_state = 408, .external_lex_state = 28}, - [1770] = {.lex_state = 440, .external_lex_state = 26}, - [1771] = {.lex_state = 408, .external_lex_state = 26}, - [1772] = {.lex_state = 313, .external_lex_state = 6}, - [1773] = {.lex_state = 320}, - [1774] = {.lex_state = 313, .external_lex_state = 25}, - [1775] = {.lex_state = 436, .external_lex_state = 24}, - [1776] = {.lex_state = 436, .external_lex_state = 24}, - [1777] = {.lex_state = 206, .external_lex_state = 16}, - [1778] = {.lex_state = 401, .external_lex_state = 16}, - [1779] = {.lex_state = 313, .external_lex_state = 25}, - [1780] = {.lex_state = 399, .external_lex_state = 16}, - [1781] = {.lex_state = 313, .external_lex_state = 25}, - [1782] = {.lex_state = 403}, - [1783] = {.lex_state = 401, .external_lex_state = 16}, - [1784] = {.lex_state = 313, .external_lex_state = 25}, - [1785] = {.lex_state = 403}, - [1786] = {.lex_state = 401, .external_lex_state = 16}, - [1787] = {.lex_state = 403}, - [1788] = {.lex_state = 401, .external_lex_state = 16}, - [1789] = {.lex_state = 401, .external_lex_state = 16}, - [1790] = {.lex_state = 313, .external_lex_state = 25}, - [1791] = {.lex_state = 401, .external_lex_state = 16}, - [1792] = {.lex_state = 313, .external_lex_state = 13}, - [1793] = {.lex_state = 436, .external_lex_state = 24}, - [1794] = {.lex_state = 436, .external_lex_state = 24}, - [1795] = {.lex_state = 206, .external_lex_state = 16}, - [1796] = {.lex_state = 401, .external_lex_state = 16}, - [1797] = {.lex_state = 313, .external_lex_state = 13}, - [1798] = {.lex_state = 399, .external_lex_state = 16}, - [1799] = {.lex_state = 313, .external_lex_state = 13}, - [1800] = {.lex_state = 403}, - [1801] = {.lex_state = 401, .external_lex_state = 16}, - [1802] = {.lex_state = 313, .external_lex_state = 13}, - [1803] = {.lex_state = 403}, - [1804] = {.lex_state = 401, .external_lex_state = 16}, - [1805] = {.lex_state = 403}, - [1806] = {.lex_state = 401, .external_lex_state = 16}, - [1807] = {.lex_state = 401, .external_lex_state = 16}, - [1808] = {.lex_state = 313, .external_lex_state = 13}, - [1809] = {.lex_state = 401, .external_lex_state = 16}, - [1810] = {.lex_state = 315, .external_lex_state = 17}, - [1811] = {.lex_state = 315, .external_lex_state = 17}, - [1812] = {.lex_state = 315, .external_lex_state = 17}, - [1813] = {.lex_state = 401, .external_lex_state = 16}, - [1814] = {.lex_state = 436, .external_lex_state = 24}, - [1815] = {.lex_state = 436, .external_lex_state = 24}, - [1816] = {.lex_state = 206, .external_lex_state = 16}, - [1817] = {.lex_state = 401, .external_lex_state = 16}, - [1818] = {.lex_state = 315, .external_lex_state = 17}, - [1819] = {.lex_state = 401, .external_lex_state = 16}, - [1820] = {.lex_state = 315, .external_lex_state = 17}, - [1821] = {.lex_state = 401, .external_lex_state = 16}, - [1822] = {.lex_state = 315, .external_lex_state = 17}, - [1823] = {.lex_state = 401, .external_lex_state = 16}, - [1824] = {.lex_state = 315, .external_lex_state = 17}, - [1825] = {.lex_state = 401, .external_lex_state = 16}, - [1826] = {.lex_state = 206}, - [1827] = {.lex_state = 408, .external_lex_state = 17}, - [1828] = {.lex_state = 206}, - [1829] = {.lex_state = 328, .external_lex_state = 15}, - [1830] = {.lex_state = 442, .external_lex_state = 26}, - [1831] = {.lex_state = 234}, - [1832] = {.lex_state = 457, .external_lex_state = 13}, - [1833] = {.lex_state = 457, .external_lex_state = 13}, - [1834] = {.lex_state = 234}, - [1835] = {.lex_state = 410, .external_lex_state = 28}, - [1836] = {.lex_state = 410, .external_lex_state = 28}, - [1837] = {.lex_state = 410, .external_lex_state = 28}, - [1838] = {.lex_state = 410, .external_lex_state = 28}, - [1839] = {.lex_state = 410, .external_lex_state = 26}, - [1840] = {.lex_state = 410, .external_lex_state = 17}, - [1841] = {.lex_state = 333, .external_lex_state = 19}, - [1842] = {.lex_state = 436, .external_lex_state = 24}, - [1843] = {.lex_state = 436, .external_lex_state = 24}, - [1844] = {.lex_state = 206, .external_lex_state = 16}, - [1845] = {.lex_state = 401, .external_lex_state = 16}, - [1846] = {.lex_state = 333, .external_lex_state = 19}, - [1847] = {.lex_state = 399, .external_lex_state = 16}, - [1848] = {.lex_state = 333, .external_lex_state = 19}, - [1849] = {.lex_state = 403}, - [1850] = {.lex_state = 401, .external_lex_state = 16}, - [1851] = {.lex_state = 333, .external_lex_state = 19}, - [1852] = {.lex_state = 403}, - [1853] = {.lex_state = 401, .external_lex_state = 16}, - [1854] = {.lex_state = 403}, - [1855] = {.lex_state = 401, .external_lex_state = 16}, - [1856] = {.lex_state = 401, .external_lex_state = 16}, - [1857] = {.lex_state = 333, .external_lex_state = 19}, - [1858] = {.lex_state = 401, .external_lex_state = 16}, - [1859] = {.lex_state = 418, .external_lex_state = 13}, - [1860] = {.lex_state = 436, .external_lex_state = 24}, - [1861] = {.lex_state = 436, .external_lex_state = 24}, - [1862] = {.lex_state = 206, .external_lex_state = 16}, - [1863] = {.lex_state = 401, .external_lex_state = 16}, - [1864] = {.lex_state = 418, .external_lex_state = 13}, - [1865] = {.lex_state = 399, .external_lex_state = 16}, - [1866] = {.lex_state = 418, .external_lex_state = 13}, - [1867] = {.lex_state = 403}, - [1868] = {.lex_state = 401, .external_lex_state = 16}, - [1869] = {.lex_state = 418, .external_lex_state = 13}, - [1870] = {.lex_state = 403}, - [1871] = {.lex_state = 401, .external_lex_state = 16}, - [1872] = {.lex_state = 403}, - [1873] = {.lex_state = 401, .external_lex_state = 16}, - [1874] = {.lex_state = 401, .external_lex_state = 16}, - [1875] = {.lex_state = 418, .external_lex_state = 13}, - [1876] = {.lex_state = 401, .external_lex_state = 16}, - [1877] = {.lex_state = 281, .external_lex_state = 21}, - [1878] = {.lex_state = 281, .external_lex_state = 21}, - [1879] = {.lex_state = 281, .external_lex_state = 21}, - [1880] = {.lex_state = 401, .external_lex_state = 16}, - [1881] = {.lex_state = 436, .external_lex_state = 24}, - [1882] = {.lex_state = 436, .external_lex_state = 24}, - [1883] = {.lex_state = 206, .external_lex_state = 16}, - [1884] = {.lex_state = 401, .external_lex_state = 16}, - [1885] = {.lex_state = 281, .external_lex_state = 21}, - [1886] = {.lex_state = 401, .external_lex_state = 16}, - [1887] = {.lex_state = 281, .external_lex_state = 21}, - [1888] = {.lex_state = 401, .external_lex_state = 16}, - [1889] = {.lex_state = 281, .external_lex_state = 21}, - [1890] = {.lex_state = 401, .external_lex_state = 16}, - [1891] = {.lex_state = 281, .external_lex_state = 21}, - [1892] = {.lex_state = 401, .external_lex_state = 16}, - [1893] = {.lex_state = 420, .external_lex_state = 10}, - [1894] = {.lex_state = 436, .external_lex_state = 24}, - [1895] = {.lex_state = 436, .external_lex_state = 24}, - [1896] = {.lex_state = 206, .external_lex_state = 16}, - [1897] = {.lex_state = 401, .external_lex_state = 16}, - [1898] = {.lex_state = 420, .external_lex_state = 10}, - [1899] = {.lex_state = 399, .external_lex_state = 16}, - [1900] = {.lex_state = 420, .external_lex_state = 10}, - [1901] = {.lex_state = 403}, - [1902] = {.lex_state = 401, .external_lex_state = 16}, - [1903] = {.lex_state = 420, .external_lex_state = 10}, - [1904] = {.lex_state = 403}, - [1905] = {.lex_state = 401, .external_lex_state = 16}, - [1906] = {.lex_state = 403}, - [1907] = {.lex_state = 401, .external_lex_state = 16}, - [1908] = {.lex_state = 401, .external_lex_state = 16}, - [1909] = {.lex_state = 420, .external_lex_state = 10}, - [1910] = {.lex_state = 401, .external_lex_state = 16}, - [1911] = {.lex_state = 370, .external_lex_state = 2}, - [1912] = {.lex_state = 283, .external_lex_state = 4}, - [1913] = {.lex_state = 444, .external_lex_state = 13}, - [1914] = {.lex_state = 444, .external_lex_state = 13}, - [1915] = {.lex_state = 231}, - [1916] = {.lex_state = 206}, - [1917] = {.lex_state = 135, .external_lex_state = 2}, - [1918] = {.lex_state = 424}, - [1919] = {.lex_state = 234}, - [1920] = {.lex_state = 236, .external_lex_state = 2}, - [1921] = {.lex_state = 238}, - [1922] = {.lex_state = 238}, - [1923] = {.lex_state = 459, .external_lex_state = 3}, - [1924] = {.lex_state = 459, .external_lex_state = 4}, - [1925] = {.lex_state = 465, .external_lex_state = 5}, - [1926] = {.lex_state = 254}, - [1927] = {.lex_state = 261}, - [1928] = {.lex_state = 465, .external_lex_state = 5}, - [1929] = {.lex_state = 264, .external_lex_state = 6}, - [1930] = {.lex_state = 135, .external_lex_state = 2}, - [1931] = {.lex_state = 135, .external_lex_state = 2}, - [1932] = {.lex_state = 135, .external_lex_state = 2}, - [1933] = {.lex_state = 467, .external_lex_state = 5}, - [1934] = {.lex_state = 283, .external_lex_state = 4}, - [1935] = {.lex_state = 465, .external_lex_state = 7}, - [1936] = {.lex_state = 469, .external_lex_state = 8}, - [1937] = {.lex_state = 206}, - [1938] = {.lex_state = 465, .external_lex_state = 7}, - [1939] = {.lex_state = 450, .external_lex_state = 2}, - [1940] = {.lex_state = 234, .external_lex_state = 2}, - [1941] = {.lex_state = 450, .external_lex_state = 2}, - [1942] = {.lex_state = 231}, - [1943] = {.lex_state = 444, .external_lex_state = 13}, - [1944] = {.lex_state = 424}, - [1945] = {.lex_state = 283, .external_lex_state = 4}, - [1946] = {.lex_state = 469, .external_lex_state = 8}, - [1947] = {.lex_state = 450, .external_lex_state = 2}, - [1948] = {.lex_state = 450, .external_lex_state = 2}, - [1949] = {.lex_state = 283, .external_lex_state = 4}, - [1950] = {.lex_state = 444, .external_lex_state = 13}, - [1951] = {.lex_state = 444, .external_lex_state = 13}, - [1952] = {.lex_state = 231}, - [1953] = {.lex_state = 206}, - [1954] = {.lex_state = 283, .external_lex_state = 4}, - [1955] = {.lex_state = 206}, - [1956] = {.lex_state = 274, .external_lex_state = 10}, - [1957] = {.lex_state = 274, .external_lex_state = 10}, - [1958] = {.lex_state = 274, .external_lex_state = 10}, - [1959] = {.lex_state = 274, .external_lex_state = 10}, - [1960] = {.lex_state = 401, .external_lex_state = 16}, - [1961] = {.lex_state = 274, .external_lex_state = 10}, - [1962] = {.lex_state = 401, .external_lex_state = 16}, - [1963] = {.lex_state = 274, .external_lex_state = 10}, - [1964] = {.lex_state = 401, .external_lex_state = 16}, - [1965] = {.lex_state = 274, .external_lex_state = 10}, - [1966] = {.lex_state = 274, .external_lex_state = 10}, - [1967] = {.lex_state = 446, .external_lex_state = 10}, - [1968] = {.lex_state = 453, .external_lex_state = 10}, - [1969] = {.lex_state = 453, .external_lex_state = 10}, - [1970] = {.lex_state = 453, .external_lex_state = 10}, - [1971] = {.lex_state = 387, .external_lex_state = 27}, - [1972] = {.lex_state = 387, .external_lex_state = 27}, - [1973] = {.lex_state = 387, .external_lex_state = 27}, - [1974] = {.lex_state = 286, .external_lex_state = 11}, - [1975] = {.lex_state = 286, .external_lex_state = 11}, - [1976] = {.lex_state = 286, .external_lex_state = 11}, - [1977] = {.lex_state = 286, .external_lex_state = 11}, - [1978] = {.lex_state = 401, .external_lex_state = 16}, - [1979] = {.lex_state = 286, .external_lex_state = 11}, - [1980] = {.lex_state = 401, .external_lex_state = 16}, - [1981] = {.lex_state = 286, .external_lex_state = 11}, - [1982] = {.lex_state = 401, .external_lex_state = 16}, - [1983] = {.lex_state = 286, .external_lex_state = 11}, - [1984] = {.lex_state = 286, .external_lex_state = 11}, - [1985] = {.lex_state = 412, .external_lex_state = 27}, - [1986] = {.lex_state = 358, .external_lex_state = 27}, - [1987] = {.lex_state = 412, .external_lex_state = 27}, - [1988] = {.lex_state = 399, .external_lex_state = 16}, - [1989] = {.lex_state = 412, .external_lex_state = 27}, - [1990] = {.lex_state = 403}, - [1991] = {.lex_state = 401, .external_lex_state = 16}, - [1992] = {.lex_state = 206}, - [1993] = {.lex_state = 303, .external_lex_state = 16}, - [1994] = {.lex_state = 303, .external_lex_state = 16}, - [1995] = {.lex_state = 303, .external_lex_state = 16}, - [1996] = {.lex_state = 412, .external_lex_state = 27}, - [1997] = {.lex_state = 403}, - [1998] = {.lex_state = 401, .external_lex_state = 16}, - [1999] = {.lex_state = 412, .external_lex_state = 27}, - [2000] = {.lex_state = 403}, - [2001] = {.lex_state = 401, .external_lex_state = 16}, - [2002] = {.lex_state = 412, .external_lex_state = 27}, - [2003] = {.lex_state = 412, .external_lex_state = 27}, - [2004] = {.lex_state = 396, .external_lex_state = 13}, - [2005] = {.lex_state = 396, .external_lex_state = 13}, - [2006] = {.lex_state = 396, .external_lex_state = 13}, - [2007] = {.lex_state = 396, .external_lex_state = 13}, - [2008] = {.lex_state = 401, .external_lex_state = 16}, - [2009] = {.lex_state = 396, .external_lex_state = 13}, - [2010] = {.lex_state = 401, .external_lex_state = 16}, - [2011] = {.lex_state = 396, .external_lex_state = 13}, - [2012] = {.lex_state = 401, .external_lex_state = 16}, - [2013] = {.lex_state = 396, .external_lex_state = 13}, - [2014] = {.lex_state = 396, .external_lex_state = 13}, - [2015] = {.lex_state = 277, .external_lex_state = 14}, - [2016] = {.lex_state = 277, .external_lex_state = 14}, - [2017] = {.lex_state = 277, .external_lex_state = 14}, - [2018] = {.lex_state = 277, .external_lex_state = 14}, - [2019] = {.lex_state = 401, .external_lex_state = 16}, - [2020] = {.lex_state = 277, .external_lex_state = 14}, - [2021] = {.lex_state = 401, .external_lex_state = 16}, - [2022] = {.lex_state = 277, .external_lex_state = 14}, - [2023] = {.lex_state = 401, .external_lex_state = 16}, - [2024] = {.lex_state = 277, .external_lex_state = 14}, - [2025] = {.lex_state = 277, .external_lex_state = 14}, - [2026] = {.lex_state = 277, .external_lex_state = 10}, - [2027] = {.lex_state = 277, .external_lex_state = 10}, - [2028] = {.lex_state = 277, .external_lex_state = 10}, - [2029] = {.lex_state = 277, .external_lex_state = 10}, - [2030] = {.lex_state = 401, .external_lex_state = 16}, - [2031] = {.lex_state = 277, .external_lex_state = 10}, - [2032] = {.lex_state = 401, .external_lex_state = 16}, - [2033] = {.lex_state = 277, .external_lex_state = 10}, - [2034] = {.lex_state = 401, .external_lex_state = 16}, - [2035] = {.lex_state = 277, .external_lex_state = 10}, - [2036] = {.lex_state = 277, .external_lex_state = 10}, - [2037] = {.lex_state = 320, .external_lex_state = 15}, - [2038] = {.lex_state = 320, .external_lex_state = 15}, - [2039] = {.lex_state = 320, .external_lex_state = 15}, - [2040] = {.lex_state = 320, .external_lex_state = 15}, - [2041] = {.lex_state = 401, .external_lex_state = 16}, - [2042] = {.lex_state = 320, .external_lex_state = 15}, - [2043] = {.lex_state = 401, .external_lex_state = 16}, - [2044] = {.lex_state = 320, .external_lex_state = 15}, - [2045] = {.lex_state = 401, .external_lex_state = 16}, - [2046] = {.lex_state = 320, .external_lex_state = 15}, - [2047] = {.lex_state = 320, .external_lex_state = 15}, - [2048] = {.lex_state = 254, .external_lex_state = 13}, - [2049] = {.lex_state = 254, .external_lex_state = 13}, - [2050] = {.lex_state = 254, .external_lex_state = 13}, - [2051] = {.lex_state = 254, .external_lex_state = 13}, - [2052] = {.lex_state = 401, .external_lex_state = 16}, - [2053] = {.lex_state = 254, .external_lex_state = 13}, - [2054] = {.lex_state = 401, .external_lex_state = 16}, - [2055] = {.lex_state = 254, .external_lex_state = 13}, - [2056] = {.lex_state = 401, .external_lex_state = 16}, - [2057] = {.lex_state = 254, .external_lex_state = 13}, - [2058] = {.lex_state = 254, .external_lex_state = 13}, - [2059] = {.lex_state = 303, .external_lex_state = 16}, - [2060] = {.lex_state = 303, .external_lex_state = 16}, - [2061] = {.lex_state = 436, .external_lex_state = 24}, - [2062] = {.lex_state = 436, .external_lex_state = 24}, - [2063] = {.lex_state = 436, .external_lex_state = 24}, - [2064] = {.lex_state = 206, .external_lex_state = 16}, - [2065] = {.lex_state = 401, .external_lex_state = 16}, - [2066] = {.lex_state = 436, .external_lex_state = 24}, - [2067] = {.lex_state = 399, .external_lex_state = 16}, - [2068] = {.lex_state = 436, .external_lex_state = 24}, - [2069] = {.lex_state = 403}, - [2070] = {.lex_state = 401, .external_lex_state = 16}, - [2071] = {.lex_state = 436, .external_lex_state = 24}, - [2072] = {.lex_state = 403}, - [2073] = {.lex_state = 401, .external_lex_state = 16}, - [2074] = {.lex_state = 403}, - [2075] = {.lex_state = 401, .external_lex_state = 16}, - [2076] = {.lex_state = 401, .external_lex_state = 16}, - [2077] = {.lex_state = 436, .external_lex_state = 24}, - [2078] = {.lex_state = 401, .external_lex_state = 16}, - [2079] = {.lex_state = 401, .external_lex_state = 24}, - [2080] = {.lex_state = 401, .external_lex_state = 24}, - [2081] = {.lex_state = 401, .external_lex_state = 24}, - [2082] = {.lex_state = 401, .external_lex_state = 16}, - [2083] = {.lex_state = 436, .external_lex_state = 24}, - [2084] = {.lex_state = 436, .external_lex_state = 24}, - [2085] = {.lex_state = 206, .external_lex_state = 16}, - [2086] = {.lex_state = 401, .external_lex_state = 16}, - [2087] = {.lex_state = 401, .external_lex_state = 24}, - [2088] = {.lex_state = 401, .external_lex_state = 16}, - [2089] = {.lex_state = 401, .external_lex_state = 24}, - [2090] = {.lex_state = 401, .external_lex_state = 16}, - [2091] = {.lex_state = 401, .external_lex_state = 24}, - [2092] = {.lex_state = 401, .external_lex_state = 16}, - [2093] = {.lex_state = 401, .external_lex_state = 24}, - [2094] = {.lex_state = 401, .external_lex_state = 16}, - [2095] = {.lex_state = 270, .external_lex_state = 5}, - [2096] = {.lex_state = 270, .external_lex_state = 5}, - [2097] = {.lex_state = 270, .external_lex_state = 5}, - [2098] = {.lex_state = 206}, - [2099] = {.lex_state = 206}, - [2100] = {.lex_state = 206}, - [2101] = {.lex_state = 206}, - [2102] = {.lex_state = 206}, - [2103] = {.lex_state = 206}, - [2104] = {.lex_state = 206}, - [2105] = {.lex_state = 234}, - [2106] = {.lex_state = 206}, - [2107] = {.lex_state = 206}, - [2108] = {.lex_state = 206}, - [2109] = {.lex_state = 234}, - [2110] = {.lex_state = 206}, - [2111] = {.lex_state = 455, .external_lex_state = 13}, - [2112] = {.lex_state = 455, .external_lex_state = 13}, - [2113] = {.lex_state = 206}, - [2114] = {.lex_state = 455, .external_lex_state = 13}, - [2115] = {.lex_state = 408, .external_lex_state = 28}, - [2116] = {.lex_state = 408, .external_lex_state = 28}, - [2117] = {.lex_state = 440, .external_lex_state = 26}, - [2118] = {.lex_state = 234}, - [2119] = {.lex_state = 408, .external_lex_state = 28}, - [2120] = {.lex_state = 440, .external_lex_state = 28}, - [2121] = {.lex_state = 254}, - [2122] = {.lex_state = 440, .external_lex_state = 28}, - [2123] = {.lex_state = 440, .external_lex_state = 28}, - [2124] = {.lex_state = 440, .external_lex_state = 28}, - [2125] = {.lex_state = 206}, - [2126] = {.lex_state = 303, .external_lex_state = 16}, - [2127] = {.lex_state = 311, .external_lex_state = 6}, - [2128] = {.lex_state = 303, .external_lex_state = 16}, - [2129] = {.lex_state = 303, .external_lex_state = 16}, - [2130] = {.lex_state = 206}, - [2131] = {.lex_state = 320, .external_lex_state = 2}, - [2132] = {.lex_state = 206}, - [2133] = {.lex_state = 328, .external_lex_state = 2}, - [2134] = {.lex_state = 206}, - [2135] = {.lex_state = 320, .external_lex_state = 2}, - [2136] = {.lex_state = 313, .external_lex_state = 6}, - [2137] = {.lex_state = 313, .external_lex_state = 25}, - [2138] = {.lex_state = 313, .external_lex_state = 25}, - [2139] = {.lex_state = 313, .external_lex_state = 25}, - [2140] = {.lex_state = 401, .external_lex_state = 16}, - [2141] = {.lex_state = 436, .external_lex_state = 24}, - [2142] = {.lex_state = 436, .external_lex_state = 24}, - [2143] = {.lex_state = 206, .external_lex_state = 16}, - [2144] = {.lex_state = 401, .external_lex_state = 16}, - [2145] = {.lex_state = 313, .external_lex_state = 25}, - [2146] = {.lex_state = 401, .external_lex_state = 16}, - [2147] = {.lex_state = 313, .external_lex_state = 25}, - [2148] = {.lex_state = 401, .external_lex_state = 16}, - [2149] = {.lex_state = 313, .external_lex_state = 25}, - [2150] = {.lex_state = 401, .external_lex_state = 16}, - [2151] = {.lex_state = 313, .external_lex_state = 25}, - [2152] = {.lex_state = 401, .external_lex_state = 16}, - [2153] = {.lex_state = 313, .external_lex_state = 13}, - [2154] = {.lex_state = 313, .external_lex_state = 13}, - [2155] = {.lex_state = 313, .external_lex_state = 13}, - [2156] = {.lex_state = 401, .external_lex_state = 16}, - [2157] = {.lex_state = 436, .external_lex_state = 24}, - [2158] = {.lex_state = 436, .external_lex_state = 24}, - [2159] = {.lex_state = 206, .external_lex_state = 16}, - [2160] = {.lex_state = 401, .external_lex_state = 16}, - [2161] = {.lex_state = 313, .external_lex_state = 13}, - [2162] = {.lex_state = 401, .external_lex_state = 16}, - [2163] = {.lex_state = 313, .external_lex_state = 13}, - [2164] = {.lex_state = 401, .external_lex_state = 16}, - [2165] = {.lex_state = 313, .external_lex_state = 13}, - [2166] = {.lex_state = 401, .external_lex_state = 16}, - [2167] = {.lex_state = 313, .external_lex_state = 13}, - [2168] = {.lex_state = 401, .external_lex_state = 16}, - [2169] = {.lex_state = 315, .external_lex_state = 17}, - [2170] = {.lex_state = 315, .external_lex_state = 17}, - [2171] = {.lex_state = 315, .external_lex_state = 17}, - [2172] = {.lex_state = 315, .external_lex_state = 17}, - [2173] = {.lex_state = 401, .external_lex_state = 16}, - [2174] = {.lex_state = 315, .external_lex_state = 17}, - [2175] = {.lex_state = 401, .external_lex_state = 16}, - [2176] = {.lex_state = 315, .external_lex_state = 17}, - [2177] = {.lex_state = 401, .external_lex_state = 16}, - [2178] = {.lex_state = 315, .external_lex_state = 17}, - [2179] = {.lex_state = 315, .external_lex_state = 17}, - [2180] = {.lex_state = 457, .external_lex_state = 13}, - [2181] = {.lex_state = 457, .external_lex_state = 13}, - [2182] = {.lex_state = 457, .external_lex_state = 13}, - [2183] = {.lex_state = 410, .external_lex_state = 28}, - [2184] = {.lex_state = 410, .external_lex_state = 28}, - [2185] = {.lex_state = 410, .external_lex_state = 28}, - [2186] = {.lex_state = 333, .external_lex_state = 19}, - [2187] = {.lex_state = 333, .external_lex_state = 19}, - [2188] = {.lex_state = 333, .external_lex_state = 19}, - [2189] = {.lex_state = 401, .external_lex_state = 16}, - [2190] = {.lex_state = 436, .external_lex_state = 24}, - [2191] = {.lex_state = 436, .external_lex_state = 24}, - [2192] = {.lex_state = 206, .external_lex_state = 16}, - [2193] = {.lex_state = 401, .external_lex_state = 16}, - [2194] = {.lex_state = 333, .external_lex_state = 19}, - [2195] = {.lex_state = 401, .external_lex_state = 16}, - [2196] = {.lex_state = 333, .external_lex_state = 19}, - [2197] = {.lex_state = 401, .external_lex_state = 16}, - [2198] = {.lex_state = 333, .external_lex_state = 19}, - [2199] = {.lex_state = 401, .external_lex_state = 16}, - [2200] = {.lex_state = 333, .external_lex_state = 19}, - [2201] = {.lex_state = 401, .external_lex_state = 16}, - [2202] = {.lex_state = 418, .external_lex_state = 13}, - [2203] = {.lex_state = 418, .external_lex_state = 13}, - [2204] = {.lex_state = 418, .external_lex_state = 13}, - [2205] = {.lex_state = 401, .external_lex_state = 16}, - [2206] = {.lex_state = 436, .external_lex_state = 24}, - [2207] = {.lex_state = 436, .external_lex_state = 24}, - [2208] = {.lex_state = 206, .external_lex_state = 16}, - [2209] = {.lex_state = 401, .external_lex_state = 16}, - [2210] = {.lex_state = 418, .external_lex_state = 13}, - [2211] = {.lex_state = 401, .external_lex_state = 16}, - [2212] = {.lex_state = 418, .external_lex_state = 13}, - [2213] = {.lex_state = 401, .external_lex_state = 16}, - [2214] = {.lex_state = 418, .external_lex_state = 13}, - [2215] = {.lex_state = 401, .external_lex_state = 16}, - [2216] = {.lex_state = 418, .external_lex_state = 13}, - [2217] = {.lex_state = 401, .external_lex_state = 16}, - [2218] = {.lex_state = 281, .external_lex_state = 21}, - [2219] = {.lex_state = 281, .external_lex_state = 21}, - [2220] = {.lex_state = 281, .external_lex_state = 21}, - [2221] = {.lex_state = 281, .external_lex_state = 21}, - [2222] = {.lex_state = 401, .external_lex_state = 16}, - [2223] = {.lex_state = 281, .external_lex_state = 21}, - [2224] = {.lex_state = 401, .external_lex_state = 16}, - [2225] = {.lex_state = 281, .external_lex_state = 21}, - [2226] = {.lex_state = 401, .external_lex_state = 16}, - [2227] = {.lex_state = 281, .external_lex_state = 21}, - [2228] = {.lex_state = 281, .external_lex_state = 21}, - [2229] = {.lex_state = 420, .external_lex_state = 10}, - [2230] = {.lex_state = 420, .external_lex_state = 10}, - [2231] = {.lex_state = 420, .external_lex_state = 10}, - [2232] = {.lex_state = 401, .external_lex_state = 16}, - [2233] = {.lex_state = 436, .external_lex_state = 24}, - [2234] = {.lex_state = 436, .external_lex_state = 24}, - [2235] = {.lex_state = 206, .external_lex_state = 16}, - [2236] = {.lex_state = 401, .external_lex_state = 16}, - [2237] = {.lex_state = 420, .external_lex_state = 10}, - [2238] = {.lex_state = 401, .external_lex_state = 16}, - [2239] = {.lex_state = 420, .external_lex_state = 10}, - [2240] = {.lex_state = 401, .external_lex_state = 16}, - [2241] = {.lex_state = 420, .external_lex_state = 10}, - [2242] = {.lex_state = 401, .external_lex_state = 16}, - [2243] = {.lex_state = 420, .external_lex_state = 10}, - [2244] = {.lex_state = 401, .external_lex_state = 16}, - [2245] = {.lex_state = 272, .external_lex_state = 9}, - [2246] = {.lex_state = 206}, - [2247] = {.lex_state = 206}, - [2248] = {.lex_state = 286, .external_lex_state = 12}, - [2249] = {.lex_state = 294}, - [2250] = {.lex_state = 206}, - [2251] = {.lex_state = 459, .external_lex_state = 14}, - [2252] = {.lex_state = 254}, - [2253] = {.lex_state = 261}, - [2254] = {.lex_state = 459, .external_lex_state = 14}, - [2255] = {.lex_state = 264, .external_lex_state = 6}, - [2256] = {.lex_state = 135, .external_lex_state = 2}, - [2257] = {.lex_state = 135, .external_lex_state = 2}, - [2258] = {.lex_state = 135, .external_lex_state = 2}, - [2259] = {.lex_state = 459, .external_lex_state = 3}, - [2260] = {.lex_state = 206}, - [2261] = {.lex_state = 459, .external_lex_state = 3}, - [2262] = {.lex_state = 459, .external_lex_state = 10}, - [2263] = {.lex_state = 254}, - [2264] = {.lex_state = 261}, - [2265] = {.lex_state = 459, .external_lex_state = 10}, - [2266] = {.lex_state = 264, .external_lex_state = 6}, - [2267] = {.lex_state = 135, .external_lex_state = 2}, - [2268] = {.lex_state = 135, .external_lex_state = 2}, - [2269] = {.lex_state = 135, .external_lex_state = 2}, - [2270] = {.lex_state = 459, .external_lex_state = 4}, - [2271] = {.lex_state = 459, .external_lex_state = 4}, - [2272] = {.lex_state = 234}, - [2273] = {.lex_state = 465, .external_lex_state = 5}, - [2274] = {.lex_state = 465, .external_lex_state = 5}, - [2275] = {.lex_state = 254}, - [2276] = {.lex_state = 465, .external_lex_state = 5}, - [2277] = {.lex_state = 465, .external_lex_state = 5}, - [2278] = {.lex_state = 465, .external_lex_state = 5}, - [2279] = {.lex_state = 206}, - [2280] = {.lex_state = 303, .external_lex_state = 16}, - [2281] = {.lex_state = 311, .external_lex_state = 6}, - [2282] = {.lex_state = 303, .external_lex_state = 16}, - [2283] = {.lex_state = 303, .external_lex_state = 16}, - [2284] = {.lex_state = 206}, - [2285] = {.lex_state = 320, .external_lex_state = 2}, - [2286] = {.lex_state = 206}, - [2287] = {.lex_state = 328, .external_lex_state = 2}, - [2288] = {.lex_state = 206}, - [2289] = {.lex_state = 320, .external_lex_state = 2}, - [2290] = {.lex_state = 206}, - [2291] = {.lex_state = 135, .external_lex_state = 2}, - [2292] = {.lex_state = 450, .external_lex_state = 2}, - [2293] = {.lex_state = 135, .external_lex_state = 2}, - [2294] = {.lex_state = 450, .external_lex_state = 2}, - [2295] = {.lex_state = 135}, - [2296] = {.lex_state = 336}, - [2297] = {.lex_state = 234}, - [2298] = {.lex_state = 234}, - [2299] = {.lex_state = 465, .external_lex_state = 5}, - [2300] = {.lex_state = 465, .external_lex_state = 5}, - [2301] = {.lex_state = 471, .external_lex_state = 7}, - [2302] = {.lex_state = 465, .external_lex_state = 7}, - [2303] = {.lex_state = 424}, - [2304] = {.lex_state = 283, .external_lex_state = 4}, - [2305] = {.lex_state = 469, .external_lex_state = 8}, - [2306] = {.lex_state = 450, .external_lex_state = 2}, - [2307] = {.lex_state = 465, .external_lex_state = 7}, - [2308] = {.lex_state = 450, .external_lex_state = 2}, - [2309] = {.lex_state = 450, .external_lex_state = 2}, - [2310] = {.lex_state = 424}, - [2311] = {.lex_state = 283, .external_lex_state = 4}, - [2312] = {.lex_state = 469, .external_lex_state = 8}, - [2313] = {.lex_state = 450, .external_lex_state = 2}, - [2314] = {.lex_state = 330, .external_lex_state = 2}, - [2315] = {.lex_state = 231}, - [2316] = {.lex_state = 330, .external_lex_state = 2}, - [2317] = {.lex_state = 231}, - [2318] = {.lex_state = 283, .external_lex_state = 4}, - [2319] = {.lex_state = 283, .external_lex_state = 4}, - [2320] = {.lex_state = 274, .external_lex_state = 10}, - [2321] = {.lex_state = 274, .external_lex_state = 10}, - [2322] = {.lex_state = 274, .external_lex_state = 10}, - [2323] = {.lex_state = 453, .external_lex_state = 10}, - [2324] = {.lex_state = 387, .external_lex_state = 27}, - [2325] = {.lex_state = 286, .external_lex_state = 11}, - [2326] = {.lex_state = 286, .external_lex_state = 11}, - [2327] = {.lex_state = 286, .external_lex_state = 11}, - [2328] = {.lex_state = 412, .external_lex_state = 27}, - [2329] = {.lex_state = 436, .external_lex_state = 24}, - [2330] = {.lex_state = 436, .external_lex_state = 24}, - [2331] = {.lex_state = 206, .external_lex_state = 16}, - [2332] = {.lex_state = 401, .external_lex_state = 16}, - [2333] = {.lex_state = 412, .external_lex_state = 27}, - [2334] = {.lex_state = 399, .external_lex_state = 16}, - [2335] = {.lex_state = 412, .external_lex_state = 27}, - [2336] = {.lex_state = 403}, - [2337] = {.lex_state = 401, .external_lex_state = 16}, - [2338] = {.lex_state = 412, .external_lex_state = 27}, - [2339] = {.lex_state = 403}, - [2340] = {.lex_state = 401, .external_lex_state = 16}, - [2341] = {.lex_state = 403}, - [2342] = {.lex_state = 401, .external_lex_state = 16}, - [2343] = {.lex_state = 401, .external_lex_state = 16}, - [2344] = {.lex_state = 412, .external_lex_state = 27}, - [2345] = {.lex_state = 401, .external_lex_state = 16}, - [2346] = {.lex_state = 396, .external_lex_state = 13}, - [2347] = {.lex_state = 396, .external_lex_state = 13}, - [2348] = {.lex_state = 396, .external_lex_state = 13}, - [2349] = {.lex_state = 277, .external_lex_state = 14}, - [2350] = {.lex_state = 277, .external_lex_state = 14}, - [2351] = {.lex_state = 277, .external_lex_state = 14}, - [2352] = {.lex_state = 277, .external_lex_state = 10}, - [2353] = {.lex_state = 277, .external_lex_state = 10}, - [2354] = {.lex_state = 277, .external_lex_state = 10}, - [2355] = {.lex_state = 320, .external_lex_state = 15}, - [2356] = {.lex_state = 320, .external_lex_state = 15}, - [2357] = {.lex_state = 320, .external_lex_state = 15}, - [2358] = {.lex_state = 254, .external_lex_state = 13}, - [2359] = {.lex_state = 254, .external_lex_state = 13}, - [2360] = {.lex_state = 254, .external_lex_state = 13}, - [2361] = {.lex_state = 436, .external_lex_state = 24}, - [2362] = {.lex_state = 436, .external_lex_state = 24}, - [2363] = {.lex_state = 436, .external_lex_state = 24}, - [2364] = {.lex_state = 401, .external_lex_state = 16}, - [2365] = {.lex_state = 436, .external_lex_state = 24}, - [2366] = {.lex_state = 436, .external_lex_state = 24}, - [2367] = {.lex_state = 206, .external_lex_state = 16}, - [2368] = {.lex_state = 401, .external_lex_state = 16}, - [2369] = {.lex_state = 436, .external_lex_state = 24}, - [2370] = {.lex_state = 401, .external_lex_state = 16}, - [2371] = {.lex_state = 436, .external_lex_state = 24}, - [2372] = {.lex_state = 401, .external_lex_state = 16}, - [2373] = {.lex_state = 436, .external_lex_state = 24}, - [2374] = {.lex_state = 401, .external_lex_state = 16}, - [2375] = {.lex_state = 436, .external_lex_state = 24}, - [2376] = {.lex_state = 401, .external_lex_state = 16}, - [2377] = {.lex_state = 401, .external_lex_state = 24}, - [2378] = {.lex_state = 401, .external_lex_state = 24}, - [2379] = {.lex_state = 401, .external_lex_state = 24}, - [2380] = {.lex_state = 401, .external_lex_state = 24}, - [2381] = {.lex_state = 401, .external_lex_state = 16}, - [2382] = {.lex_state = 401, .external_lex_state = 24}, - [2383] = {.lex_state = 401, .external_lex_state = 16}, - [2384] = {.lex_state = 401, .external_lex_state = 24}, - [2385] = {.lex_state = 401, .external_lex_state = 16}, - [2386] = {.lex_state = 401, .external_lex_state = 24}, - [2387] = {.lex_state = 401, .external_lex_state = 24}, - [2388] = {.lex_state = 206}, - [2389] = {.lex_state = 206}, - [2390] = {.lex_state = 206}, - [2391] = {.lex_state = 206}, - [2392] = {.lex_state = 206}, - [2393] = {.lex_state = 455, .external_lex_state = 13}, - [2394] = {.lex_state = 440, .external_lex_state = 28}, - [2395] = {.lex_state = 408, .external_lex_state = 28}, - [2396] = {.lex_state = 440, .external_lex_state = 28}, - [2397] = {.lex_state = 399, .external_lex_state = 16}, - [2398] = {.lex_state = 440, .external_lex_state = 28}, - [2399] = {.lex_state = 403}, - [2400] = {.lex_state = 401, .external_lex_state = 16}, - [2401] = {.lex_state = 206}, - [2402] = {.lex_state = 303, .external_lex_state = 16}, - [2403] = {.lex_state = 303, .external_lex_state = 16}, - [2404] = {.lex_state = 303, .external_lex_state = 16}, - [2405] = {.lex_state = 440, .external_lex_state = 28}, - [2406] = {.lex_state = 403}, - [2407] = {.lex_state = 401, .external_lex_state = 16}, - [2408] = {.lex_state = 440, .external_lex_state = 28}, - [2409] = {.lex_state = 403}, - [2410] = {.lex_state = 401, .external_lex_state = 16}, - [2411] = {.lex_state = 440, .external_lex_state = 28}, - [2412] = {.lex_state = 440, .external_lex_state = 28}, - [2413] = {.lex_state = 313, .external_lex_state = 25}, - [2414] = {.lex_state = 313, .external_lex_state = 25}, - [2415] = {.lex_state = 313, .external_lex_state = 25}, - [2416] = {.lex_state = 313, .external_lex_state = 25}, - [2417] = {.lex_state = 401, .external_lex_state = 16}, - [2418] = {.lex_state = 313, .external_lex_state = 25}, - [2419] = {.lex_state = 401, .external_lex_state = 16}, - [2420] = {.lex_state = 313, .external_lex_state = 25}, - [2421] = {.lex_state = 401, .external_lex_state = 16}, - [2422] = {.lex_state = 313, .external_lex_state = 25}, - [2423] = {.lex_state = 313, .external_lex_state = 25}, - [2424] = {.lex_state = 313, .external_lex_state = 13}, - [2425] = {.lex_state = 313, .external_lex_state = 13}, - [2426] = {.lex_state = 313, .external_lex_state = 13}, - [2427] = {.lex_state = 313, .external_lex_state = 13}, - [2428] = {.lex_state = 401, .external_lex_state = 16}, - [2429] = {.lex_state = 313, .external_lex_state = 13}, - [2430] = {.lex_state = 401, .external_lex_state = 16}, - [2431] = {.lex_state = 313, .external_lex_state = 13}, - [2432] = {.lex_state = 401, .external_lex_state = 16}, - [2433] = {.lex_state = 313, .external_lex_state = 13}, - [2434] = {.lex_state = 313, .external_lex_state = 13}, - [2435] = {.lex_state = 315, .external_lex_state = 17}, - [2436] = {.lex_state = 315, .external_lex_state = 17}, - [2437] = {.lex_state = 315, .external_lex_state = 17}, - [2438] = {.lex_state = 457, .external_lex_state = 13}, - [2439] = {.lex_state = 410, .external_lex_state = 28}, - [2440] = {.lex_state = 333, .external_lex_state = 19}, - [2441] = {.lex_state = 333, .external_lex_state = 19}, - [2442] = {.lex_state = 333, .external_lex_state = 19}, - [2443] = {.lex_state = 333, .external_lex_state = 19}, - [2444] = {.lex_state = 401, .external_lex_state = 16}, - [2445] = {.lex_state = 333, .external_lex_state = 19}, - [2446] = {.lex_state = 401, .external_lex_state = 16}, - [2447] = {.lex_state = 333, .external_lex_state = 19}, - [2448] = {.lex_state = 401, .external_lex_state = 16}, - [2449] = {.lex_state = 333, .external_lex_state = 19}, - [2450] = {.lex_state = 333, .external_lex_state = 19}, - [2451] = {.lex_state = 418, .external_lex_state = 13}, - [2452] = {.lex_state = 418, .external_lex_state = 13}, - [2453] = {.lex_state = 418, .external_lex_state = 13}, - [2454] = {.lex_state = 418, .external_lex_state = 13}, - [2455] = {.lex_state = 401, .external_lex_state = 16}, - [2456] = {.lex_state = 418, .external_lex_state = 13}, - [2457] = {.lex_state = 401, .external_lex_state = 16}, - [2458] = {.lex_state = 418, .external_lex_state = 13}, - [2459] = {.lex_state = 401, .external_lex_state = 16}, - [2460] = {.lex_state = 418, .external_lex_state = 13}, - [2461] = {.lex_state = 418, .external_lex_state = 13}, - [2462] = {.lex_state = 281, .external_lex_state = 21}, - [2463] = {.lex_state = 281, .external_lex_state = 21}, - [2464] = {.lex_state = 281, .external_lex_state = 21}, - [2465] = {.lex_state = 420, .external_lex_state = 10}, - [2466] = {.lex_state = 420, .external_lex_state = 10}, - [2467] = {.lex_state = 420, .external_lex_state = 10}, - [2468] = {.lex_state = 420, .external_lex_state = 10}, - [2469] = {.lex_state = 401, .external_lex_state = 16}, - [2470] = {.lex_state = 420, .external_lex_state = 10}, - [2471] = {.lex_state = 401, .external_lex_state = 16}, - [2472] = {.lex_state = 420, .external_lex_state = 10}, - [2473] = {.lex_state = 401, .external_lex_state = 16}, - [2474] = {.lex_state = 420, .external_lex_state = 10}, - [2475] = {.lex_state = 420, .external_lex_state = 10}, - [2476] = {.lex_state = 469, .external_lex_state = 8}, - [2477] = {.lex_state = 320}, - [2478] = {.lex_state = 469, .external_lex_state = 21}, - [2479] = {.lex_state = 254}, - [2480] = {.lex_state = 261}, - [2481] = {.lex_state = 469, .external_lex_state = 21}, - [2482] = {.lex_state = 264, .external_lex_state = 6}, - [2483] = {.lex_state = 135, .external_lex_state = 2}, - [2484] = {.lex_state = 135, .external_lex_state = 2}, - [2485] = {.lex_state = 135, .external_lex_state = 2}, - [2486] = {.lex_state = 471, .external_lex_state = 7}, - [2487] = {.lex_state = 206}, - [2488] = {.lex_state = 473, .external_lex_state = 23}, - [2489] = {.lex_state = 471, .external_lex_state = 23}, - [2490] = {.lex_state = 272, .external_lex_state = 9}, - [2491] = {.lex_state = 234}, - [2492] = {.lex_state = 459, .external_lex_state = 14}, - [2493] = {.lex_state = 459, .external_lex_state = 14}, - [2494] = {.lex_state = 254}, - [2495] = {.lex_state = 459, .external_lex_state = 14}, - [2496] = {.lex_state = 459, .external_lex_state = 14}, - [2497] = {.lex_state = 459, .external_lex_state = 14}, - [2498] = {.lex_state = 206}, - [2499] = {.lex_state = 303, .external_lex_state = 16}, - [2500] = {.lex_state = 311, .external_lex_state = 6}, - [2501] = {.lex_state = 303, .external_lex_state = 16}, - [2502] = {.lex_state = 303, .external_lex_state = 16}, - [2503] = {.lex_state = 206}, - [2504] = {.lex_state = 320, .external_lex_state = 2}, - [2505] = {.lex_state = 206}, - [2506] = {.lex_state = 328, .external_lex_state = 2}, - [2507] = {.lex_state = 206}, - [2508] = {.lex_state = 320, .external_lex_state = 2}, - [2509] = {.lex_state = 459, .external_lex_state = 3}, - [2510] = {.lex_state = 234}, - [2511] = {.lex_state = 459, .external_lex_state = 10}, - [2512] = {.lex_state = 459, .external_lex_state = 10}, - [2513] = {.lex_state = 254}, - [2514] = {.lex_state = 459, .external_lex_state = 10}, - [2515] = {.lex_state = 459, .external_lex_state = 10}, - [2516] = {.lex_state = 459, .external_lex_state = 10}, - [2517] = {.lex_state = 206}, - [2518] = {.lex_state = 303, .external_lex_state = 16}, - [2519] = {.lex_state = 311, .external_lex_state = 6}, - [2520] = {.lex_state = 303, .external_lex_state = 16}, - [2521] = {.lex_state = 303, .external_lex_state = 16}, - [2522] = {.lex_state = 206}, - [2523] = {.lex_state = 320, .external_lex_state = 2}, - [2524] = {.lex_state = 206}, - [2525] = {.lex_state = 328, .external_lex_state = 2}, - [2526] = {.lex_state = 206}, - [2527] = {.lex_state = 320, .external_lex_state = 2}, - [2528] = {.lex_state = 459, .external_lex_state = 4}, - [2529] = {.lex_state = 465, .external_lex_state = 5}, - [2530] = {.lex_state = 465, .external_lex_state = 5}, - [2531] = {.lex_state = 465, .external_lex_state = 5}, - [2532] = {.lex_state = 399, .external_lex_state = 16}, - [2533] = {.lex_state = 465, .external_lex_state = 5}, - [2534] = {.lex_state = 403}, - [2535] = {.lex_state = 401, .external_lex_state = 16}, - [2536] = {.lex_state = 206}, - [2537] = {.lex_state = 303, .external_lex_state = 16}, - [2538] = {.lex_state = 303, .external_lex_state = 16}, - [2539] = {.lex_state = 303, .external_lex_state = 16}, - [2540] = {.lex_state = 465, .external_lex_state = 5}, - [2541] = {.lex_state = 403}, - [2542] = {.lex_state = 401, .external_lex_state = 16}, - [2543] = {.lex_state = 465, .external_lex_state = 5}, - [2544] = {.lex_state = 403}, - [2545] = {.lex_state = 401, .external_lex_state = 16}, - [2546] = {.lex_state = 465, .external_lex_state = 5}, - [2547] = {.lex_state = 465, .external_lex_state = 5}, - [2548] = {.lex_state = 206}, - [2549] = {.lex_state = 469, .external_lex_state = 8}, - [2550] = {.lex_state = 283, .external_lex_state = 4}, - [2551] = {.lex_state = 469, .external_lex_state = 8}, - [2552] = {.lex_state = 234}, - [2553] = {.lex_state = 465, .external_lex_state = 5}, - [2554] = {.lex_state = 465, .external_lex_state = 5}, - [2555] = {.lex_state = 465, .external_lex_state = 7}, - [2556] = {.lex_state = 471, .external_lex_state = 5}, - [2557] = {.lex_state = 254}, - [2558] = {.lex_state = 261}, - [2559] = {.lex_state = 471, .external_lex_state = 5}, - [2560] = {.lex_state = 264, .external_lex_state = 6}, - [2561] = {.lex_state = 135, .external_lex_state = 2}, - [2562] = {.lex_state = 135, .external_lex_state = 2}, - [2563] = {.lex_state = 135, .external_lex_state = 2}, - [2564] = {.lex_state = 471, .external_lex_state = 5}, - [2565] = {.lex_state = 471, .external_lex_state = 5}, - [2566] = {.lex_state = 471, .external_lex_state = 7}, - [2567] = {.lex_state = 471, .external_lex_state = 7}, - [2568] = {.lex_state = 465, .external_lex_state = 7}, - [2569] = {.lex_state = 450, .external_lex_state = 2}, - [2570] = {.lex_state = 244, .external_lex_state = 4}, - [2571] = {.lex_state = 268, .external_lex_state = 8}, - [2572] = {.lex_state = 465, .external_lex_state = 7}, - [2573] = {.lex_state = 424}, - [2574] = {.lex_state = 283, .external_lex_state = 4}, - [2575] = {.lex_state = 469, .external_lex_state = 8}, - [2576] = {.lex_state = 450, .external_lex_state = 2}, - [2577] = {.lex_state = 424}, - [2578] = {.lex_state = 283, .external_lex_state = 4}, - [2579] = {.lex_state = 469, .external_lex_state = 8}, - [2580] = {.lex_state = 234}, - [2581] = {.lex_state = 244, .external_lex_state = 4}, - [2582] = {.lex_state = 268, .external_lex_state = 8}, - [2583] = {.lex_state = 330, .external_lex_state = 2}, - [2584] = {.lex_state = 330, .external_lex_state = 2}, - [2585] = {.lex_state = 234}, - [2586] = {.lex_state = 244, .external_lex_state = 4}, - [2587] = {.lex_state = 268, .external_lex_state = 8}, - [2588] = {.lex_state = 330, .external_lex_state = 2}, - [2589] = {.lex_state = 330, .external_lex_state = 2}, - [2590] = {.lex_state = 412, .external_lex_state = 27}, - [2591] = {.lex_state = 412, .external_lex_state = 27}, - [2592] = {.lex_state = 412, .external_lex_state = 27}, - [2593] = {.lex_state = 401, .external_lex_state = 16}, - [2594] = {.lex_state = 436, .external_lex_state = 24}, - [2595] = {.lex_state = 436, .external_lex_state = 24}, - [2596] = {.lex_state = 206, .external_lex_state = 16}, - [2597] = {.lex_state = 401, .external_lex_state = 16}, - [2598] = {.lex_state = 412, .external_lex_state = 27}, - [2599] = {.lex_state = 401, .external_lex_state = 16}, - [2600] = {.lex_state = 412, .external_lex_state = 27}, - [2601] = {.lex_state = 401, .external_lex_state = 16}, - [2602] = {.lex_state = 412, .external_lex_state = 27}, - [2603] = {.lex_state = 401, .external_lex_state = 16}, - [2604] = {.lex_state = 412, .external_lex_state = 27}, - [2605] = {.lex_state = 401, .external_lex_state = 16}, - [2606] = {.lex_state = 436, .external_lex_state = 24}, - [2607] = {.lex_state = 436, .external_lex_state = 24}, - [2608] = {.lex_state = 436, .external_lex_state = 24}, - [2609] = {.lex_state = 436, .external_lex_state = 24}, - [2610] = {.lex_state = 401, .external_lex_state = 16}, - [2611] = {.lex_state = 436, .external_lex_state = 24}, - [2612] = {.lex_state = 401, .external_lex_state = 16}, - [2613] = {.lex_state = 436, .external_lex_state = 24}, - [2614] = {.lex_state = 401, .external_lex_state = 16}, - [2615] = {.lex_state = 436, .external_lex_state = 24}, - [2616] = {.lex_state = 436, .external_lex_state = 24}, - [2617] = {.lex_state = 401, .external_lex_state = 24}, - [2618] = {.lex_state = 401, .external_lex_state = 24}, - [2619] = {.lex_state = 401, .external_lex_state = 24}, - [2620] = {.lex_state = 206}, - [2621] = {.lex_state = 206}, - [2622] = {.lex_state = 440, .external_lex_state = 28}, - [2623] = {.lex_state = 436, .external_lex_state = 24}, - [2624] = {.lex_state = 436, .external_lex_state = 24}, - [2625] = {.lex_state = 206, .external_lex_state = 16}, - [2626] = {.lex_state = 401, .external_lex_state = 16}, - [2627] = {.lex_state = 440, .external_lex_state = 28}, - [2628] = {.lex_state = 399, .external_lex_state = 16}, - [2629] = {.lex_state = 440, .external_lex_state = 28}, - [2630] = {.lex_state = 403}, - [2631] = {.lex_state = 401, .external_lex_state = 16}, - [2632] = {.lex_state = 440, .external_lex_state = 28}, - [2633] = {.lex_state = 403}, - [2634] = {.lex_state = 401, .external_lex_state = 16}, - [2635] = {.lex_state = 403}, - [2636] = {.lex_state = 401, .external_lex_state = 16}, - [2637] = {.lex_state = 401, .external_lex_state = 16}, - [2638] = {.lex_state = 440, .external_lex_state = 28}, - [2639] = {.lex_state = 401, .external_lex_state = 16}, - [2640] = {.lex_state = 313, .external_lex_state = 25}, - [2641] = {.lex_state = 313, .external_lex_state = 25}, - [2642] = {.lex_state = 313, .external_lex_state = 25}, - [2643] = {.lex_state = 313, .external_lex_state = 13}, - [2644] = {.lex_state = 313, .external_lex_state = 13}, - [2645] = {.lex_state = 313, .external_lex_state = 13}, - [2646] = {.lex_state = 333, .external_lex_state = 19}, - [2647] = {.lex_state = 333, .external_lex_state = 19}, - [2648] = {.lex_state = 333, .external_lex_state = 19}, - [2649] = {.lex_state = 418, .external_lex_state = 13}, - [2650] = {.lex_state = 418, .external_lex_state = 13}, - [2651] = {.lex_state = 418, .external_lex_state = 13}, - [2652] = {.lex_state = 420, .external_lex_state = 10}, - [2653] = {.lex_state = 420, .external_lex_state = 10}, - [2654] = {.lex_state = 420, .external_lex_state = 10}, - [2655] = {.lex_state = 469, .external_lex_state = 8}, - [2656] = {.lex_state = 320}, - [2657] = {.lex_state = 234}, - [2658] = {.lex_state = 469, .external_lex_state = 21}, - [2659] = {.lex_state = 469, .external_lex_state = 21}, - [2660] = {.lex_state = 254}, - [2661] = {.lex_state = 469, .external_lex_state = 21}, - [2662] = {.lex_state = 469, .external_lex_state = 21}, - [2663] = {.lex_state = 469, .external_lex_state = 21}, - [2664] = {.lex_state = 206}, - [2665] = {.lex_state = 303, .external_lex_state = 16}, - [2666] = {.lex_state = 311, .external_lex_state = 6}, - [2667] = {.lex_state = 303, .external_lex_state = 16}, - [2668] = {.lex_state = 303, .external_lex_state = 16}, - [2669] = {.lex_state = 206}, - [2670] = {.lex_state = 320, .external_lex_state = 2}, - [2671] = {.lex_state = 206}, - [2672] = {.lex_state = 328, .external_lex_state = 2}, - [2673] = {.lex_state = 206}, - [2674] = {.lex_state = 320, .external_lex_state = 2}, - [2675] = {.lex_state = 471, .external_lex_state = 7}, - [2676] = {.lex_state = 206}, - [2677] = {.lex_state = 135}, - [2678] = {.lex_state = 234}, - [2679] = {.lex_state = 135}, - [2680] = {.lex_state = 234}, - [2681] = {.lex_state = 234}, - [2682] = {.lex_state = 471, .external_lex_state = 23}, - [2683] = {.lex_state = 459, .external_lex_state = 3}, - [2684] = {.lex_state = 320}, - [2685] = {.lex_state = 459, .external_lex_state = 14}, - [2686] = {.lex_state = 459, .external_lex_state = 14}, - [2687] = {.lex_state = 459, .external_lex_state = 14}, - [2688] = {.lex_state = 459, .external_lex_state = 14}, - [2689] = {.lex_state = 459, .external_lex_state = 14}, - [2690] = {.lex_state = 399, .external_lex_state = 16}, - [2691] = {.lex_state = 459, .external_lex_state = 14}, - [2692] = {.lex_state = 403}, - [2693] = {.lex_state = 401, .external_lex_state = 16}, - [2694] = {.lex_state = 206}, - [2695] = {.lex_state = 303, .external_lex_state = 16}, - [2696] = {.lex_state = 303, .external_lex_state = 16}, - [2697] = {.lex_state = 303, .external_lex_state = 16}, - [2698] = {.lex_state = 459, .external_lex_state = 14}, - [2699] = {.lex_state = 403}, - [2700] = {.lex_state = 401, .external_lex_state = 16}, - [2701] = {.lex_state = 459, .external_lex_state = 14}, - [2702] = {.lex_state = 403}, - [2703] = {.lex_state = 401, .external_lex_state = 16}, - [2704] = {.lex_state = 459, .external_lex_state = 14}, - [2705] = {.lex_state = 459, .external_lex_state = 14}, - [2706] = {.lex_state = 459, .external_lex_state = 10}, - [2707] = {.lex_state = 459, .external_lex_state = 10}, - [2708] = {.lex_state = 459, .external_lex_state = 10}, - [2709] = {.lex_state = 399, .external_lex_state = 16}, - [2710] = {.lex_state = 459, .external_lex_state = 10}, - [2711] = {.lex_state = 403}, - [2712] = {.lex_state = 401, .external_lex_state = 16}, - [2713] = {.lex_state = 206}, - [2714] = {.lex_state = 303, .external_lex_state = 16}, - [2715] = {.lex_state = 303, .external_lex_state = 16}, - [2716] = {.lex_state = 303, .external_lex_state = 16}, - [2717] = {.lex_state = 459, .external_lex_state = 10}, - [2718] = {.lex_state = 403}, - [2719] = {.lex_state = 401, .external_lex_state = 16}, - [2720] = {.lex_state = 459, .external_lex_state = 10}, - [2721] = {.lex_state = 403}, - [2722] = {.lex_state = 401, .external_lex_state = 16}, - [2723] = {.lex_state = 459, .external_lex_state = 10}, - [2724] = {.lex_state = 459, .external_lex_state = 10}, - [2725] = {.lex_state = 465, .external_lex_state = 5}, - [2726] = {.lex_state = 436, .external_lex_state = 24}, - [2727] = {.lex_state = 436, .external_lex_state = 24}, - [2728] = {.lex_state = 206, .external_lex_state = 16}, - [2729] = {.lex_state = 401, .external_lex_state = 16}, - [2730] = {.lex_state = 465, .external_lex_state = 5}, - [2731] = {.lex_state = 399, .external_lex_state = 16}, - [2732] = {.lex_state = 465, .external_lex_state = 5}, - [2733] = {.lex_state = 403}, - [2734] = {.lex_state = 401, .external_lex_state = 16}, - [2735] = {.lex_state = 465, .external_lex_state = 5}, - [2736] = {.lex_state = 403}, - [2737] = {.lex_state = 401, .external_lex_state = 16}, - [2738] = {.lex_state = 403}, - [2739] = {.lex_state = 401, .external_lex_state = 16}, - [2740] = {.lex_state = 401, .external_lex_state = 16}, - [2741] = {.lex_state = 465, .external_lex_state = 5}, - [2742] = {.lex_state = 401, .external_lex_state = 16}, - [2743] = {.lex_state = 473, .external_lex_state = 23}, - [2744] = {.lex_state = 471, .external_lex_state = 5}, - [2745] = {.lex_state = 471, .external_lex_state = 5}, - [2746] = {.lex_state = 234}, - [2747] = {.lex_state = 471, .external_lex_state = 5}, - [2748] = {.lex_state = 471, .external_lex_state = 5}, - [2749] = {.lex_state = 254}, - [2750] = {.lex_state = 471, .external_lex_state = 5}, - [2751] = {.lex_state = 471, .external_lex_state = 5}, - [2752] = {.lex_state = 471, .external_lex_state = 5}, - [2753] = {.lex_state = 206}, - [2754] = {.lex_state = 303, .external_lex_state = 16}, - [2755] = {.lex_state = 311, .external_lex_state = 6}, - [2756] = {.lex_state = 303, .external_lex_state = 16}, - [2757] = {.lex_state = 303, .external_lex_state = 16}, - [2758] = {.lex_state = 206}, - [2759] = {.lex_state = 320, .external_lex_state = 2}, - [2760] = {.lex_state = 206}, - [2761] = {.lex_state = 328, .external_lex_state = 2}, - [2762] = {.lex_state = 206}, - [2763] = {.lex_state = 320, .external_lex_state = 2}, - [2764] = {.lex_state = 471, .external_lex_state = 7}, - [2765] = {.lex_state = 450, .external_lex_state = 2}, - [2766] = {.lex_state = 450, .external_lex_state = 2}, - [2767] = {.lex_state = 330, .external_lex_state = 2}, - [2768] = {.lex_state = 234}, - [2769] = {.lex_state = 244, .external_lex_state = 4}, - [2770] = {.lex_state = 268, .external_lex_state = 8}, - [2771] = {.lex_state = 330, .external_lex_state = 2}, - [2772] = {.lex_state = 330, .external_lex_state = 2}, - [2773] = {.lex_state = 330, .external_lex_state = 2}, - [2774] = {.lex_state = 234}, - [2775] = {.lex_state = 244, .external_lex_state = 4}, - [2776] = {.lex_state = 268, .external_lex_state = 8}, - [2777] = {.lex_state = 330, .external_lex_state = 2}, - [2778] = {.lex_state = 412, .external_lex_state = 27}, - [2779] = {.lex_state = 412, .external_lex_state = 27}, - [2780] = {.lex_state = 412, .external_lex_state = 27}, - [2781] = {.lex_state = 412, .external_lex_state = 27}, - [2782] = {.lex_state = 401, .external_lex_state = 16}, - [2783] = {.lex_state = 412, .external_lex_state = 27}, - [2784] = {.lex_state = 401, .external_lex_state = 16}, - [2785] = {.lex_state = 412, .external_lex_state = 27}, - [2786] = {.lex_state = 401, .external_lex_state = 16}, - [2787] = {.lex_state = 412, .external_lex_state = 27}, - [2788] = {.lex_state = 412, .external_lex_state = 27}, - [2789] = {.lex_state = 436, .external_lex_state = 24}, - [2790] = {.lex_state = 436, .external_lex_state = 24}, - [2791] = {.lex_state = 436, .external_lex_state = 24}, - [2792] = {.lex_state = 440, .external_lex_state = 28}, - [2793] = {.lex_state = 440, .external_lex_state = 28}, - [2794] = {.lex_state = 440, .external_lex_state = 28}, - [2795] = {.lex_state = 401, .external_lex_state = 16}, - [2796] = {.lex_state = 436, .external_lex_state = 24}, - [2797] = {.lex_state = 436, .external_lex_state = 24}, - [2798] = {.lex_state = 206, .external_lex_state = 16}, - [2799] = {.lex_state = 401, .external_lex_state = 16}, - [2800] = {.lex_state = 440, .external_lex_state = 28}, - [2801] = {.lex_state = 401, .external_lex_state = 16}, - [2802] = {.lex_state = 440, .external_lex_state = 28}, - [2803] = {.lex_state = 401, .external_lex_state = 16}, - [2804] = {.lex_state = 440, .external_lex_state = 28}, - [2805] = {.lex_state = 401, .external_lex_state = 16}, - [2806] = {.lex_state = 440, .external_lex_state = 28}, - [2807] = {.lex_state = 401, .external_lex_state = 16}, - [2808] = {.lex_state = 469, .external_lex_state = 8}, - [2809] = {.lex_state = 469, .external_lex_state = 21}, - [2810] = {.lex_state = 469, .external_lex_state = 21}, - [2811] = {.lex_state = 469, .external_lex_state = 21}, - [2812] = {.lex_state = 399, .external_lex_state = 16}, - [2813] = {.lex_state = 469, .external_lex_state = 21}, - [2814] = {.lex_state = 403}, - [2815] = {.lex_state = 401, .external_lex_state = 16}, - [2816] = {.lex_state = 206}, - [2817] = {.lex_state = 303, .external_lex_state = 16}, - [2818] = {.lex_state = 303, .external_lex_state = 16}, - [2819] = {.lex_state = 303, .external_lex_state = 16}, - [2820] = {.lex_state = 469, .external_lex_state = 21}, - [2821] = {.lex_state = 403}, - [2822] = {.lex_state = 401, .external_lex_state = 16}, - [2823] = {.lex_state = 469, .external_lex_state = 21}, - [2824] = {.lex_state = 403}, - [2825] = {.lex_state = 401, .external_lex_state = 16}, - [2826] = {.lex_state = 469, .external_lex_state = 21}, - [2827] = {.lex_state = 469, .external_lex_state = 21}, - [2828] = {.lex_state = 473, .external_lex_state = 23}, - [2829] = {.lex_state = 234}, - [2830] = {.lex_state = 475, .external_lex_state = 10}, - [2831] = {.lex_state = 254}, - [2832] = {.lex_state = 261}, - [2833] = {.lex_state = 475, .external_lex_state = 10}, - [2834] = {.lex_state = 264, .external_lex_state = 6}, - [2835] = {.lex_state = 135, .external_lex_state = 2}, - [2836] = {.lex_state = 135, .external_lex_state = 2}, - [2837] = {.lex_state = 135, .external_lex_state = 2}, - [2838] = {.lex_state = 234}, - [2839] = {.lex_state = 471, .external_lex_state = 27}, - [2840] = {.lex_state = 471, .external_lex_state = 27}, - [2841] = {.lex_state = 471, .external_lex_state = 27}, - [2842] = {.lex_state = 471, .external_lex_state = 27}, - [2843] = {.lex_state = 471, .external_lex_state = 23}, - [2844] = {.lex_state = 459, .external_lex_state = 3}, - [2845] = {.lex_state = 320}, - [2846] = {.lex_state = 459, .external_lex_state = 14}, - [2847] = {.lex_state = 436, .external_lex_state = 24}, - [2848] = {.lex_state = 436, .external_lex_state = 24}, - [2849] = {.lex_state = 206, .external_lex_state = 16}, - [2850] = {.lex_state = 401, .external_lex_state = 16}, - [2851] = {.lex_state = 459, .external_lex_state = 14}, - [2852] = {.lex_state = 399, .external_lex_state = 16}, - [2853] = {.lex_state = 459, .external_lex_state = 14}, - [2854] = {.lex_state = 403}, - [2855] = {.lex_state = 401, .external_lex_state = 16}, - [2856] = {.lex_state = 459, .external_lex_state = 14}, - [2857] = {.lex_state = 403}, - [2858] = {.lex_state = 401, .external_lex_state = 16}, - [2859] = {.lex_state = 403}, - [2860] = {.lex_state = 401, .external_lex_state = 16}, - [2861] = {.lex_state = 401, .external_lex_state = 16}, - [2862] = {.lex_state = 459, .external_lex_state = 14}, - [2863] = {.lex_state = 401, .external_lex_state = 16}, - [2864] = {.lex_state = 459, .external_lex_state = 10}, - [2865] = {.lex_state = 436, .external_lex_state = 24}, - [2866] = {.lex_state = 436, .external_lex_state = 24}, - [2867] = {.lex_state = 206, .external_lex_state = 16}, - [2868] = {.lex_state = 401, .external_lex_state = 16}, - [2869] = {.lex_state = 459, .external_lex_state = 10}, - [2870] = {.lex_state = 399, .external_lex_state = 16}, - [2871] = {.lex_state = 459, .external_lex_state = 10}, - [2872] = {.lex_state = 403}, - [2873] = {.lex_state = 401, .external_lex_state = 16}, - [2874] = {.lex_state = 459, .external_lex_state = 10}, - [2875] = {.lex_state = 403}, - [2876] = {.lex_state = 401, .external_lex_state = 16}, - [2877] = {.lex_state = 403}, - [2878] = {.lex_state = 401, .external_lex_state = 16}, - [2879] = {.lex_state = 401, .external_lex_state = 16}, - [2880] = {.lex_state = 459, .external_lex_state = 10}, - [2881] = {.lex_state = 401, .external_lex_state = 16}, - [2882] = {.lex_state = 465, .external_lex_state = 5}, - [2883] = {.lex_state = 465, .external_lex_state = 5}, - [2884] = {.lex_state = 465, .external_lex_state = 5}, - [2885] = {.lex_state = 401, .external_lex_state = 16}, - [2886] = {.lex_state = 436, .external_lex_state = 24}, - [2887] = {.lex_state = 436, .external_lex_state = 24}, - [2888] = {.lex_state = 206, .external_lex_state = 16}, - [2889] = {.lex_state = 401, .external_lex_state = 16}, - [2890] = {.lex_state = 465, .external_lex_state = 5}, - [2891] = {.lex_state = 401, .external_lex_state = 16}, - [2892] = {.lex_state = 465, .external_lex_state = 5}, - [2893] = {.lex_state = 401, .external_lex_state = 16}, - [2894] = {.lex_state = 465, .external_lex_state = 5}, - [2895] = {.lex_state = 401, .external_lex_state = 16}, - [2896] = {.lex_state = 465, .external_lex_state = 5}, - [2897] = {.lex_state = 401, .external_lex_state = 16}, - [2898] = {.lex_state = 471, .external_lex_state = 5}, - [2899] = {.lex_state = 471, .external_lex_state = 5}, - [2900] = {.lex_state = 471, .external_lex_state = 5}, - [2901] = {.lex_state = 399, .external_lex_state = 16}, - [2902] = {.lex_state = 471, .external_lex_state = 5}, - [2903] = {.lex_state = 403}, - [2904] = {.lex_state = 401, .external_lex_state = 16}, - [2905] = {.lex_state = 206}, - [2906] = {.lex_state = 303, .external_lex_state = 16}, - [2907] = {.lex_state = 303, .external_lex_state = 16}, - [2908] = {.lex_state = 303, .external_lex_state = 16}, - [2909] = {.lex_state = 471, .external_lex_state = 5}, - [2910] = {.lex_state = 403}, - [2911] = {.lex_state = 401, .external_lex_state = 16}, - [2912] = {.lex_state = 471, .external_lex_state = 5}, - [2913] = {.lex_state = 403}, - [2914] = {.lex_state = 401, .external_lex_state = 16}, - [2915] = {.lex_state = 471, .external_lex_state = 5}, - [2916] = {.lex_state = 471, .external_lex_state = 5}, - [2917] = {.lex_state = 330, .external_lex_state = 2}, - [2918] = {.lex_state = 234}, - [2919] = {.lex_state = 244, .external_lex_state = 4}, - [2920] = {.lex_state = 268, .external_lex_state = 8}, - [2921] = {.lex_state = 330, .external_lex_state = 2}, - [2922] = {.lex_state = 234}, - [2923] = {.lex_state = 244, .external_lex_state = 4}, - [2924] = {.lex_state = 268, .external_lex_state = 8}, - [2925] = {.lex_state = 412, .external_lex_state = 27}, - [2926] = {.lex_state = 412, .external_lex_state = 27}, - [2927] = {.lex_state = 412, .external_lex_state = 27}, - [2928] = {.lex_state = 440, .external_lex_state = 28}, - [2929] = {.lex_state = 440, .external_lex_state = 28}, - [2930] = {.lex_state = 440, .external_lex_state = 28}, - [2931] = {.lex_state = 440, .external_lex_state = 28}, - [2932] = {.lex_state = 401, .external_lex_state = 16}, - [2933] = {.lex_state = 440, .external_lex_state = 28}, - [2934] = {.lex_state = 401, .external_lex_state = 16}, - [2935] = {.lex_state = 440, .external_lex_state = 28}, - [2936] = {.lex_state = 401, .external_lex_state = 16}, - [2937] = {.lex_state = 440, .external_lex_state = 28}, - [2938] = {.lex_state = 440, .external_lex_state = 28}, - [2939] = {.lex_state = 469, .external_lex_state = 21}, - [2940] = {.lex_state = 436, .external_lex_state = 24}, - [2941] = {.lex_state = 436, .external_lex_state = 24}, - [2942] = {.lex_state = 206, .external_lex_state = 16}, - [2943] = {.lex_state = 401, .external_lex_state = 16}, - [2944] = {.lex_state = 469, .external_lex_state = 21}, - [2945] = {.lex_state = 399, .external_lex_state = 16}, - [2946] = {.lex_state = 469, .external_lex_state = 21}, - [2947] = {.lex_state = 403}, - [2948] = {.lex_state = 401, .external_lex_state = 16}, - [2949] = {.lex_state = 469, .external_lex_state = 21}, - [2950] = {.lex_state = 403}, - [2951] = {.lex_state = 401, .external_lex_state = 16}, - [2952] = {.lex_state = 403}, - [2953] = {.lex_state = 401, .external_lex_state = 16}, - [2954] = {.lex_state = 401, .external_lex_state = 16}, - [2955] = {.lex_state = 469, .external_lex_state = 21}, - [2956] = {.lex_state = 401, .external_lex_state = 16}, - [2957] = {.lex_state = 475, .external_lex_state = 10}, - [2958] = {.lex_state = 475, .external_lex_state = 10}, - [2959] = {.lex_state = 234}, - [2960] = {.lex_state = 475, .external_lex_state = 10}, - [2961] = {.lex_state = 475, .external_lex_state = 10}, - [2962] = {.lex_state = 254}, - [2963] = {.lex_state = 475, .external_lex_state = 10}, - [2964] = {.lex_state = 475, .external_lex_state = 10}, - [2965] = {.lex_state = 475, .external_lex_state = 10}, - [2966] = {.lex_state = 206}, - [2967] = {.lex_state = 303, .external_lex_state = 16}, - [2968] = {.lex_state = 311, .external_lex_state = 6}, - [2969] = {.lex_state = 303, .external_lex_state = 16}, - [2970] = {.lex_state = 303, .external_lex_state = 16}, - [2971] = {.lex_state = 206}, - [2972] = {.lex_state = 320, .external_lex_state = 2}, - [2973] = {.lex_state = 206}, - [2974] = {.lex_state = 328, .external_lex_state = 2}, - [2975] = {.lex_state = 206}, - [2976] = {.lex_state = 320, .external_lex_state = 2}, - [2977] = {.lex_state = 471, .external_lex_state = 27}, - [2978] = {.lex_state = 471, .external_lex_state = 27}, - [2979] = {.lex_state = 471, .external_lex_state = 27}, - [2980] = {.lex_state = 459, .external_lex_state = 3}, - [2981] = {.lex_state = 459, .external_lex_state = 14}, - [2982] = {.lex_state = 459, .external_lex_state = 14}, - [2983] = {.lex_state = 459, .external_lex_state = 14}, - [2984] = {.lex_state = 401, .external_lex_state = 16}, - [2985] = {.lex_state = 436, .external_lex_state = 24}, - [2986] = {.lex_state = 436, .external_lex_state = 24}, - [2987] = {.lex_state = 206, .external_lex_state = 16}, - [2988] = {.lex_state = 401, .external_lex_state = 16}, - [2989] = {.lex_state = 459, .external_lex_state = 14}, - [2990] = {.lex_state = 401, .external_lex_state = 16}, - [2991] = {.lex_state = 459, .external_lex_state = 14}, - [2992] = {.lex_state = 401, .external_lex_state = 16}, - [2993] = {.lex_state = 459, .external_lex_state = 14}, - [2994] = {.lex_state = 401, .external_lex_state = 16}, - [2995] = {.lex_state = 459, .external_lex_state = 14}, - [2996] = {.lex_state = 401, .external_lex_state = 16}, - [2997] = {.lex_state = 459, .external_lex_state = 10}, - [2998] = {.lex_state = 459, .external_lex_state = 10}, - [2999] = {.lex_state = 459, .external_lex_state = 10}, - [3000] = {.lex_state = 401, .external_lex_state = 16}, - [3001] = {.lex_state = 436, .external_lex_state = 24}, - [3002] = {.lex_state = 436, .external_lex_state = 24}, - [3003] = {.lex_state = 206, .external_lex_state = 16}, - [3004] = {.lex_state = 401, .external_lex_state = 16}, - [3005] = {.lex_state = 459, .external_lex_state = 10}, - [3006] = {.lex_state = 401, .external_lex_state = 16}, - [3007] = {.lex_state = 459, .external_lex_state = 10}, - [3008] = {.lex_state = 401, .external_lex_state = 16}, - [3009] = {.lex_state = 459, .external_lex_state = 10}, - [3010] = {.lex_state = 401, .external_lex_state = 16}, - [3011] = {.lex_state = 459, .external_lex_state = 10}, - [3012] = {.lex_state = 401, .external_lex_state = 16}, - [3013] = {.lex_state = 465, .external_lex_state = 5}, - [3014] = {.lex_state = 465, .external_lex_state = 5}, - [3015] = {.lex_state = 465, .external_lex_state = 5}, - [3016] = {.lex_state = 465, .external_lex_state = 5}, - [3017] = {.lex_state = 401, .external_lex_state = 16}, - [3018] = {.lex_state = 465, .external_lex_state = 5}, - [3019] = {.lex_state = 401, .external_lex_state = 16}, - [3020] = {.lex_state = 465, .external_lex_state = 5}, - [3021] = {.lex_state = 401, .external_lex_state = 16}, - [3022] = {.lex_state = 465, .external_lex_state = 5}, - [3023] = {.lex_state = 465, .external_lex_state = 5}, - [3024] = {.lex_state = 471, .external_lex_state = 5}, - [3025] = {.lex_state = 436, .external_lex_state = 24}, - [3026] = {.lex_state = 436, .external_lex_state = 24}, - [3027] = {.lex_state = 206, .external_lex_state = 16}, - [3028] = {.lex_state = 401, .external_lex_state = 16}, - [3029] = {.lex_state = 471, .external_lex_state = 5}, - [3030] = {.lex_state = 399, .external_lex_state = 16}, - [3031] = {.lex_state = 471, .external_lex_state = 5}, - [3032] = {.lex_state = 403}, - [3033] = {.lex_state = 401, .external_lex_state = 16}, - [3034] = {.lex_state = 471, .external_lex_state = 5}, - [3035] = {.lex_state = 403}, - [3036] = {.lex_state = 401, .external_lex_state = 16}, - [3037] = {.lex_state = 403}, - [3038] = {.lex_state = 401, .external_lex_state = 16}, - [3039] = {.lex_state = 401, .external_lex_state = 16}, - [3040] = {.lex_state = 471, .external_lex_state = 5}, - [3041] = {.lex_state = 401, .external_lex_state = 16}, - [3042] = {.lex_state = 330, .external_lex_state = 2}, - [3043] = {.lex_state = 330, .external_lex_state = 2}, - [3044] = {.lex_state = 440, .external_lex_state = 28}, - [3045] = {.lex_state = 440, .external_lex_state = 28}, - [3046] = {.lex_state = 440, .external_lex_state = 28}, - [3047] = {.lex_state = 469, .external_lex_state = 21}, - [3048] = {.lex_state = 469, .external_lex_state = 21}, - [3049] = {.lex_state = 469, .external_lex_state = 21}, - [3050] = {.lex_state = 401, .external_lex_state = 16}, - [3051] = {.lex_state = 436, .external_lex_state = 24}, - [3052] = {.lex_state = 436, .external_lex_state = 24}, - [3053] = {.lex_state = 206, .external_lex_state = 16}, - [3054] = {.lex_state = 401, .external_lex_state = 16}, - [3055] = {.lex_state = 469, .external_lex_state = 21}, - [3056] = {.lex_state = 401, .external_lex_state = 16}, - [3057] = {.lex_state = 469, .external_lex_state = 21}, - [3058] = {.lex_state = 401, .external_lex_state = 16}, - [3059] = {.lex_state = 469, .external_lex_state = 21}, - [3060] = {.lex_state = 401, .external_lex_state = 16}, - [3061] = {.lex_state = 469, .external_lex_state = 21}, - [3062] = {.lex_state = 401, .external_lex_state = 16}, - [3063] = {.lex_state = 475, .external_lex_state = 10}, - [3064] = {.lex_state = 475, .external_lex_state = 10}, - [3065] = {.lex_state = 475, .external_lex_state = 10}, - [3066] = {.lex_state = 399, .external_lex_state = 16}, - [3067] = {.lex_state = 475, .external_lex_state = 10}, - [3068] = {.lex_state = 403}, - [3069] = {.lex_state = 401, .external_lex_state = 16}, - [3070] = {.lex_state = 206}, - [3071] = {.lex_state = 303, .external_lex_state = 16}, - [3072] = {.lex_state = 303, .external_lex_state = 16}, - [3073] = {.lex_state = 303, .external_lex_state = 16}, - [3074] = {.lex_state = 475, .external_lex_state = 10}, - [3075] = {.lex_state = 403}, - [3076] = {.lex_state = 401, .external_lex_state = 16}, - [3077] = {.lex_state = 475, .external_lex_state = 10}, - [3078] = {.lex_state = 403}, - [3079] = {.lex_state = 401, .external_lex_state = 16}, - [3080] = {.lex_state = 475, .external_lex_state = 10}, - [3081] = {.lex_state = 475, .external_lex_state = 10}, - [3082] = {.lex_state = 471, .external_lex_state = 27}, - [3083] = {.lex_state = 459, .external_lex_state = 14}, - [3084] = {.lex_state = 459, .external_lex_state = 14}, - [3085] = {.lex_state = 459, .external_lex_state = 14}, - [3086] = {.lex_state = 459, .external_lex_state = 14}, - [3087] = {.lex_state = 401, .external_lex_state = 16}, - [3088] = {.lex_state = 459, .external_lex_state = 14}, - [3089] = {.lex_state = 401, .external_lex_state = 16}, - [3090] = {.lex_state = 459, .external_lex_state = 14}, - [3091] = {.lex_state = 401, .external_lex_state = 16}, - [3092] = {.lex_state = 459, .external_lex_state = 14}, - [3093] = {.lex_state = 459, .external_lex_state = 14}, - [3094] = {.lex_state = 459, .external_lex_state = 10}, - [3095] = {.lex_state = 459, .external_lex_state = 10}, - [3096] = {.lex_state = 459, .external_lex_state = 10}, - [3097] = {.lex_state = 459, .external_lex_state = 10}, - [3098] = {.lex_state = 401, .external_lex_state = 16}, - [3099] = {.lex_state = 459, .external_lex_state = 10}, - [3100] = {.lex_state = 401, .external_lex_state = 16}, - [3101] = {.lex_state = 459, .external_lex_state = 10}, - [3102] = {.lex_state = 401, .external_lex_state = 16}, - [3103] = {.lex_state = 459, .external_lex_state = 10}, - [3104] = {.lex_state = 459, .external_lex_state = 10}, - [3105] = {.lex_state = 465, .external_lex_state = 5}, - [3106] = {.lex_state = 465, .external_lex_state = 5}, - [3107] = {.lex_state = 465, .external_lex_state = 5}, - [3108] = {.lex_state = 471, .external_lex_state = 5}, - [3109] = {.lex_state = 471, .external_lex_state = 5}, - [3110] = {.lex_state = 471, .external_lex_state = 5}, - [3111] = {.lex_state = 401, .external_lex_state = 16}, - [3112] = {.lex_state = 436, .external_lex_state = 24}, - [3113] = {.lex_state = 436, .external_lex_state = 24}, - [3114] = {.lex_state = 206, .external_lex_state = 16}, - [3115] = {.lex_state = 401, .external_lex_state = 16}, - [3116] = {.lex_state = 471, .external_lex_state = 5}, - [3117] = {.lex_state = 401, .external_lex_state = 16}, - [3118] = {.lex_state = 471, .external_lex_state = 5}, - [3119] = {.lex_state = 401, .external_lex_state = 16}, - [3120] = {.lex_state = 471, .external_lex_state = 5}, - [3121] = {.lex_state = 401, .external_lex_state = 16}, - [3122] = {.lex_state = 471, .external_lex_state = 5}, - [3123] = {.lex_state = 401, .external_lex_state = 16}, - [3124] = {.lex_state = 469, .external_lex_state = 21}, - [3125] = {.lex_state = 469, .external_lex_state = 21}, - [3126] = {.lex_state = 469, .external_lex_state = 21}, - [3127] = {.lex_state = 469, .external_lex_state = 21}, - [3128] = {.lex_state = 401, .external_lex_state = 16}, - [3129] = {.lex_state = 469, .external_lex_state = 21}, - [3130] = {.lex_state = 401, .external_lex_state = 16}, - [3131] = {.lex_state = 469, .external_lex_state = 21}, - [3132] = {.lex_state = 401, .external_lex_state = 16}, - [3133] = {.lex_state = 469, .external_lex_state = 21}, - [3134] = {.lex_state = 469, .external_lex_state = 21}, - [3135] = {.lex_state = 475, .external_lex_state = 10}, - [3136] = {.lex_state = 436, .external_lex_state = 24}, - [3137] = {.lex_state = 436, .external_lex_state = 24}, - [3138] = {.lex_state = 206, .external_lex_state = 16}, - [3139] = {.lex_state = 401, .external_lex_state = 16}, - [3140] = {.lex_state = 475, .external_lex_state = 10}, - [3141] = {.lex_state = 399, .external_lex_state = 16}, - [3142] = {.lex_state = 475, .external_lex_state = 10}, - [3143] = {.lex_state = 403}, - [3144] = {.lex_state = 401, .external_lex_state = 16}, - [3145] = {.lex_state = 475, .external_lex_state = 10}, - [3146] = {.lex_state = 403}, - [3147] = {.lex_state = 401, .external_lex_state = 16}, - [3148] = {.lex_state = 403}, - [3149] = {.lex_state = 401, .external_lex_state = 16}, - [3150] = {.lex_state = 401, .external_lex_state = 16}, - [3151] = {.lex_state = 475, .external_lex_state = 10}, - [3152] = {.lex_state = 401, .external_lex_state = 16}, - [3153] = {.lex_state = 459, .external_lex_state = 14}, - [3154] = {.lex_state = 459, .external_lex_state = 14}, - [3155] = {.lex_state = 459, .external_lex_state = 14}, - [3156] = {.lex_state = 459, .external_lex_state = 10}, - [3157] = {.lex_state = 459, .external_lex_state = 10}, - [3158] = {.lex_state = 459, .external_lex_state = 10}, - [3159] = {.lex_state = 471, .external_lex_state = 5}, - [3160] = {.lex_state = 471, .external_lex_state = 5}, - [3161] = {.lex_state = 471, .external_lex_state = 5}, - [3162] = {.lex_state = 471, .external_lex_state = 5}, - [3163] = {.lex_state = 401, .external_lex_state = 16}, - [3164] = {.lex_state = 471, .external_lex_state = 5}, - [3165] = {.lex_state = 401, .external_lex_state = 16}, - [3166] = {.lex_state = 471, .external_lex_state = 5}, - [3167] = {.lex_state = 401, .external_lex_state = 16}, - [3168] = {.lex_state = 471, .external_lex_state = 5}, - [3169] = {.lex_state = 471, .external_lex_state = 5}, - [3170] = {.lex_state = 469, .external_lex_state = 21}, - [3171] = {.lex_state = 469, .external_lex_state = 21}, - [3172] = {.lex_state = 469, .external_lex_state = 21}, - [3173] = {.lex_state = 475, .external_lex_state = 10}, - [3174] = {.lex_state = 475, .external_lex_state = 10}, - [3175] = {.lex_state = 475, .external_lex_state = 10}, - [3176] = {.lex_state = 401, .external_lex_state = 16}, - [3177] = {.lex_state = 436, .external_lex_state = 24}, - [3178] = {.lex_state = 436, .external_lex_state = 24}, - [3179] = {.lex_state = 206, .external_lex_state = 16}, - [3180] = {.lex_state = 401, .external_lex_state = 16}, - [3181] = {.lex_state = 475, .external_lex_state = 10}, - [3182] = {.lex_state = 401, .external_lex_state = 16}, - [3183] = {.lex_state = 475, .external_lex_state = 10}, - [3184] = {.lex_state = 401, .external_lex_state = 16}, - [3185] = {.lex_state = 475, .external_lex_state = 10}, - [3186] = {.lex_state = 401, .external_lex_state = 16}, - [3187] = {.lex_state = 475, .external_lex_state = 10}, - [3188] = {.lex_state = 401, .external_lex_state = 16}, - [3189] = {.lex_state = 471, .external_lex_state = 5}, - [3190] = {.lex_state = 471, .external_lex_state = 5}, - [3191] = {.lex_state = 471, .external_lex_state = 5}, - [3192] = {.lex_state = 475, .external_lex_state = 10}, - [3193] = {.lex_state = 475, .external_lex_state = 10}, - [3194] = {.lex_state = 475, .external_lex_state = 10}, - [3195] = {.lex_state = 475, .external_lex_state = 10}, - [3196] = {.lex_state = 401, .external_lex_state = 16}, - [3197] = {.lex_state = 475, .external_lex_state = 10}, - [3198] = {.lex_state = 401, .external_lex_state = 16}, - [3199] = {.lex_state = 475, .external_lex_state = 10}, - [3200] = {.lex_state = 401, .external_lex_state = 16}, - [3201] = {.lex_state = 475, .external_lex_state = 10}, - [3202] = {.lex_state = 475, .external_lex_state = 10}, - [3203] = {.lex_state = 475, .external_lex_state = 10}, - [3204] = {.lex_state = 475, .external_lex_state = 10}, - [3205] = {.lex_state = 475, .external_lex_state = 10}, + [1] = {.lex_state = 56, .external_lex_state = 2}, + [2] = {.lex_state = 56}, + [3] = {.lex_state = 62}, + [4] = {.lex_state = 68}, + [5] = {.lex_state = 56, .external_lex_state = 2}, + [6] = {.lex_state = 56, .external_lex_state = 2}, + [7] = {.lex_state = 72}, + [8] = {.lex_state = 72}, + [9] = {.lex_state = 56, .external_lex_state = 2}, + [10] = {.lex_state = 74, .external_lex_state = 2}, + [11] = {.lex_state = 76}, + [12] = {.lex_state = 76}, + [13] = {.lex_state = 82, .external_lex_state = 3}, + [14] = {.lex_state = 82, .external_lex_state = 4}, + [15] = {.lex_state = 72}, + [16] = {.lex_state = 87, .external_lex_state = 5}, + [17] = {.lex_state = 90}, + [18] = {.lex_state = 97}, + [19] = {.lex_state = 87, .external_lex_state = 5}, + [20] = {.lex_state = 97, .external_lex_state = 6}, + [21] = {.lex_state = 56, .external_lex_state = 2}, + [22] = {.lex_state = 56, .external_lex_state = 2}, + [23] = {.lex_state = 56, .external_lex_state = 2}, + [24] = {.lex_state = 106, .external_lex_state = 5}, + [25] = {.lex_state = 108}, + [26] = {.lex_state = 82, .external_lex_state = 4}, + [27] = {.lex_state = 87, .external_lex_state = 7}, + [28] = {.lex_state = 110, .external_lex_state = 8}, + [29] = {.lex_state = 62}, + [30] = {.lex_state = 72, .external_lex_state = 2}, + [31] = {.lex_state = 112, .external_lex_state = 7}, + [32] = {.lex_state = 56, .external_lex_state = 2}, + [33] = {.lex_state = 72, .external_lex_state = 2}, + [34] = {.lex_state = 72}, + [35] = {.lex_state = 72}, + [36] = {.lex_state = 114, .external_lex_state = 9}, + [37] = {.lex_state = 116, .external_lex_state = 4}, + [38] = {.lex_state = 72}, + [39] = {.lex_state = 82, .external_lex_state = 4}, + [40] = {.lex_state = 110, .external_lex_state = 8}, + [41] = {.lex_state = 72}, + [42] = {.lex_state = 116, .external_lex_state = 10}, + [43] = {.lex_state = 90}, + [44] = {.lex_state = 97}, + [45] = {.lex_state = 116, .external_lex_state = 10}, + [46] = {.lex_state = 97, .external_lex_state = 6}, + [47] = {.lex_state = 56, .external_lex_state = 2}, + [48] = {.lex_state = 56, .external_lex_state = 2}, + [49] = {.lex_state = 56, .external_lex_state = 2}, + [50] = {.lex_state = 116, .external_lex_state = 4}, + [51] = {.lex_state = 119}, + [52] = {.lex_state = 62}, + [53] = {.lex_state = 56, .external_lex_state = 2}, + [54] = {.lex_state = 72}, + [55] = {.lex_state = 74, .external_lex_state = 2}, + [56] = {.lex_state = 76}, + [57] = {.lex_state = 76}, + [58] = {.lex_state = 121, .external_lex_state = 3}, + [59] = {.lex_state = 121, .external_lex_state = 4}, + [60] = {.lex_state = 112, .external_lex_state = 5}, + [61] = {.lex_state = 112, .external_lex_state = 5}, + [62] = {.lex_state = 123, .external_lex_state = 5}, + [63] = {.lex_state = 121, .external_lex_state = 4}, + [64] = {.lex_state = 112, .external_lex_state = 7}, + [65] = {.lex_state = 125, .external_lex_state = 8}, + [66] = {.lex_state = 62}, + [67] = {.lex_state = 56, .external_lex_state = 2}, + [68] = {.lex_state = 72, .external_lex_state = 2}, + [69] = {.lex_state = 62}, + [70] = {.lex_state = 127, .external_lex_state = 4}, + [71] = {.lex_state = 62}, + [72] = {.lex_state = 76}, + [73] = {.lex_state = 76}, + [74] = {.lex_state = 129, .external_lex_state = 11}, + [75] = {.lex_state = 90}, + [76] = {.lex_state = 97}, + [77] = {.lex_state = 129, .external_lex_state = 11}, + [78] = {.lex_state = 97, .external_lex_state = 6}, + [79] = {.lex_state = 56, .external_lex_state = 2}, + [80] = {.lex_state = 56, .external_lex_state = 2}, + [81] = {.lex_state = 56, .external_lex_state = 2}, + [82] = {.lex_state = 129, .external_lex_state = 12}, + [83] = {.lex_state = 76}, + [84] = {.lex_state = 76}, + [85] = {.lex_state = 141, .external_lex_state = 13}, + [86] = {.lex_state = 90}, + [87] = {.lex_state = 97}, + [88] = {.lex_state = 141, .external_lex_state = 13}, + [89] = {.lex_state = 97, .external_lex_state = 6}, + [90] = {.lex_state = 56, .external_lex_state = 2}, + [91] = {.lex_state = 56, .external_lex_state = 2}, + [92] = {.lex_state = 56, .external_lex_state = 2}, + [93] = {.lex_state = 141}, + [94] = {.lex_state = 62}, + [95] = {.lex_state = 82, .external_lex_state = 14}, + [96] = {.lex_state = 90}, + [97] = {.lex_state = 97}, + [98] = {.lex_state = 82, .external_lex_state = 14}, + [99] = {.lex_state = 97, .external_lex_state = 6}, + [100] = {.lex_state = 56, .external_lex_state = 2}, + [101] = {.lex_state = 56, .external_lex_state = 2}, + [102] = {.lex_state = 56, .external_lex_state = 2}, + [103] = {.lex_state = 121, .external_lex_state = 3}, + [104] = {.lex_state = 62}, + [105] = {.lex_state = 82, .external_lex_state = 3}, + [106] = {.lex_state = 82, .external_lex_state = 10}, + [107] = {.lex_state = 90}, + [108] = {.lex_state = 97}, + [109] = {.lex_state = 82, .external_lex_state = 10}, + [110] = {.lex_state = 97, .external_lex_state = 6}, + [111] = {.lex_state = 56, .external_lex_state = 2}, + [112] = {.lex_state = 56, .external_lex_state = 2}, + [113] = {.lex_state = 56, .external_lex_state = 2}, + [114] = {.lex_state = 121, .external_lex_state = 4}, + [115] = {.lex_state = 82, .external_lex_state = 4}, + [116] = {.lex_state = 72, .external_lex_state = 15}, + [117] = {.lex_state = 90}, + [118] = {.lex_state = 97}, + [119] = {.lex_state = 72, .external_lex_state = 15}, + [120] = {.lex_state = 97, .external_lex_state = 6}, + [121] = {.lex_state = 56, .external_lex_state = 2}, + [122] = {.lex_state = 56, .external_lex_state = 2}, + [123] = {.lex_state = 56, .external_lex_state = 2}, + [124] = {.lex_state = 72, .external_lex_state = 2}, + [125] = {.lex_state = 72}, + [126] = {.lex_state = 87, .external_lex_state = 5}, + [127] = {.lex_state = 112, .external_lex_state = 5}, + [128] = {.lex_state = 145}, + [129] = {.lex_state = 90, .external_lex_state = 13}, + [130] = {.lex_state = 97, .external_lex_state = 6}, + [131] = {.lex_state = 56, .external_lex_state = 2}, + [132] = {.lex_state = 56, .external_lex_state = 2}, + [133] = {.lex_state = 90}, + [134] = {.lex_state = 112, .external_lex_state = 5}, + [135] = {.lex_state = 112, .external_lex_state = 5}, + [136] = {.lex_state = 112, .external_lex_state = 5}, + [137] = {.lex_state = 62}, + [138] = {.lex_state = 151, .external_lex_state = 16}, + [139] = {.lex_state = 154, .external_lex_state = 6}, + [140] = {.lex_state = 151, .external_lex_state = 16}, + [141] = {.lex_state = 151, .external_lex_state = 16}, + [142] = {.lex_state = 62}, + [143] = {.lex_state = 68}, + [144] = {.lex_state = 56, .external_lex_state = 2}, + [145] = {.lex_state = 56, .external_lex_state = 2}, + [146] = {.lex_state = 72}, + [147] = {.lex_state = 72}, + [148] = {.lex_state = 56, .external_lex_state = 2}, + [149] = {.lex_state = 74, .external_lex_state = 2}, + [150] = {.lex_state = 76}, + [151] = {.lex_state = 76}, + [152] = {.lex_state = 156, .external_lex_state = 6}, + [153] = {.lex_state = 156}, + [154] = {.lex_state = 158, .external_lex_state = 17}, + [155] = {.lex_state = 90}, + [156] = {.lex_state = 97}, + [157] = {.lex_state = 158, .external_lex_state = 17}, + [158] = {.lex_state = 97, .external_lex_state = 6}, + [159] = {.lex_state = 56, .external_lex_state = 2}, + [160] = {.lex_state = 56, .external_lex_state = 2}, + [161] = {.lex_state = 56, .external_lex_state = 2}, + [162] = {.lex_state = 161, .external_lex_state = 17}, + [163] = {.lex_state = 68}, + [164] = {.lex_state = 158, .external_lex_state = 18}, + [165] = {.lex_state = 163, .external_lex_state = 2}, + [166] = {.lex_state = 62}, + [167] = {.lex_state = 158, .external_lex_state = 18}, + [168] = {.lex_state = 72, .external_lex_state = 2}, + [169] = {.lex_state = 62}, + [170] = {.lex_state = 56, .external_lex_state = 2}, + [171] = {.lex_state = 72}, + [172] = {.lex_state = 74, .external_lex_state = 2}, + [173] = {.lex_state = 76}, + [174] = {.lex_state = 76}, + [175] = {.lex_state = 165, .external_lex_state = 6}, + [176] = {.lex_state = 156}, + [177] = {.lex_state = 167, .external_lex_state = 17}, + [178] = {.lex_state = 167, .external_lex_state = 17}, + [179] = {.lex_state = 169, .external_lex_state = 17}, + [180] = {.lex_state = 68}, + [181] = {.lex_state = 167, .external_lex_state = 18}, + [182] = {.lex_state = 171, .external_lex_state = 2}, + [183] = {.lex_state = 62}, + [184] = {.lex_state = 72, .external_lex_state = 2}, + [185] = {.lex_state = 68}, + [186] = {.lex_state = 163, .external_lex_state = 2}, + [187] = {.lex_state = 68}, + [188] = {.lex_state = 56, .external_lex_state = 2}, + [189] = {.lex_state = 173, .external_lex_state = 2}, + [190] = {.lex_state = 56, .external_lex_state = 2}, + [191] = {.lex_state = 127, .external_lex_state = 4}, + [192] = {.lex_state = 176, .external_lex_state = 19}, + [193] = {.lex_state = 56}, + [194] = {.lex_state = 179}, + [195] = {.lex_state = 72}, + [196] = {.lex_state = 56, .external_lex_state = 20}, + [197] = {.lex_state = 72}, + [198] = {.lex_state = 87, .external_lex_state = 5}, + [199] = {.lex_state = 87, .external_lex_state = 5}, + [200] = {.lex_state = 127, .external_lex_state = 4}, + [201] = {.lex_state = 199, .external_lex_state = 7}, + [202] = {.lex_state = 87, .external_lex_state = 7}, + [203] = {.lex_state = 56, .external_lex_state = 2}, + [204] = {.lex_state = 87, .external_lex_state = 7}, + [205] = {.lex_state = 72, .external_lex_state = 2}, + [206] = {.lex_state = 72, .external_lex_state = 15}, + [207] = {.lex_state = 72, .external_lex_state = 15}, + [208] = {.lex_state = 72, .external_lex_state = 2}, + [209] = {.lex_state = 203, .external_lex_state = 11}, + [210] = {.lex_state = 203, .external_lex_state = 11}, + [211] = {.lex_state = 203, .external_lex_state = 11}, + [212] = {.lex_state = 125, .external_lex_state = 8}, + [213] = {.lex_state = 163}, + [214] = {.lex_state = 110, .external_lex_state = 21}, + [215] = {.lex_state = 90}, + [216] = {.lex_state = 97}, + [217] = {.lex_state = 110, .external_lex_state = 21}, + [218] = {.lex_state = 97, .external_lex_state = 6}, + [219] = {.lex_state = 56, .external_lex_state = 2}, + [220] = {.lex_state = 56, .external_lex_state = 2}, + [221] = {.lex_state = 56, .external_lex_state = 2}, + [222] = {.lex_state = 72}, + [223] = {.lex_state = 72}, + [224] = {.lex_state = 56, .external_lex_state = 2}, + [225] = {.lex_state = 199, .external_lex_state = 7}, + [226] = {.lex_state = 72}, + [227] = {.lex_state = 56, .external_lex_state = 2}, + [228] = {.lex_state = 72}, + [229] = {.lex_state = 116, .external_lex_state = 4}, + [230] = {.lex_state = 72}, + [231] = {.lex_state = 116, .external_lex_state = 10}, + [232] = {.lex_state = 116, .external_lex_state = 10}, + [233] = {.lex_state = 90}, + [234] = {.lex_state = 116, .external_lex_state = 10}, + [235] = {.lex_state = 116, .external_lex_state = 10}, + [236] = {.lex_state = 116, .external_lex_state = 10}, + [237] = {.lex_state = 116, .external_lex_state = 4}, + [238] = {.lex_state = 72}, + [239] = {.lex_state = 62}, + [240] = {.lex_state = 151, .external_lex_state = 16}, + [241] = {.lex_state = 154, .external_lex_state = 6}, + [242] = {.lex_state = 151, .external_lex_state = 16}, + [243] = {.lex_state = 151, .external_lex_state = 16}, + [244] = {.lex_state = 68}, + [245] = {.lex_state = 163, .external_lex_state = 2}, + [246] = {.lex_state = 68}, + [247] = {.lex_state = 171, .external_lex_state = 2}, + [248] = {.lex_state = 68}, + [249] = {.lex_state = 163, .external_lex_state = 2}, + [250] = {.lex_state = 68}, + [251] = {.lex_state = 205, .external_lex_state = 22}, + [252] = {.lex_state = 110, .external_lex_state = 23}, + [253] = {.lex_state = 114, .external_lex_state = 9}, + [254] = {.lex_state = 72}, + [255] = {.lex_state = 119}, + [256] = {.lex_state = 129, .external_lex_state = 12}, + [257] = {.lex_state = 141}, + [258] = {.lex_state = 62}, + [259] = {.lex_state = 121, .external_lex_state = 14}, + [260] = {.lex_state = 121, .external_lex_state = 14}, + [261] = {.lex_state = 62}, + [262] = {.lex_state = 121, .external_lex_state = 3}, + [263] = {.lex_state = 121, .external_lex_state = 10}, + [264] = {.lex_state = 121, .external_lex_state = 10}, + [265] = {.lex_state = 121, .external_lex_state = 4}, + [266] = {.lex_state = 112, .external_lex_state = 5}, + [267] = {.lex_state = 68}, + [268] = {.lex_state = 56, .external_lex_state = 2}, + [269] = {.lex_state = 127, .external_lex_state = 4}, + [270] = {.lex_state = 207, .external_lex_state = 2}, + [271] = {.lex_state = 56, .external_lex_state = 2}, + [272] = {.lex_state = 56}, + [273] = {.lex_state = 179}, + [274] = {.lex_state = 72}, + [275] = {.lex_state = 72}, + [276] = {.lex_state = 112, .external_lex_state = 5}, + [277] = {.lex_state = 112, .external_lex_state = 5}, + [278] = {.lex_state = 209, .external_lex_state = 7}, + [279] = {.lex_state = 112, .external_lex_state = 7}, + [280] = {.lex_state = 121, .external_lex_state = 4}, + [281] = {.lex_state = 125, .external_lex_state = 8}, + [282] = {.lex_state = 56, .external_lex_state = 2}, + [283] = {.lex_state = 112, .external_lex_state = 7}, + [284] = {.lex_state = 114, .external_lex_state = 9}, + [285] = {.lex_state = 76}, + [286] = {.lex_state = 211, .external_lex_state = 13}, + [287] = {.lex_state = 211, .external_lex_state = 13}, + [288] = {.lex_state = 211}, + [289] = {.lex_state = 129, .external_lex_state = 12}, + [290] = {.lex_state = 72}, + [291] = {.lex_state = 129, .external_lex_state = 11}, + [292] = {.lex_state = 129, .external_lex_state = 11}, + [293] = {.lex_state = 90}, + [294] = {.lex_state = 129, .external_lex_state = 11}, + [295] = {.lex_state = 129, .external_lex_state = 11}, + [296] = {.lex_state = 129, .external_lex_state = 11}, + [297] = {.lex_state = 62}, + [298] = {.lex_state = 151, .external_lex_state = 16}, + [299] = {.lex_state = 154, .external_lex_state = 6}, + [300] = {.lex_state = 151, .external_lex_state = 16}, + [301] = {.lex_state = 151, .external_lex_state = 16}, + [302] = {.lex_state = 68}, + [303] = {.lex_state = 163, .external_lex_state = 2}, + [304] = {.lex_state = 68}, + [305] = {.lex_state = 171, .external_lex_state = 2}, + [306] = {.lex_state = 68}, + [307] = {.lex_state = 163, .external_lex_state = 2}, + [308] = {.lex_state = 76}, + [309] = {.lex_state = 199, .external_lex_state = 23}, + [310] = {.lex_state = 213}, + [311] = {.lex_state = 211}, + [312] = {.lex_state = 141}, + [313] = {.lex_state = 72}, + [314] = {.lex_state = 141, .external_lex_state = 13}, + [315] = {.lex_state = 218, .external_lex_state = 13}, + [316] = {.lex_state = 90}, + [317] = {.lex_state = 218, .external_lex_state = 13}, + [318] = {.lex_state = 218, .external_lex_state = 13}, + [319] = {.lex_state = 218, .external_lex_state = 13}, + [320] = {.lex_state = 62}, + [321] = {.lex_state = 151, .external_lex_state = 16}, + [322] = {.lex_state = 154, .external_lex_state = 6}, + [323] = {.lex_state = 151, .external_lex_state = 16}, + [324] = {.lex_state = 151, .external_lex_state = 16}, + [325] = {.lex_state = 68}, + [326] = {.lex_state = 163, .external_lex_state = 2}, + [327] = {.lex_state = 68}, + [328] = {.lex_state = 171, .external_lex_state = 2}, + [329] = {.lex_state = 68}, + [330] = {.lex_state = 163, .external_lex_state = 2}, + [331] = {.lex_state = 76}, + [332] = {.lex_state = 213}, + [333] = {.lex_state = 114, .external_lex_state = 9}, + [334] = {.lex_state = 72}, + [335] = {.lex_state = 82, .external_lex_state = 14}, + [336] = {.lex_state = 121, .external_lex_state = 14}, + [337] = {.lex_state = 90}, + [338] = {.lex_state = 121, .external_lex_state = 14}, + [339] = {.lex_state = 121, .external_lex_state = 14}, + [340] = {.lex_state = 121, .external_lex_state = 14}, + [341] = {.lex_state = 62}, + [342] = {.lex_state = 151, .external_lex_state = 16}, + [343] = {.lex_state = 154, .external_lex_state = 6}, + [344] = {.lex_state = 151, .external_lex_state = 16}, + [345] = {.lex_state = 151, .external_lex_state = 16}, + [346] = {.lex_state = 68}, + [347] = {.lex_state = 163, .external_lex_state = 2}, + [348] = {.lex_state = 68}, + [349] = {.lex_state = 171, .external_lex_state = 2}, + [350] = {.lex_state = 68}, + [351] = {.lex_state = 163, .external_lex_state = 2}, + [352] = {.lex_state = 82, .external_lex_state = 3}, + [353] = {.lex_state = 72}, + [354] = {.lex_state = 82, .external_lex_state = 10}, + [355] = {.lex_state = 121, .external_lex_state = 10}, + [356] = {.lex_state = 90}, + [357] = {.lex_state = 121, .external_lex_state = 10}, + [358] = {.lex_state = 121, .external_lex_state = 10}, + [359] = {.lex_state = 121, .external_lex_state = 10}, + [360] = {.lex_state = 62}, + [361] = {.lex_state = 151, .external_lex_state = 16}, + [362] = {.lex_state = 154, .external_lex_state = 6}, + [363] = {.lex_state = 151, .external_lex_state = 16}, + [364] = {.lex_state = 151, .external_lex_state = 16}, + [365] = {.lex_state = 68}, + [366] = {.lex_state = 163, .external_lex_state = 2}, + [367] = {.lex_state = 68}, + [368] = {.lex_state = 171, .external_lex_state = 2}, + [369] = {.lex_state = 68}, + [370] = {.lex_state = 163, .external_lex_state = 2}, + [371] = {.lex_state = 82, .external_lex_state = 4}, + [372] = {.lex_state = 72}, + [373] = {.lex_state = 72, .external_lex_state = 15}, + [374] = {.lex_state = 163, .external_lex_state = 15}, + [375] = {.lex_state = 90}, + [376] = {.lex_state = 163, .external_lex_state = 15}, + [377] = {.lex_state = 163, .external_lex_state = 15}, + [378] = {.lex_state = 163, .external_lex_state = 15}, + [379] = {.lex_state = 62}, + [380] = {.lex_state = 151, .external_lex_state = 16}, + [381] = {.lex_state = 154, .external_lex_state = 6}, + [382] = {.lex_state = 151, .external_lex_state = 16}, + [383] = {.lex_state = 151, .external_lex_state = 16}, + [384] = {.lex_state = 68}, + [385] = {.lex_state = 163, .external_lex_state = 2}, + [386] = {.lex_state = 68}, + [387] = {.lex_state = 171, .external_lex_state = 2}, + [388] = {.lex_state = 68}, + [389] = {.lex_state = 163, .external_lex_state = 2}, + [390] = {.lex_state = 112, .external_lex_state = 5}, + [391] = {.lex_state = 87, .external_lex_state = 5}, + [392] = {.lex_state = 90, .external_lex_state = 13}, + [393] = {.lex_state = 90, .external_lex_state = 13}, + [394] = {.lex_state = 90, .external_lex_state = 13}, + [395] = {.lex_state = 90}, + [396] = {.lex_state = 62}, + [397] = {.lex_state = 151, .external_lex_state = 16}, + [398] = {.lex_state = 154, .external_lex_state = 6}, + [399] = {.lex_state = 151, .external_lex_state = 16}, + [400] = {.lex_state = 151, .external_lex_state = 16}, + [401] = {.lex_state = 68}, + [402] = {.lex_state = 163, .external_lex_state = 2}, + [403] = {.lex_state = 68}, + [404] = {.lex_state = 171, .external_lex_state = 2}, + [405] = {.lex_state = 112, .external_lex_state = 5}, + [406] = {.lex_state = 90}, + [407] = {.lex_state = 72}, + [408] = {.lex_state = 221, .external_lex_state = 16}, + [409] = {.lex_state = 112, .external_lex_state = 5}, + [410] = {.lex_state = 223, .external_lex_state = 24}, + [411] = {.lex_state = 90}, + [412] = {.lex_state = 97}, + [413] = {.lex_state = 223, .external_lex_state = 24}, + [414] = {.lex_state = 97, .external_lex_state = 6}, + [415] = {.lex_state = 225}, + [416] = {.lex_state = 56, .external_lex_state = 2}, + [417] = {.lex_state = 56, .external_lex_state = 2}, + [418] = {.lex_state = 56, .external_lex_state = 2}, + [419] = {.lex_state = 223, .external_lex_state = 16}, + [420] = {.lex_state = 62}, + [421] = {.lex_state = 151, .external_lex_state = 16}, + [422] = {.lex_state = 151, .external_lex_state = 16}, + [423] = {.lex_state = 151, .external_lex_state = 16}, + [424] = {.lex_state = 112, .external_lex_state = 5}, + [425] = {.lex_state = 225}, + [426] = {.lex_state = 223, .external_lex_state = 16}, + [427] = {.lex_state = 112, .external_lex_state = 5}, + [428] = {.lex_state = 225}, + [429] = {.lex_state = 223, .external_lex_state = 16}, + [430] = {.lex_state = 114, .external_lex_state = 9}, + [431] = {.lex_state = 116, .external_lex_state = 4}, + [432] = {.lex_state = 72}, + [433] = {.lex_state = 72}, + [434] = {.lex_state = 116, .external_lex_state = 10}, + [435] = {.lex_state = 116, .external_lex_state = 10}, + [436] = {.lex_state = 116, .external_lex_state = 4}, + [437] = {.lex_state = 119}, + [438] = {.lex_state = 121, .external_lex_state = 4}, + [439] = {.lex_state = 125, .external_lex_state = 8}, + [440] = {.lex_state = 56, .external_lex_state = 2}, + [441] = {.lex_state = 68}, + [442] = {.lex_state = 129, .external_lex_state = 12}, + [443] = {.lex_state = 141}, + [444] = {.lex_state = 62}, + [445] = {.lex_state = 156, .external_lex_state = 25}, + [446] = {.lex_state = 90}, + [447] = {.lex_state = 97}, + [448] = {.lex_state = 156, .external_lex_state = 25}, + [449] = {.lex_state = 97, .external_lex_state = 6}, + [450] = {.lex_state = 56, .external_lex_state = 2}, + [451] = {.lex_state = 56, .external_lex_state = 2}, + [452] = {.lex_state = 56, .external_lex_state = 2}, + [453] = {.lex_state = 156, .external_lex_state = 6}, + [454] = {.lex_state = 62}, + [455] = {.lex_state = 156, .external_lex_state = 6}, + [456] = {.lex_state = 156, .external_lex_state = 13}, + [457] = {.lex_state = 90}, + [458] = {.lex_state = 97}, + [459] = {.lex_state = 156, .external_lex_state = 13}, + [460] = {.lex_state = 97, .external_lex_state = 6}, + [461] = {.lex_state = 56, .external_lex_state = 2}, + [462] = {.lex_state = 56, .external_lex_state = 2}, + [463] = {.lex_state = 56, .external_lex_state = 2}, + [464] = {.lex_state = 156}, + [465] = {.lex_state = 156}, + [466] = {.lex_state = 72}, + [467] = {.lex_state = 158, .external_lex_state = 17}, + [468] = {.lex_state = 158, .external_lex_state = 17}, + [469] = {.lex_state = 90}, + [470] = {.lex_state = 158, .external_lex_state = 17}, + [471] = {.lex_state = 158, .external_lex_state = 17}, + [472] = {.lex_state = 158, .external_lex_state = 17}, + [473] = {.lex_state = 62}, + [474] = {.lex_state = 151, .external_lex_state = 16}, + [475] = {.lex_state = 154, .external_lex_state = 6}, + [476] = {.lex_state = 151, .external_lex_state = 16}, + [477] = {.lex_state = 151, .external_lex_state = 16}, + [478] = {.lex_state = 68}, + [479] = {.lex_state = 163, .external_lex_state = 2}, + [480] = {.lex_state = 68}, + [481] = {.lex_state = 171, .external_lex_state = 2}, + [482] = {.lex_state = 68}, + [483] = {.lex_state = 163, .external_lex_state = 2}, + [484] = {.lex_state = 68}, + [485] = {.lex_state = 56, .external_lex_state = 2}, + [486] = {.lex_state = 112, .external_lex_state = 5}, + [487] = {.lex_state = 56, .external_lex_state = 2}, + [488] = {.lex_state = 68}, + [489] = {.lex_state = 176, .external_lex_state = 19}, + [490] = {.lex_state = 56}, + [491] = {.lex_state = 179}, + [492] = {.lex_state = 72}, + [493] = {.lex_state = 56, .external_lex_state = 20}, + [494] = {.lex_state = 72}, + [495] = {.lex_state = 158, .external_lex_state = 17}, + [496] = {.lex_state = 158, .external_lex_state = 17}, + [497] = {.lex_state = 68}, + [498] = {.lex_state = 230, .external_lex_state = 18}, + [499] = {.lex_state = 158, .external_lex_state = 18}, + [500] = {.lex_state = 158, .external_lex_state = 18}, + [501] = {.lex_state = 114, .external_lex_state = 9}, + [502] = {.lex_state = 72}, + [503] = {.lex_state = 119}, + [504] = {.lex_state = 129, .external_lex_state = 12}, + [505] = {.lex_state = 141}, + [506] = {.lex_state = 62}, + [507] = {.lex_state = 165, .external_lex_state = 25}, + [508] = {.lex_state = 165, .external_lex_state = 25}, + [509] = {.lex_state = 62}, + [510] = {.lex_state = 165, .external_lex_state = 6}, + [511] = {.lex_state = 165, .external_lex_state = 13}, + [512] = {.lex_state = 165, .external_lex_state = 13}, + [513] = {.lex_state = 156}, + [514] = {.lex_state = 167, .external_lex_state = 17}, + [515] = {.lex_state = 68}, + [516] = {.lex_state = 56, .external_lex_state = 2}, + [517] = {.lex_state = 56, .external_lex_state = 2}, + [518] = {.lex_state = 56}, + [519] = {.lex_state = 179}, + [520] = {.lex_state = 72}, + [521] = {.lex_state = 72}, + [522] = {.lex_state = 167, .external_lex_state = 17}, + [523] = {.lex_state = 167, .external_lex_state = 17}, + [524] = {.lex_state = 232, .external_lex_state = 18}, + [525] = {.lex_state = 167, .external_lex_state = 18}, + [526] = {.lex_state = 167, .external_lex_state = 18}, + [527] = {.lex_state = 112, .external_lex_state = 5}, + [528] = {.lex_state = 119}, + [529] = {.lex_state = 127, .external_lex_state = 4}, + [530] = {.lex_state = 125, .external_lex_state = 8}, + [531] = {.lex_state = 82, .external_lex_state = 4}, + [532] = {.lex_state = 110, .external_lex_state = 8}, + [533] = {.lex_state = 127, .external_lex_state = 4}, + [534] = {.lex_state = 97}, + [535] = {.lex_state = 97, .external_lex_state = 6}, + [536] = {.lex_state = 176, .external_lex_state = 19}, + [537] = {.lex_state = 72}, + [538] = {.lex_state = 87, .external_lex_state = 5}, + [539] = {.lex_state = 87, .external_lex_state = 5}, + [540] = {.lex_state = 112, .external_lex_state = 7}, + [541] = {.lex_state = 199, .external_lex_state = 5}, + [542] = {.lex_state = 199, .external_lex_state = 5}, + [543] = {.lex_state = 234, .external_lex_state = 7}, + [544] = {.lex_state = 234, .external_lex_state = 7}, + [545] = {.lex_state = 199, .external_lex_state = 5}, + [546] = {.lex_state = 199, .external_lex_state = 5}, + [547] = {.lex_state = 234, .external_lex_state = 7}, + [548] = {.lex_state = 127, .external_lex_state = 4}, + [549] = {.lex_state = 199, .external_lex_state = 7}, + [550] = {.lex_state = 199, .external_lex_state = 7}, + [551] = {.lex_state = 87, .external_lex_state = 7}, + [552] = {.lex_state = 87, .external_lex_state = 7}, + [553] = {.lex_state = 203, .external_lex_state = 12}, + [554] = {.lex_state = 62, .external_lex_state = 13}, + [555] = {.lex_state = 203, .external_lex_state = 11}, + [556] = {.lex_state = 203, .external_lex_state = 12}, + [557] = {.lex_state = 62, .external_lex_state = 13}, + [558] = {.lex_state = 129, .external_lex_state = 12}, + [559] = {.lex_state = 125, .external_lex_state = 8}, + [560] = {.lex_state = 236, .external_lex_state = 13}, + [561] = {.lex_state = 90}, + [562] = {.lex_state = 97}, + [563] = {.lex_state = 236, .external_lex_state = 13}, + [564] = {.lex_state = 97, .external_lex_state = 6}, + [565] = {.lex_state = 56, .external_lex_state = 2}, + [566] = {.lex_state = 56, .external_lex_state = 2}, + [567] = {.lex_state = 56, .external_lex_state = 2}, + [568] = {.lex_state = 163}, + [569] = {.lex_state = 72}, + [570] = {.lex_state = 110, .external_lex_state = 21}, + [571] = {.lex_state = 125, .external_lex_state = 21}, + [572] = {.lex_state = 90}, + [573] = {.lex_state = 125, .external_lex_state = 21}, + [574] = {.lex_state = 125, .external_lex_state = 21}, + [575] = {.lex_state = 125, .external_lex_state = 21}, + [576] = {.lex_state = 62}, + [577] = {.lex_state = 151, .external_lex_state = 16}, + [578] = {.lex_state = 154, .external_lex_state = 6}, + [579] = {.lex_state = 151, .external_lex_state = 16}, + [580] = {.lex_state = 151, .external_lex_state = 16}, + [581] = {.lex_state = 68}, + [582] = {.lex_state = 163, .external_lex_state = 2}, + [583] = {.lex_state = 68}, + [584] = {.lex_state = 171, .external_lex_state = 2}, + [585] = {.lex_state = 68}, + [586] = {.lex_state = 163, .external_lex_state = 2}, + [587] = {.lex_state = 116, .external_lex_state = 10}, + [588] = {.lex_state = 116, .external_lex_state = 10}, + [589] = {.lex_state = 116, .external_lex_state = 4}, + [590] = {.lex_state = 56, .external_lex_state = 2}, + [591] = {.lex_state = 127, .external_lex_state = 4}, + [592] = {.lex_state = 234, .external_lex_state = 7}, + [593] = {.lex_state = 56, .external_lex_state = 2}, + [594] = {.lex_state = 127, .external_lex_state = 4}, + [595] = {.lex_state = 199, .external_lex_state = 7}, + [596] = {.lex_state = 127, .external_lex_state = 4}, + [597] = {.lex_state = 56, .external_lex_state = 2}, + [598] = {.lex_state = 56, .external_lex_state = 2}, + [599] = {.lex_state = 72}, + [600] = {.lex_state = 72}, + [601] = {.lex_state = 56, .external_lex_state = 2}, + [602] = {.lex_state = 72}, + [603] = {.lex_state = 116, .external_lex_state = 10}, + [604] = {.lex_state = 72}, + [605] = {.lex_state = 116, .external_lex_state = 4}, + [606] = {.lex_state = 116, .external_lex_state = 10}, + [607] = {.lex_state = 116, .external_lex_state = 10}, + [608] = {.lex_state = 72}, + [609] = {.lex_state = 116, .external_lex_state = 4}, + [610] = {.lex_state = 221, .external_lex_state = 16}, + [611] = {.lex_state = 116, .external_lex_state = 10}, + [612] = {.lex_state = 225}, + [613] = {.lex_state = 223, .external_lex_state = 16}, + [614] = {.lex_state = 62}, + [615] = {.lex_state = 151, .external_lex_state = 16}, + [616] = {.lex_state = 151, .external_lex_state = 16}, + [617] = {.lex_state = 151, .external_lex_state = 16}, + [618] = {.lex_state = 116, .external_lex_state = 10}, + [619] = {.lex_state = 225}, + [620] = {.lex_state = 223, .external_lex_state = 16}, + [621] = {.lex_state = 116, .external_lex_state = 10}, + [622] = {.lex_state = 225}, + [623] = {.lex_state = 223, .external_lex_state = 16}, + [624] = {.lex_state = 116, .external_lex_state = 10}, + [625] = {.lex_state = 116, .external_lex_state = 10}, + [626] = {.lex_state = 119}, + [627] = {.lex_state = 125, .external_lex_state = 23}, + [628] = {.lex_state = 82, .external_lex_state = 4}, + [629] = {.lex_state = 110, .external_lex_state = 8}, + [630] = {.lex_state = 205, .external_lex_state = 22}, + [631] = {.lex_state = 56}, + [632] = {.lex_state = 72}, + [633] = {.lex_state = 127, .external_lex_state = 4}, + [634] = {.lex_state = 125, .external_lex_state = 21}, + [635] = {.lex_state = 125, .external_lex_state = 21}, + [636] = {.lex_state = 209, .external_lex_state = 7}, + [637] = {.lex_state = 68}, + [638] = {.lex_state = 125, .external_lex_state = 23}, + [639] = {.lex_state = 209, .external_lex_state = 23}, + [640] = {.lex_state = 114, .external_lex_state = 9}, + [641] = {.lex_state = 121, .external_lex_state = 14}, + [642] = {.lex_state = 121, .external_lex_state = 3}, + [643] = {.lex_state = 121, .external_lex_state = 10}, + [644] = {.lex_state = 121, .external_lex_state = 4}, + [645] = {.lex_state = 112, .external_lex_state = 5}, + [646] = {.lex_state = 119}, + [647] = {.lex_state = 127, .external_lex_state = 4}, + [648] = {.lex_state = 121, .external_lex_state = 4}, + [649] = {.lex_state = 125, .external_lex_state = 8}, + [650] = {.lex_state = 72}, + [651] = {.lex_state = 112, .external_lex_state = 5}, + [652] = {.lex_state = 112, .external_lex_state = 5}, + [653] = {.lex_state = 209, .external_lex_state = 5}, + [654] = {.lex_state = 209, .external_lex_state = 5}, + [655] = {.lex_state = 209, .external_lex_state = 5}, + [656] = {.lex_state = 209, .external_lex_state = 5}, + [657] = {.lex_state = 209, .external_lex_state = 7}, + [658] = {.lex_state = 209, .external_lex_state = 7}, + [659] = {.lex_state = 112, .external_lex_state = 7}, + [660] = {.lex_state = 207, .external_lex_state = 2}, + [661] = {.lex_state = 112, .external_lex_state = 7}, + [662] = {.lex_state = 163, .external_lex_state = 2}, + [663] = {.lex_state = 163}, + [664] = {.lex_state = 72, .external_lex_state = 15}, + [665] = {.lex_state = 72, .external_lex_state = 15}, + [666] = {.lex_state = 211}, + [667] = {.lex_state = 211, .external_lex_state = 13}, + [668] = {.lex_state = 129, .external_lex_state = 12}, + [669] = {.lex_state = 76}, + [670] = {.lex_state = 213}, + [671] = {.lex_state = 129, .external_lex_state = 11}, + [672] = {.lex_state = 129, .external_lex_state = 11}, + [673] = {.lex_state = 129, .external_lex_state = 11}, + [674] = {.lex_state = 221, .external_lex_state = 16}, + [675] = {.lex_state = 129, .external_lex_state = 11}, + [676] = {.lex_state = 225}, + [677] = {.lex_state = 223, .external_lex_state = 16}, + [678] = {.lex_state = 62}, + [679] = {.lex_state = 151, .external_lex_state = 16}, + [680] = {.lex_state = 151, .external_lex_state = 16}, + [681] = {.lex_state = 151, .external_lex_state = 16}, + [682] = {.lex_state = 129, .external_lex_state = 11}, + [683] = {.lex_state = 225}, + [684] = {.lex_state = 223, .external_lex_state = 16}, + [685] = {.lex_state = 129, .external_lex_state = 11}, + [686] = {.lex_state = 225}, + [687] = {.lex_state = 223, .external_lex_state = 16}, + [688] = {.lex_state = 129, .external_lex_state = 11}, + [689] = {.lex_state = 129, .external_lex_state = 11}, + [690] = {.lex_state = 129, .external_lex_state = 12}, + [691] = {.lex_state = 56}, + [692] = {.lex_state = 72}, + [693] = {.lex_state = 56, .external_lex_state = 20}, + [694] = {.lex_state = 72}, + [695] = {.lex_state = 199, .external_lex_state = 23}, + [696] = {.lex_state = 129, .external_lex_state = 12}, + [697] = {.lex_state = 238}, + [698] = {.lex_state = 218, .external_lex_state = 13}, + [699] = {.lex_state = 141, .external_lex_state = 13}, + [700] = {.lex_state = 218, .external_lex_state = 13}, + [701] = {.lex_state = 221, .external_lex_state = 16}, + [702] = {.lex_state = 218, .external_lex_state = 13}, + [703] = {.lex_state = 225}, + [704] = {.lex_state = 223, .external_lex_state = 16}, + [705] = {.lex_state = 62}, + [706] = {.lex_state = 151, .external_lex_state = 16}, + [707] = {.lex_state = 151, .external_lex_state = 16}, + [708] = {.lex_state = 151, .external_lex_state = 16}, + [709] = {.lex_state = 218, .external_lex_state = 13}, + [710] = {.lex_state = 225}, + [711] = {.lex_state = 223, .external_lex_state = 16}, + [712] = {.lex_state = 218, .external_lex_state = 13}, + [713] = {.lex_state = 225}, + [714] = {.lex_state = 223, .external_lex_state = 16}, + [715] = {.lex_state = 218, .external_lex_state = 13}, + [716] = {.lex_state = 218, .external_lex_state = 13}, + [717] = {.lex_state = 238}, + [718] = {.lex_state = 238}, + [719] = {.lex_state = 121, .external_lex_state = 3}, + [720] = {.lex_state = 163}, + [721] = {.lex_state = 82, .external_lex_state = 14}, + [722] = {.lex_state = 82, .external_lex_state = 14}, + [723] = {.lex_state = 121, .external_lex_state = 14}, + [724] = {.lex_state = 82, .external_lex_state = 14}, + [725] = {.lex_state = 121, .external_lex_state = 14}, + [726] = {.lex_state = 221, .external_lex_state = 16}, + [727] = {.lex_state = 121, .external_lex_state = 14}, + [728] = {.lex_state = 225}, + [729] = {.lex_state = 223, .external_lex_state = 16}, + [730] = {.lex_state = 62}, + [731] = {.lex_state = 151, .external_lex_state = 16}, + [732] = {.lex_state = 151, .external_lex_state = 16}, + [733] = {.lex_state = 151, .external_lex_state = 16}, + [734] = {.lex_state = 121, .external_lex_state = 14}, + [735] = {.lex_state = 225}, + [736] = {.lex_state = 223, .external_lex_state = 16}, + [737] = {.lex_state = 121, .external_lex_state = 14}, + [738] = {.lex_state = 225}, + [739] = {.lex_state = 223, .external_lex_state = 16}, + [740] = {.lex_state = 121, .external_lex_state = 14}, + [741] = {.lex_state = 121, .external_lex_state = 14}, + [742] = {.lex_state = 121, .external_lex_state = 10}, + [743] = {.lex_state = 82, .external_lex_state = 10}, + [744] = {.lex_state = 121, .external_lex_state = 10}, + [745] = {.lex_state = 221, .external_lex_state = 16}, + [746] = {.lex_state = 121, .external_lex_state = 10}, + [747] = {.lex_state = 225}, + [748] = {.lex_state = 223, .external_lex_state = 16}, + [749] = {.lex_state = 62}, + [750] = {.lex_state = 151, .external_lex_state = 16}, + [751] = {.lex_state = 151, .external_lex_state = 16}, + [752] = {.lex_state = 151, .external_lex_state = 16}, + [753] = {.lex_state = 121, .external_lex_state = 10}, + [754] = {.lex_state = 225}, + [755] = {.lex_state = 223, .external_lex_state = 16}, + [756] = {.lex_state = 121, .external_lex_state = 10}, + [757] = {.lex_state = 225}, + [758] = {.lex_state = 223, .external_lex_state = 16}, + [759] = {.lex_state = 121, .external_lex_state = 10}, + [760] = {.lex_state = 121, .external_lex_state = 10}, + [761] = {.lex_state = 163, .external_lex_state = 15}, + [762] = {.lex_state = 72, .external_lex_state = 15}, + [763] = {.lex_state = 163, .external_lex_state = 15}, + [764] = {.lex_state = 221, .external_lex_state = 16}, + [765] = {.lex_state = 163, .external_lex_state = 15}, + [766] = {.lex_state = 225}, + [767] = {.lex_state = 223, .external_lex_state = 16}, + [768] = {.lex_state = 62}, + [769] = {.lex_state = 151, .external_lex_state = 16}, + [770] = {.lex_state = 151, .external_lex_state = 16}, + [771] = {.lex_state = 151, .external_lex_state = 16}, + [772] = {.lex_state = 163, .external_lex_state = 15}, + [773] = {.lex_state = 225}, + [774] = {.lex_state = 223, .external_lex_state = 16}, + [775] = {.lex_state = 163, .external_lex_state = 15}, + [776] = {.lex_state = 225}, + [777] = {.lex_state = 223, .external_lex_state = 16}, + [778] = {.lex_state = 163, .external_lex_state = 15}, + [779] = {.lex_state = 163, .external_lex_state = 15}, + [780] = {.lex_state = 90}, + [781] = {.lex_state = 221, .external_lex_state = 16}, + [782] = {.lex_state = 90, .external_lex_state = 13}, + [783] = {.lex_state = 225}, + [784] = {.lex_state = 223, .external_lex_state = 16}, + [785] = {.lex_state = 62}, + [786] = {.lex_state = 151, .external_lex_state = 16}, + [787] = {.lex_state = 151, .external_lex_state = 16}, + [788] = {.lex_state = 151, .external_lex_state = 16}, + [789] = {.lex_state = 90, .external_lex_state = 13}, + [790] = {.lex_state = 225}, + [791] = {.lex_state = 223, .external_lex_state = 16}, + [792] = {.lex_state = 90, .external_lex_state = 13}, + [793] = {.lex_state = 225}, + [794] = {.lex_state = 223, .external_lex_state = 16}, + [795] = {.lex_state = 90, .external_lex_state = 13}, + [796] = {.lex_state = 203, .external_lex_state = 11}, + [797] = {.lex_state = 203, .external_lex_state = 11}, + [798] = {.lex_state = 203, .external_lex_state = 11}, + [799] = {.lex_state = 112, .external_lex_state = 5}, + [800] = {.lex_state = 205, .external_lex_state = 24}, + [801] = {.lex_state = 90}, + [802] = {.lex_state = 97}, + [803] = {.lex_state = 205, .external_lex_state = 24}, + [804] = {.lex_state = 97, .external_lex_state = 6}, + [805] = {.lex_state = 56, .external_lex_state = 2}, + [806] = {.lex_state = 56, .external_lex_state = 2}, + [807] = {.lex_state = 56, .external_lex_state = 2}, + [808] = {.lex_state = 205, .external_lex_state = 16}, + [809] = {.lex_state = 72}, + [810] = {.lex_state = 223, .external_lex_state = 24}, + [811] = {.lex_state = 223, .external_lex_state = 24}, + [812] = {.lex_state = 90}, + [813] = {.lex_state = 223, .external_lex_state = 24}, + [814] = {.lex_state = 223, .external_lex_state = 24}, + [815] = {.lex_state = 223, .external_lex_state = 24}, + [816] = {.lex_state = 62}, + [817] = {.lex_state = 151, .external_lex_state = 16}, + [818] = {.lex_state = 154, .external_lex_state = 6}, + [819] = {.lex_state = 151, .external_lex_state = 16}, + [820] = {.lex_state = 151, .external_lex_state = 16}, + [821] = {.lex_state = 223, .external_lex_state = 16}, + [822] = {.lex_state = 68}, + [823] = {.lex_state = 163, .external_lex_state = 2}, + [824] = {.lex_state = 68}, + [825] = {.lex_state = 171, .external_lex_state = 2}, + [826] = {.lex_state = 68}, + [827] = {.lex_state = 163, .external_lex_state = 2}, + [828] = {.lex_state = 112, .external_lex_state = 5}, + [829] = {.lex_state = 223, .external_lex_state = 16}, + [830] = {.lex_state = 221, .external_lex_state = 16}, + [831] = {.lex_state = 112, .external_lex_state = 5}, + [832] = {.lex_state = 225}, + [833] = {.lex_state = 223, .external_lex_state = 16}, + [834] = {.lex_state = 112, .external_lex_state = 5}, + [835] = {.lex_state = 225}, + [836] = {.lex_state = 223, .external_lex_state = 16}, + [837] = {.lex_state = 225}, + [838] = {.lex_state = 223, .external_lex_state = 16}, + [839] = {.lex_state = 223, .external_lex_state = 16}, + [840] = {.lex_state = 112, .external_lex_state = 5}, + [841] = {.lex_state = 223, .external_lex_state = 16}, + [842] = {.lex_state = 163, .external_lex_state = 15}, + [843] = {.lex_state = 163, .external_lex_state = 15}, + [844] = {.lex_state = 72}, + [845] = {.lex_state = 72}, + [846] = {.lex_state = 56, .external_lex_state = 2}, + [847] = {.lex_state = 230, .external_lex_state = 18}, + [848] = {.lex_state = 56, .external_lex_state = 2}, + [849] = {.lex_state = 116, .external_lex_state = 4}, + [850] = {.lex_state = 72}, + [851] = {.lex_state = 116, .external_lex_state = 4}, + [852] = {.lex_state = 72}, + [853] = {.lex_state = 68}, + [854] = {.lex_state = 205, .external_lex_state = 22}, + [855] = {.lex_state = 163, .external_lex_state = 26}, + [856] = {.lex_state = 68}, + [857] = {.lex_state = 207, .external_lex_state = 2}, + [858] = {.lex_state = 121, .external_lex_state = 4}, + [859] = {.lex_state = 125, .external_lex_state = 8}, + [860] = {.lex_state = 230, .external_lex_state = 26}, + [861] = {.lex_state = 114, .external_lex_state = 9}, + [862] = {.lex_state = 72}, + [863] = {.lex_state = 156, .external_lex_state = 25}, + [864] = {.lex_state = 156, .external_lex_state = 25}, + [865] = {.lex_state = 90}, + [866] = {.lex_state = 156, .external_lex_state = 25}, + [867] = {.lex_state = 156, .external_lex_state = 25}, + [868] = {.lex_state = 156, .external_lex_state = 25}, + [869] = {.lex_state = 62}, + [870] = {.lex_state = 151, .external_lex_state = 16}, + [871] = {.lex_state = 154, .external_lex_state = 6}, + [872] = {.lex_state = 151, .external_lex_state = 16}, + [873] = {.lex_state = 151, .external_lex_state = 16}, + [874] = {.lex_state = 68}, + [875] = {.lex_state = 163, .external_lex_state = 2}, + [876] = {.lex_state = 68}, + [877] = {.lex_state = 171, .external_lex_state = 2}, + [878] = {.lex_state = 68}, + [879] = {.lex_state = 163, .external_lex_state = 2}, + [880] = {.lex_state = 156, .external_lex_state = 6}, + [881] = {.lex_state = 72}, + [882] = {.lex_state = 156, .external_lex_state = 13}, + [883] = {.lex_state = 156, .external_lex_state = 13}, + [884] = {.lex_state = 90}, + [885] = {.lex_state = 156, .external_lex_state = 13}, + [886] = {.lex_state = 156, .external_lex_state = 13}, + [887] = {.lex_state = 156, .external_lex_state = 13}, + [888] = {.lex_state = 62}, + [889] = {.lex_state = 151, .external_lex_state = 16}, + [890] = {.lex_state = 154, .external_lex_state = 6}, + [891] = {.lex_state = 151, .external_lex_state = 16}, + [892] = {.lex_state = 151, .external_lex_state = 16}, + [893] = {.lex_state = 68}, + [894] = {.lex_state = 163, .external_lex_state = 2}, + [895] = {.lex_state = 68}, + [896] = {.lex_state = 171, .external_lex_state = 2}, + [897] = {.lex_state = 68}, + [898] = {.lex_state = 163, .external_lex_state = 2}, + [899] = {.lex_state = 156}, + [900] = {.lex_state = 158, .external_lex_state = 17}, + [901] = {.lex_state = 158, .external_lex_state = 17}, + [902] = {.lex_state = 158, .external_lex_state = 17}, + [903] = {.lex_state = 221, .external_lex_state = 16}, + [904] = {.lex_state = 158, .external_lex_state = 17}, + [905] = {.lex_state = 225}, + [906] = {.lex_state = 223, .external_lex_state = 16}, + [907] = {.lex_state = 62}, + [908] = {.lex_state = 151, .external_lex_state = 16}, + [909] = {.lex_state = 151, .external_lex_state = 16}, + [910] = {.lex_state = 151, .external_lex_state = 16}, + [911] = {.lex_state = 158, .external_lex_state = 17}, + [912] = {.lex_state = 225}, + [913] = {.lex_state = 223, .external_lex_state = 16}, + [914] = {.lex_state = 158, .external_lex_state = 17}, + [915] = {.lex_state = 225}, + [916] = {.lex_state = 223, .external_lex_state = 16}, + [917] = {.lex_state = 158, .external_lex_state = 17}, + [918] = {.lex_state = 158, .external_lex_state = 17}, + [919] = {.lex_state = 119}, + [920] = {.lex_state = 68}, + [921] = {.lex_state = 163, .external_lex_state = 2}, + [922] = {.lex_state = 68}, + [923] = {.lex_state = 163, .external_lex_state = 2}, + [924] = {.lex_state = 68}, + [925] = {.lex_state = 176, .external_lex_state = 19}, + [926] = {.lex_state = 72}, + [927] = {.lex_state = 158, .external_lex_state = 17}, + [928] = {.lex_state = 158, .external_lex_state = 17}, + [929] = {.lex_state = 158, .external_lex_state = 18}, + [930] = {.lex_state = 230, .external_lex_state = 17}, + [931] = {.lex_state = 230, .external_lex_state = 17}, + [932] = {.lex_state = 240, .external_lex_state = 18}, + [933] = {.lex_state = 240, .external_lex_state = 18}, + [934] = {.lex_state = 230, .external_lex_state = 17}, + [935] = {.lex_state = 230, .external_lex_state = 17}, + [936] = {.lex_state = 240, .external_lex_state = 18}, + [937] = {.lex_state = 68}, + [938] = {.lex_state = 230, .external_lex_state = 18}, + [939] = {.lex_state = 230, .external_lex_state = 18}, + [940] = {.lex_state = 158, .external_lex_state = 18}, + [941] = {.lex_state = 158, .external_lex_state = 18}, + [942] = {.lex_state = 171, .external_lex_state = 15}, + [943] = {.lex_state = 171, .external_lex_state = 15}, + [944] = {.lex_state = 232, .external_lex_state = 18}, + [945] = {.lex_state = 68}, + [946] = {.lex_state = 163, .external_lex_state = 26}, + [947] = {.lex_state = 232, .external_lex_state = 26}, + [948] = {.lex_state = 114, .external_lex_state = 9}, + [949] = {.lex_state = 165, .external_lex_state = 25}, + [950] = {.lex_state = 165, .external_lex_state = 6}, + [951] = {.lex_state = 165, .external_lex_state = 13}, + [952] = {.lex_state = 156}, + [953] = {.lex_state = 167, .external_lex_state = 17}, + [954] = {.lex_state = 119}, + [955] = {.lex_state = 171, .external_lex_state = 2}, + [956] = {.lex_state = 68}, + [957] = {.lex_state = 171, .external_lex_state = 2}, + [958] = {.lex_state = 72}, + [959] = {.lex_state = 167, .external_lex_state = 17}, + [960] = {.lex_state = 167, .external_lex_state = 17}, + [961] = {.lex_state = 232, .external_lex_state = 17}, + [962] = {.lex_state = 232, .external_lex_state = 17}, + [963] = {.lex_state = 232, .external_lex_state = 17}, + [964] = {.lex_state = 232, .external_lex_state = 17}, + [965] = {.lex_state = 232, .external_lex_state = 18}, + [966] = {.lex_state = 232, .external_lex_state = 18}, + [967] = {.lex_state = 167, .external_lex_state = 18}, + [968] = {.lex_state = 167, .external_lex_state = 18}, + [969] = {.lex_state = 110, .external_lex_state = 23}, + [970] = {.lex_state = 176, .external_lex_state = 19}, + [971] = {.lex_state = 176, .external_lex_state = 19}, + [972] = {.lex_state = 62}, + [973] = {.lex_state = 151, .external_lex_state = 16}, + [974] = {.lex_state = 154, .external_lex_state = 6}, + [975] = {.lex_state = 151, .external_lex_state = 16}, + [976] = {.lex_state = 151, .external_lex_state = 16}, + [977] = {.lex_state = 127, .external_lex_state = 4}, + [978] = {.lex_state = 176, .external_lex_state = 19}, + [979] = {.lex_state = 199, .external_lex_state = 5}, + [980] = {.lex_state = 199, .external_lex_state = 5}, + [981] = {.lex_state = 234, .external_lex_state = 7}, + [982] = {.lex_state = 199, .external_lex_state = 5}, + [983] = {.lex_state = 127, .external_lex_state = 4}, + [984] = {.lex_state = 199, .external_lex_state = 7}, + [985] = {.lex_state = 62, .external_lex_state = 13}, + [986] = {.lex_state = 62}, + [987] = {.lex_state = 203, .external_lex_state = 11}, + [988] = {.lex_state = 62, .external_lex_state = 13}, + [989] = {.lex_state = 62}, + [990] = {.lex_state = 72}, + [991] = {.lex_state = 236, .external_lex_state = 13}, + [992] = {.lex_state = 236, .external_lex_state = 13}, + [993] = {.lex_state = 90}, + [994] = {.lex_state = 236, .external_lex_state = 13}, + [995] = {.lex_state = 236, .external_lex_state = 13}, + [996] = {.lex_state = 236, .external_lex_state = 13}, + [997] = {.lex_state = 62}, + [998] = {.lex_state = 151, .external_lex_state = 16}, + [999] = {.lex_state = 154, .external_lex_state = 6}, + [1000] = {.lex_state = 151, .external_lex_state = 16}, + [1001] = {.lex_state = 151, .external_lex_state = 16}, + [1002] = {.lex_state = 68}, + [1003] = {.lex_state = 163, .external_lex_state = 2}, + [1004] = {.lex_state = 68}, + [1005] = {.lex_state = 171, .external_lex_state = 2}, + [1006] = {.lex_state = 68}, + [1007] = {.lex_state = 163, .external_lex_state = 2}, + [1008] = {.lex_state = 125, .external_lex_state = 8}, + [1009] = {.lex_state = 163}, + [1010] = {.lex_state = 125, .external_lex_state = 21}, + [1011] = {.lex_state = 110, .external_lex_state = 21}, + [1012] = {.lex_state = 125, .external_lex_state = 21}, + [1013] = {.lex_state = 221, .external_lex_state = 16}, + [1014] = {.lex_state = 125, .external_lex_state = 21}, + [1015] = {.lex_state = 225}, + [1016] = {.lex_state = 223, .external_lex_state = 16}, + [1017] = {.lex_state = 62}, + [1018] = {.lex_state = 151, .external_lex_state = 16}, + [1019] = {.lex_state = 151, .external_lex_state = 16}, + [1020] = {.lex_state = 151, .external_lex_state = 16}, + [1021] = {.lex_state = 125, .external_lex_state = 21}, + [1022] = {.lex_state = 225}, + [1023] = {.lex_state = 223, .external_lex_state = 16}, + [1024] = {.lex_state = 125, .external_lex_state = 21}, + [1025] = {.lex_state = 225}, + [1026] = {.lex_state = 223, .external_lex_state = 16}, + [1027] = {.lex_state = 125, .external_lex_state = 21}, + [1028] = {.lex_state = 125, .external_lex_state = 21}, + [1029] = {.lex_state = 116, .external_lex_state = 10}, + [1030] = {.lex_state = 72}, + [1031] = {.lex_state = 116, .external_lex_state = 4}, + [1032] = {.lex_state = 127, .external_lex_state = 4}, + [1033] = {.lex_state = 56, .external_lex_state = 2}, + [1034] = {.lex_state = 234, .external_lex_state = 7}, + [1035] = {.lex_state = 56, .external_lex_state = 2}, + [1036] = {.lex_state = 127, .external_lex_state = 4}, + [1037] = {.lex_state = 72}, + [1038] = {.lex_state = 56, .external_lex_state = 2}, + [1039] = {.lex_state = 127, .external_lex_state = 4}, + [1040] = {.lex_state = 72}, + [1041] = {.lex_state = 56, .external_lex_state = 2}, + [1042] = {.lex_state = 72}, + [1043] = {.lex_state = 72}, + [1044] = {.lex_state = 127, .external_lex_state = 4}, + [1045] = {.lex_state = 242, .external_lex_state = 13}, + [1046] = {.lex_state = 242, .external_lex_state = 13}, + [1047] = {.lex_state = 72}, + [1048] = {.lex_state = 242}, + [1049] = {.lex_state = 72}, + [1050] = {.lex_state = 72}, + [1051] = {.lex_state = 127, .external_lex_state = 4}, + [1052] = {.lex_state = 72}, + [1053] = {.lex_state = 72}, + [1054] = {.lex_state = 72}, + [1055] = {.lex_state = 116, .external_lex_state = 10}, + [1056] = {.lex_state = 205, .external_lex_state = 24}, + [1057] = {.lex_state = 205, .external_lex_state = 24}, + [1058] = {.lex_state = 205, .external_lex_state = 16}, + [1059] = {.lex_state = 223, .external_lex_state = 16}, + [1060] = {.lex_state = 116, .external_lex_state = 10}, + [1061] = {.lex_state = 221, .external_lex_state = 16}, + [1062] = {.lex_state = 116, .external_lex_state = 10}, + [1063] = {.lex_state = 225}, + [1064] = {.lex_state = 223, .external_lex_state = 16}, + [1065] = {.lex_state = 116, .external_lex_state = 10}, + [1066] = {.lex_state = 225}, + [1067] = {.lex_state = 223, .external_lex_state = 16}, + [1068] = {.lex_state = 225}, + [1069] = {.lex_state = 223, .external_lex_state = 16}, + [1070] = {.lex_state = 223, .external_lex_state = 16}, + [1071] = {.lex_state = 116, .external_lex_state = 10}, + [1072] = {.lex_state = 223, .external_lex_state = 16}, + [1073] = {.lex_state = 110, .external_lex_state = 23}, + [1074] = {.lex_state = 205, .external_lex_state = 22}, + [1075] = {.lex_state = 125, .external_lex_state = 23}, + [1076] = {.lex_state = 205, .external_lex_state = 22}, + [1077] = {.lex_state = 72}, + [1078] = {.lex_state = 245, .external_lex_state = 10}, + [1079] = {.lex_state = 245, .external_lex_state = 10}, + [1080] = {.lex_state = 127, .external_lex_state = 4}, + [1081] = {.lex_state = 125, .external_lex_state = 21}, + [1082] = {.lex_state = 209, .external_lex_state = 7}, + [1083] = {.lex_state = 119}, + [1084] = {.lex_state = 56}, + [1085] = {.lex_state = 72}, + [1086] = {.lex_state = 56}, + [1087] = {.lex_state = 72}, + [1088] = {.lex_state = 72}, + [1089] = {.lex_state = 209, .external_lex_state = 23}, + [1090] = {.lex_state = 121, .external_lex_state = 14}, + [1091] = {.lex_state = 121, .external_lex_state = 14}, + [1092] = {.lex_state = 121, .external_lex_state = 14}, + [1093] = {.lex_state = 121, .external_lex_state = 10}, + [1094] = {.lex_state = 125, .external_lex_state = 23}, + [1095] = {.lex_state = 209, .external_lex_state = 5}, + [1096] = {.lex_state = 209, .external_lex_state = 5}, + [1097] = {.lex_state = 209, .external_lex_state = 5}, + [1098] = {.lex_state = 127, .external_lex_state = 4}, + [1099] = {.lex_state = 209, .external_lex_state = 7}, + [1100] = {.lex_state = 163, .external_lex_state = 2}, + [1101] = {.lex_state = 163}, + [1102] = {.lex_state = 211, .external_lex_state = 13}, + [1103] = {.lex_state = 129, .external_lex_state = 11}, + [1104] = {.lex_state = 205, .external_lex_state = 24}, + [1105] = {.lex_state = 205, .external_lex_state = 24}, + [1106] = {.lex_state = 205, .external_lex_state = 16}, + [1107] = {.lex_state = 223, .external_lex_state = 16}, + [1108] = {.lex_state = 129, .external_lex_state = 11}, + [1109] = {.lex_state = 221, .external_lex_state = 16}, + [1110] = {.lex_state = 129, .external_lex_state = 11}, + [1111] = {.lex_state = 225}, + [1112] = {.lex_state = 223, .external_lex_state = 16}, + [1113] = {.lex_state = 129, .external_lex_state = 11}, + [1114] = {.lex_state = 225}, + [1115] = {.lex_state = 223, .external_lex_state = 16}, + [1116] = {.lex_state = 225}, + [1117] = {.lex_state = 223, .external_lex_state = 16}, + [1118] = {.lex_state = 223, .external_lex_state = 16}, + [1119] = {.lex_state = 129, .external_lex_state = 11}, + [1120] = {.lex_state = 223, .external_lex_state = 16}, + [1121] = {.lex_state = 72}, + [1122] = {.lex_state = 199, .external_lex_state = 27}, + [1123] = {.lex_state = 90}, + [1124] = {.lex_state = 97}, + [1125] = {.lex_state = 199, .external_lex_state = 27}, + [1126] = {.lex_state = 97, .external_lex_state = 6}, + [1127] = {.lex_state = 56, .external_lex_state = 2}, + [1128] = {.lex_state = 56, .external_lex_state = 2}, + [1129] = {.lex_state = 56, .external_lex_state = 2}, + [1130] = {.lex_state = 234, .external_lex_state = 23}, + [1131] = {.lex_state = 234, .external_lex_state = 23}, + [1132] = {.lex_state = 199, .external_lex_state = 27}, + [1133] = {.lex_state = 199, .external_lex_state = 27}, + [1134] = {.lex_state = 234, .external_lex_state = 23}, + [1135] = {.lex_state = 199, .external_lex_state = 23}, + [1136] = {.lex_state = 218, .external_lex_state = 13}, + [1137] = {.lex_state = 205, .external_lex_state = 24}, + [1138] = {.lex_state = 205, .external_lex_state = 24}, + [1139] = {.lex_state = 205, .external_lex_state = 16}, + [1140] = {.lex_state = 223, .external_lex_state = 16}, + [1141] = {.lex_state = 218, .external_lex_state = 13}, + [1142] = {.lex_state = 221, .external_lex_state = 16}, + [1143] = {.lex_state = 218, .external_lex_state = 13}, + [1144] = {.lex_state = 225}, + [1145] = {.lex_state = 223, .external_lex_state = 16}, + [1146] = {.lex_state = 218, .external_lex_state = 13}, + [1147] = {.lex_state = 225}, + [1148] = {.lex_state = 223, .external_lex_state = 16}, + [1149] = {.lex_state = 225}, + [1150] = {.lex_state = 223, .external_lex_state = 16}, + [1151] = {.lex_state = 223, .external_lex_state = 16}, + [1152] = {.lex_state = 218, .external_lex_state = 13}, + [1153] = {.lex_state = 223, .external_lex_state = 16}, + [1154] = {.lex_state = 121, .external_lex_state = 3}, + [1155] = {.lex_state = 163}, + [1156] = {.lex_state = 121, .external_lex_state = 14}, + [1157] = {.lex_state = 205, .external_lex_state = 24}, + [1158] = {.lex_state = 205, .external_lex_state = 24}, + [1159] = {.lex_state = 205, .external_lex_state = 16}, + [1160] = {.lex_state = 223, .external_lex_state = 16}, + [1161] = {.lex_state = 121, .external_lex_state = 14}, + [1162] = {.lex_state = 221, .external_lex_state = 16}, + [1163] = {.lex_state = 121, .external_lex_state = 14}, + [1164] = {.lex_state = 225}, + [1165] = {.lex_state = 223, .external_lex_state = 16}, + [1166] = {.lex_state = 121, .external_lex_state = 14}, + [1167] = {.lex_state = 225}, + [1168] = {.lex_state = 223, .external_lex_state = 16}, + [1169] = {.lex_state = 225}, + [1170] = {.lex_state = 223, .external_lex_state = 16}, + [1171] = {.lex_state = 223, .external_lex_state = 16}, + [1172] = {.lex_state = 121, .external_lex_state = 14}, + [1173] = {.lex_state = 223, .external_lex_state = 16}, + [1174] = {.lex_state = 121, .external_lex_state = 10}, + [1175] = {.lex_state = 205, .external_lex_state = 24}, + [1176] = {.lex_state = 205, .external_lex_state = 24}, + [1177] = {.lex_state = 205, .external_lex_state = 16}, + [1178] = {.lex_state = 223, .external_lex_state = 16}, + [1179] = {.lex_state = 121, .external_lex_state = 10}, + [1180] = {.lex_state = 221, .external_lex_state = 16}, + [1181] = {.lex_state = 121, .external_lex_state = 10}, + [1182] = {.lex_state = 225}, + [1183] = {.lex_state = 223, .external_lex_state = 16}, + [1184] = {.lex_state = 121, .external_lex_state = 10}, + [1185] = {.lex_state = 225}, + [1186] = {.lex_state = 223, .external_lex_state = 16}, + [1187] = {.lex_state = 225}, + [1188] = {.lex_state = 223, .external_lex_state = 16}, + [1189] = {.lex_state = 223, .external_lex_state = 16}, + [1190] = {.lex_state = 121, .external_lex_state = 10}, + [1191] = {.lex_state = 223, .external_lex_state = 16}, + [1192] = {.lex_state = 163, .external_lex_state = 15}, + [1193] = {.lex_state = 205, .external_lex_state = 24}, + [1194] = {.lex_state = 205, .external_lex_state = 24}, + [1195] = {.lex_state = 205, .external_lex_state = 16}, + [1196] = {.lex_state = 223, .external_lex_state = 16}, + [1197] = {.lex_state = 163, .external_lex_state = 15}, + [1198] = {.lex_state = 221, .external_lex_state = 16}, + [1199] = {.lex_state = 163, .external_lex_state = 15}, + [1200] = {.lex_state = 225}, + [1201] = {.lex_state = 223, .external_lex_state = 16}, + [1202] = {.lex_state = 163, .external_lex_state = 15}, + [1203] = {.lex_state = 225}, + [1204] = {.lex_state = 223, .external_lex_state = 16}, + [1205] = {.lex_state = 225}, + [1206] = {.lex_state = 223, .external_lex_state = 16}, + [1207] = {.lex_state = 223, .external_lex_state = 16}, + [1208] = {.lex_state = 163, .external_lex_state = 15}, + [1209] = {.lex_state = 223, .external_lex_state = 16}, + [1210] = {.lex_state = 90, .external_lex_state = 13}, + [1211] = {.lex_state = 205, .external_lex_state = 24}, + [1212] = {.lex_state = 205, .external_lex_state = 24}, + [1213] = {.lex_state = 205, .external_lex_state = 16}, + [1214] = {.lex_state = 223, .external_lex_state = 16}, + [1215] = {.lex_state = 90, .external_lex_state = 13}, + [1216] = {.lex_state = 221, .external_lex_state = 16}, + [1217] = {.lex_state = 90, .external_lex_state = 13}, + [1218] = {.lex_state = 225}, + [1219] = {.lex_state = 223, .external_lex_state = 16}, + [1220] = {.lex_state = 90, .external_lex_state = 13}, + [1221] = {.lex_state = 225}, + [1222] = {.lex_state = 223, .external_lex_state = 16}, + [1223] = {.lex_state = 225}, + [1224] = {.lex_state = 223, .external_lex_state = 16}, + [1225] = {.lex_state = 223, .external_lex_state = 16}, + [1226] = {.lex_state = 90, .external_lex_state = 13}, + [1227] = {.lex_state = 223, .external_lex_state = 16}, + [1228] = {.lex_state = 203, .external_lex_state = 12}, + [1229] = {.lex_state = 151, .external_lex_state = 24}, + [1230] = {.lex_state = 203, .external_lex_state = 12}, + [1231] = {.lex_state = 151, .external_lex_state = 24}, + [1232] = {.lex_state = 129, .external_lex_state = 12}, + [1233] = {.lex_state = 72}, + [1234] = {.lex_state = 112, .external_lex_state = 5}, + [1235] = {.lex_state = 205, .external_lex_state = 24}, + [1236] = {.lex_state = 205, .external_lex_state = 24}, + [1237] = {.lex_state = 90}, + [1238] = {.lex_state = 205, .external_lex_state = 24}, + [1239] = {.lex_state = 205, .external_lex_state = 24}, + [1240] = {.lex_state = 205, .external_lex_state = 24}, + [1241] = {.lex_state = 112, .external_lex_state = 5}, + [1242] = {.lex_state = 62}, + [1243] = {.lex_state = 151, .external_lex_state = 16}, + [1244] = {.lex_state = 154, .external_lex_state = 6}, + [1245] = {.lex_state = 151, .external_lex_state = 16}, + [1246] = {.lex_state = 151, .external_lex_state = 16}, + [1247] = {.lex_state = 68}, + [1248] = {.lex_state = 163, .external_lex_state = 2}, + [1249] = {.lex_state = 68}, + [1250] = {.lex_state = 171, .external_lex_state = 2}, + [1251] = {.lex_state = 68}, + [1252] = {.lex_state = 163, .external_lex_state = 2}, + [1253] = {.lex_state = 223, .external_lex_state = 24}, + [1254] = {.lex_state = 223, .external_lex_state = 24}, + [1255] = {.lex_state = 223, .external_lex_state = 24}, + [1256] = {.lex_state = 221, .external_lex_state = 16}, + [1257] = {.lex_state = 223, .external_lex_state = 24}, + [1258] = {.lex_state = 225}, + [1259] = {.lex_state = 223, .external_lex_state = 16}, + [1260] = {.lex_state = 62}, + [1261] = {.lex_state = 151, .external_lex_state = 16}, + [1262] = {.lex_state = 151, .external_lex_state = 16}, + [1263] = {.lex_state = 151, .external_lex_state = 16}, + [1264] = {.lex_state = 223, .external_lex_state = 24}, + [1265] = {.lex_state = 225}, + [1266] = {.lex_state = 223, .external_lex_state = 16}, + [1267] = {.lex_state = 223, .external_lex_state = 24}, + [1268] = {.lex_state = 225}, + [1269] = {.lex_state = 223, .external_lex_state = 16}, + [1270] = {.lex_state = 112, .external_lex_state = 5}, + [1271] = {.lex_state = 223, .external_lex_state = 16}, + [1272] = {.lex_state = 223, .external_lex_state = 24}, + [1273] = {.lex_state = 223, .external_lex_state = 24}, + [1274] = {.lex_state = 205, .external_lex_state = 24}, + [1275] = {.lex_state = 205, .external_lex_state = 24}, + [1276] = {.lex_state = 205, .external_lex_state = 16}, + [1277] = {.lex_state = 223, .external_lex_state = 16}, + [1278] = {.lex_state = 112, .external_lex_state = 5}, + [1279] = {.lex_state = 223, .external_lex_state = 16}, + [1280] = {.lex_state = 112, .external_lex_state = 5}, + [1281] = {.lex_state = 223, .external_lex_state = 16}, + [1282] = {.lex_state = 112, .external_lex_state = 5}, + [1283] = {.lex_state = 223, .external_lex_state = 16}, + [1284] = {.lex_state = 112, .external_lex_state = 5}, + [1285] = {.lex_state = 223, .external_lex_state = 16}, + [1286] = {.lex_state = 163, .external_lex_state = 15}, + [1287] = {.lex_state = 116, .external_lex_state = 4}, + [1288] = {.lex_state = 56, .external_lex_state = 2}, + [1289] = {.lex_state = 68}, + [1290] = {.lex_state = 240, .external_lex_state = 18}, + [1291] = {.lex_state = 56, .external_lex_state = 2}, + [1292] = {.lex_state = 68}, + [1293] = {.lex_state = 230, .external_lex_state = 18}, + [1294] = {.lex_state = 68}, + [1295] = {.lex_state = 72}, + [1296] = {.lex_state = 56, .external_lex_state = 2}, + [1297] = {.lex_state = 72}, + [1298] = {.lex_state = 72}, + [1299] = {.lex_state = 116, .external_lex_state = 4}, + [1300] = {.lex_state = 72}, + [1301] = {.lex_state = 116, .external_lex_state = 4}, + [1302] = {.lex_state = 119}, + [1303] = {.lex_state = 163, .external_lex_state = 26}, + [1304] = {.lex_state = 205, .external_lex_state = 22}, + [1305] = {.lex_state = 56}, + [1306] = {.lex_state = 72}, + [1307] = {.lex_state = 68}, + [1308] = {.lex_state = 68}, + [1309] = {.lex_state = 207, .external_lex_state = 2}, + [1310] = {.lex_state = 56}, + [1311] = {.lex_state = 72}, + [1312] = {.lex_state = 56, .external_lex_state = 20}, + [1313] = {.lex_state = 72}, + [1314] = {.lex_state = 230, .external_lex_state = 26}, + [1315] = {.lex_state = 156, .external_lex_state = 6}, + [1316] = {.lex_state = 163}, + [1317] = {.lex_state = 156, .external_lex_state = 25}, + [1318] = {.lex_state = 156, .external_lex_state = 25}, + [1319] = {.lex_state = 156, .external_lex_state = 25}, + [1320] = {.lex_state = 156, .external_lex_state = 25}, + [1321] = {.lex_state = 156, .external_lex_state = 25}, + [1322] = {.lex_state = 221, .external_lex_state = 16}, + [1323] = {.lex_state = 156, .external_lex_state = 25}, + [1324] = {.lex_state = 225}, + [1325] = {.lex_state = 223, .external_lex_state = 16}, + [1326] = {.lex_state = 62}, + [1327] = {.lex_state = 151, .external_lex_state = 16}, + [1328] = {.lex_state = 151, .external_lex_state = 16}, + [1329] = {.lex_state = 151, .external_lex_state = 16}, + [1330] = {.lex_state = 156, .external_lex_state = 25}, + [1331] = {.lex_state = 225}, + [1332] = {.lex_state = 223, .external_lex_state = 16}, + [1333] = {.lex_state = 156, .external_lex_state = 25}, + [1334] = {.lex_state = 225}, + [1335] = {.lex_state = 223, .external_lex_state = 16}, + [1336] = {.lex_state = 156, .external_lex_state = 25}, + [1337] = {.lex_state = 156, .external_lex_state = 25}, + [1338] = {.lex_state = 156, .external_lex_state = 13}, + [1339] = {.lex_state = 156, .external_lex_state = 13}, + [1340] = {.lex_state = 156, .external_lex_state = 13}, + [1341] = {.lex_state = 221, .external_lex_state = 16}, + [1342] = {.lex_state = 156, .external_lex_state = 13}, + [1343] = {.lex_state = 225}, + [1344] = {.lex_state = 223, .external_lex_state = 16}, + [1345] = {.lex_state = 62}, + [1346] = {.lex_state = 151, .external_lex_state = 16}, + [1347] = {.lex_state = 151, .external_lex_state = 16}, + [1348] = {.lex_state = 151, .external_lex_state = 16}, + [1349] = {.lex_state = 156, .external_lex_state = 13}, + [1350] = {.lex_state = 225}, + [1351] = {.lex_state = 223, .external_lex_state = 16}, + [1352] = {.lex_state = 156, .external_lex_state = 13}, + [1353] = {.lex_state = 225}, + [1354] = {.lex_state = 223, .external_lex_state = 16}, + [1355] = {.lex_state = 156, .external_lex_state = 13}, + [1356] = {.lex_state = 156, .external_lex_state = 13}, + [1357] = {.lex_state = 158, .external_lex_state = 17}, + [1358] = {.lex_state = 205, .external_lex_state = 24}, + [1359] = {.lex_state = 205, .external_lex_state = 24}, + [1360] = {.lex_state = 205, .external_lex_state = 16}, + [1361] = {.lex_state = 223, .external_lex_state = 16}, + [1362] = {.lex_state = 158, .external_lex_state = 17}, + [1363] = {.lex_state = 221, .external_lex_state = 16}, + [1364] = {.lex_state = 158, .external_lex_state = 17}, + [1365] = {.lex_state = 225}, + [1366] = {.lex_state = 223, .external_lex_state = 16}, + [1367] = {.lex_state = 158, .external_lex_state = 17}, + [1368] = {.lex_state = 225}, + [1369] = {.lex_state = 223, .external_lex_state = 16}, + [1370] = {.lex_state = 225}, + [1371] = {.lex_state = 223, .external_lex_state = 16}, + [1372] = {.lex_state = 223, .external_lex_state = 16}, + [1373] = {.lex_state = 158, .external_lex_state = 17}, + [1374] = {.lex_state = 223, .external_lex_state = 16}, + [1375] = {.lex_state = 163, .external_lex_state = 26}, + [1376] = {.lex_state = 68}, + [1377] = {.lex_state = 230, .external_lex_state = 17}, + [1378] = {.lex_state = 230, .external_lex_state = 17}, + [1379] = {.lex_state = 240, .external_lex_state = 18}, + [1380] = {.lex_state = 230, .external_lex_state = 17}, + [1381] = {.lex_state = 68}, + [1382] = {.lex_state = 230, .external_lex_state = 18}, + [1383] = {.lex_state = 171, .external_lex_state = 15}, + [1384] = {.lex_state = 232, .external_lex_state = 18}, + [1385] = {.lex_state = 119}, + [1386] = {.lex_state = 56}, + [1387] = {.lex_state = 72}, + [1388] = {.lex_state = 56}, + [1389] = {.lex_state = 72}, + [1390] = {.lex_state = 72}, + [1391] = {.lex_state = 232, .external_lex_state = 26}, + [1392] = {.lex_state = 165, .external_lex_state = 25}, + [1393] = {.lex_state = 165, .external_lex_state = 25}, + [1394] = {.lex_state = 165, .external_lex_state = 25}, + [1395] = {.lex_state = 165, .external_lex_state = 13}, + [1396] = {.lex_state = 163, .external_lex_state = 26}, + [1397] = {.lex_state = 232, .external_lex_state = 17}, + [1398] = {.lex_state = 232, .external_lex_state = 17}, + [1399] = {.lex_state = 232, .external_lex_state = 17}, + [1400] = {.lex_state = 232, .external_lex_state = 18}, + [1401] = {.lex_state = 127, .external_lex_state = 4}, + [1402] = {.lex_state = 221, .external_lex_state = 16}, + [1403] = {.lex_state = 176, .external_lex_state = 19}, + [1404] = {.lex_state = 225}, + [1405] = {.lex_state = 223, .external_lex_state = 16}, + [1406] = {.lex_state = 62}, + [1407] = {.lex_state = 151, .external_lex_state = 16}, + [1408] = {.lex_state = 151, .external_lex_state = 16}, + [1409] = {.lex_state = 151, .external_lex_state = 16}, + [1410] = {.lex_state = 176, .external_lex_state = 19}, + [1411] = {.lex_state = 225}, + [1412] = {.lex_state = 223, .external_lex_state = 16}, + [1413] = {.lex_state = 176, .external_lex_state = 19}, + [1414] = {.lex_state = 225}, + [1415] = {.lex_state = 223, .external_lex_state = 16}, + [1416] = {.lex_state = 199, .external_lex_state = 5}, + [1417] = {.lex_state = 127, .external_lex_state = 4}, + [1418] = {.lex_state = 62}, + [1419] = {.lex_state = 62}, + [1420] = {.lex_state = 236, .external_lex_state = 13}, + [1421] = {.lex_state = 236, .external_lex_state = 13}, + [1422] = {.lex_state = 236, .external_lex_state = 13}, + [1423] = {.lex_state = 221, .external_lex_state = 16}, + [1424] = {.lex_state = 236, .external_lex_state = 13}, + [1425] = {.lex_state = 225}, + [1426] = {.lex_state = 223, .external_lex_state = 16}, + [1427] = {.lex_state = 62}, + [1428] = {.lex_state = 151, .external_lex_state = 16}, + [1429] = {.lex_state = 151, .external_lex_state = 16}, + [1430] = {.lex_state = 151, .external_lex_state = 16}, + [1431] = {.lex_state = 236, .external_lex_state = 13}, + [1432] = {.lex_state = 225}, + [1433] = {.lex_state = 223, .external_lex_state = 16}, + [1434] = {.lex_state = 236, .external_lex_state = 13}, + [1435] = {.lex_state = 225}, + [1436] = {.lex_state = 223, .external_lex_state = 16}, + [1437] = {.lex_state = 236, .external_lex_state = 13}, + [1438] = {.lex_state = 236, .external_lex_state = 13}, + [1439] = {.lex_state = 125, .external_lex_state = 21}, + [1440] = {.lex_state = 205, .external_lex_state = 24}, + [1441] = {.lex_state = 205, .external_lex_state = 24}, + [1442] = {.lex_state = 205, .external_lex_state = 16}, + [1443] = {.lex_state = 223, .external_lex_state = 16}, + [1444] = {.lex_state = 125, .external_lex_state = 21}, + [1445] = {.lex_state = 221, .external_lex_state = 16}, + [1446] = {.lex_state = 125, .external_lex_state = 21}, + [1447] = {.lex_state = 225}, + [1448] = {.lex_state = 223, .external_lex_state = 16}, + [1449] = {.lex_state = 125, .external_lex_state = 21}, + [1450] = {.lex_state = 225}, + [1451] = {.lex_state = 223, .external_lex_state = 16}, + [1452] = {.lex_state = 225}, + [1453] = {.lex_state = 223, .external_lex_state = 16}, + [1454] = {.lex_state = 223, .external_lex_state = 16}, + [1455] = {.lex_state = 125, .external_lex_state = 21}, + [1456] = {.lex_state = 223, .external_lex_state = 16}, + [1457] = {.lex_state = 116, .external_lex_state = 10}, + [1458] = {.lex_state = 127, .external_lex_state = 4}, + [1459] = {.lex_state = 127, .external_lex_state = 4}, + [1460] = {.lex_state = 56, .external_lex_state = 2}, + [1461] = {.lex_state = 56, .external_lex_state = 2}, + [1462] = {.lex_state = 127, .external_lex_state = 4}, + [1463] = {.lex_state = 72}, + [1464] = {.lex_state = 72}, + [1465] = {.lex_state = 173, .external_lex_state = 2}, + [1466] = {.lex_state = 242}, + [1467] = {.lex_state = 242, .external_lex_state = 13}, + [1468] = {.lex_state = 173, .external_lex_state = 2}, + [1469] = {.lex_state = 242}, + [1470] = {.lex_state = 127, .external_lex_state = 4}, + [1471] = {.lex_state = 72}, + [1472] = {.lex_state = 72}, + [1473] = {.lex_state = 127, .external_lex_state = 4}, + [1474] = {.lex_state = 72}, + [1475] = {.lex_state = 127, .external_lex_state = 4}, + [1476] = {.lex_state = 72}, + [1477] = {.lex_state = 127, .external_lex_state = 4}, + [1478] = {.lex_state = 72}, + [1479] = {.lex_state = 116, .external_lex_state = 10}, + [1480] = {.lex_state = 116, .external_lex_state = 10}, + [1481] = {.lex_state = 116, .external_lex_state = 10}, + [1482] = {.lex_state = 223, .external_lex_state = 16}, + [1483] = {.lex_state = 205, .external_lex_state = 24}, + [1484] = {.lex_state = 205, .external_lex_state = 24}, + [1485] = {.lex_state = 205, .external_lex_state = 16}, + [1486] = {.lex_state = 223, .external_lex_state = 16}, + [1487] = {.lex_state = 116, .external_lex_state = 10}, + [1488] = {.lex_state = 223, .external_lex_state = 16}, + [1489] = {.lex_state = 116, .external_lex_state = 10}, + [1490] = {.lex_state = 223, .external_lex_state = 16}, + [1491] = {.lex_state = 116, .external_lex_state = 10}, + [1492] = {.lex_state = 223, .external_lex_state = 16}, + [1493] = {.lex_state = 116, .external_lex_state = 10}, + [1494] = {.lex_state = 223, .external_lex_state = 16}, + [1495] = {.lex_state = 127, .external_lex_state = 4}, + [1496] = {.lex_state = 245, .external_lex_state = 10}, + [1497] = {.lex_state = 245, .external_lex_state = 10}, + [1498] = {.lex_state = 127, .external_lex_state = 4}, + [1499] = {.lex_state = 245, .external_lex_state = 10}, + [1500] = {.lex_state = 125, .external_lex_state = 21}, + [1501] = {.lex_state = 125, .external_lex_state = 23}, + [1502] = {.lex_state = 72}, + [1503] = {.lex_state = 127, .external_lex_state = 10}, + [1504] = {.lex_state = 127, .external_lex_state = 10}, + [1505] = {.lex_state = 72}, + [1506] = {.lex_state = 209, .external_lex_state = 27}, + [1507] = {.lex_state = 209, .external_lex_state = 27}, + [1508] = {.lex_state = 209, .external_lex_state = 27}, + [1509] = {.lex_state = 209, .external_lex_state = 27}, + [1510] = {.lex_state = 209, .external_lex_state = 23}, + [1511] = {.lex_state = 209, .external_lex_state = 5}, + [1512] = {.lex_state = 163, .external_lex_state = 2}, + [1513] = {.lex_state = 129, .external_lex_state = 11}, + [1514] = {.lex_state = 129, .external_lex_state = 11}, + [1515] = {.lex_state = 129, .external_lex_state = 11}, + [1516] = {.lex_state = 223, .external_lex_state = 16}, + [1517] = {.lex_state = 205, .external_lex_state = 24}, + [1518] = {.lex_state = 205, .external_lex_state = 24}, + [1519] = {.lex_state = 205, .external_lex_state = 16}, + [1520] = {.lex_state = 223, .external_lex_state = 16}, + [1521] = {.lex_state = 129, .external_lex_state = 11}, + [1522] = {.lex_state = 223, .external_lex_state = 16}, + [1523] = {.lex_state = 129, .external_lex_state = 11}, + [1524] = {.lex_state = 223, .external_lex_state = 16}, + [1525] = {.lex_state = 129, .external_lex_state = 11}, + [1526] = {.lex_state = 223, .external_lex_state = 16}, + [1527] = {.lex_state = 129, .external_lex_state = 11}, + [1528] = {.lex_state = 223, .external_lex_state = 16}, + [1529] = {.lex_state = 199, .external_lex_state = 27}, + [1530] = {.lex_state = 199, .external_lex_state = 27}, + [1531] = {.lex_state = 234, .external_lex_state = 23}, + [1532] = {.lex_state = 72}, + [1533] = {.lex_state = 199, .external_lex_state = 27}, + [1534] = {.lex_state = 234, .external_lex_state = 27}, + [1535] = {.lex_state = 90}, + [1536] = {.lex_state = 234, .external_lex_state = 27}, + [1537] = {.lex_state = 234, .external_lex_state = 27}, + [1538] = {.lex_state = 234, .external_lex_state = 27}, + [1539] = {.lex_state = 62}, + [1540] = {.lex_state = 151, .external_lex_state = 16}, + [1541] = {.lex_state = 154, .external_lex_state = 6}, + [1542] = {.lex_state = 151, .external_lex_state = 16}, + [1543] = {.lex_state = 151, .external_lex_state = 16}, + [1544] = {.lex_state = 68}, + [1545] = {.lex_state = 163, .external_lex_state = 2}, + [1546] = {.lex_state = 68}, + [1547] = {.lex_state = 171, .external_lex_state = 2}, + [1548] = {.lex_state = 68}, + [1549] = {.lex_state = 163, .external_lex_state = 2}, + [1550] = {.lex_state = 218, .external_lex_state = 13}, + [1551] = {.lex_state = 218, .external_lex_state = 13}, + [1552] = {.lex_state = 218, .external_lex_state = 13}, + [1553] = {.lex_state = 223, .external_lex_state = 16}, + [1554] = {.lex_state = 205, .external_lex_state = 24}, + [1555] = {.lex_state = 205, .external_lex_state = 24}, + [1556] = {.lex_state = 205, .external_lex_state = 16}, + [1557] = {.lex_state = 223, .external_lex_state = 16}, + [1558] = {.lex_state = 218, .external_lex_state = 13}, + [1559] = {.lex_state = 223, .external_lex_state = 16}, + [1560] = {.lex_state = 218, .external_lex_state = 13}, + [1561] = {.lex_state = 223, .external_lex_state = 16}, + [1562] = {.lex_state = 218, .external_lex_state = 13}, + [1563] = {.lex_state = 223, .external_lex_state = 16}, + [1564] = {.lex_state = 218, .external_lex_state = 13}, + [1565] = {.lex_state = 223, .external_lex_state = 16}, + [1566] = {.lex_state = 121, .external_lex_state = 3}, + [1567] = {.lex_state = 121, .external_lex_state = 14}, + [1568] = {.lex_state = 121, .external_lex_state = 14}, + [1569] = {.lex_state = 121, .external_lex_state = 14}, + [1570] = {.lex_state = 223, .external_lex_state = 16}, + [1571] = {.lex_state = 205, .external_lex_state = 24}, + [1572] = {.lex_state = 205, .external_lex_state = 24}, + [1573] = {.lex_state = 205, .external_lex_state = 16}, + [1574] = {.lex_state = 223, .external_lex_state = 16}, + [1575] = {.lex_state = 121, .external_lex_state = 14}, + [1576] = {.lex_state = 223, .external_lex_state = 16}, + [1577] = {.lex_state = 121, .external_lex_state = 14}, + [1578] = {.lex_state = 223, .external_lex_state = 16}, + [1579] = {.lex_state = 121, .external_lex_state = 14}, + [1580] = {.lex_state = 223, .external_lex_state = 16}, + [1581] = {.lex_state = 121, .external_lex_state = 14}, + [1582] = {.lex_state = 223, .external_lex_state = 16}, + [1583] = {.lex_state = 121, .external_lex_state = 10}, + [1584] = {.lex_state = 121, .external_lex_state = 10}, + [1585] = {.lex_state = 121, .external_lex_state = 10}, + [1586] = {.lex_state = 223, .external_lex_state = 16}, + [1587] = {.lex_state = 205, .external_lex_state = 24}, + [1588] = {.lex_state = 205, .external_lex_state = 24}, + [1589] = {.lex_state = 205, .external_lex_state = 16}, + [1590] = {.lex_state = 223, .external_lex_state = 16}, + [1591] = {.lex_state = 121, .external_lex_state = 10}, + [1592] = {.lex_state = 223, .external_lex_state = 16}, + [1593] = {.lex_state = 121, .external_lex_state = 10}, + [1594] = {.lex_state = 223, .external_lex_state = 16}, + [1595] = {.lex_state = 121, .external_lex_state = 10}, + [1596] = {.lex_state = 223, .external_lex_state = 16}, + [1597] = {.lex_state = 121, .external_lex_state = 10}, + [1598] = {.lex_state = 223, .external_lex_state = 16}, + [1599] = {.lex_state = 163, .external_lex_state = 15}, + [1600] = {.lex_state = 163, .external_lex_state = 15}, + [1601] = {.lex_state = 163, .external_lex_state = 15}, + [1602] = {.lex_state = 223, .external_lex_state = 16}, + [1603] = {.lex_state = 205, .external_lex_state = 24}, + [1604] = {.lex_state = 205, .external_lex_state = 24}, + [1605] = {.lex_state = 205, .external_lex_state = 16}, + [1606] = {.lex_state = 223, .external_lex_state = 16}, + [1607] = {.lex_state = 163, .external_lex_state = 15}, + [1608] = {.lex_state = 223, .external_lex_state = 16}, + [1609] = {.lex_state = 163, .external_lex_state = 15}, + [1610] = {.lex_state = 223, .external_lex_state = 16}, + [1611] = {.lex_state = 163, .external_lex_state = 15}, + [1612] = {.lex_state = 223, .external_lex_state = 16}, + [1613] = {.lex_state = 163, .external_lex_state = 15}, + [1614] = {.lex_state = 223, .external_lex_state = 16}, + [1615] = {.lex_state = 90, .external_lex_state = 13}, + [1616] = {.lex_state = 90, .external_lex_state = 13}, + [1617] = {.lex_state = 90, .external_lex_state = 13}, + [1618] = {.lex_state = 223, .external_lex_state = 16}, + [1619] = {.lex_state = 205, .external_lex_state = 24}, + [1620] = {.lex_state = 205, .external_lex_state = 24}, + [1621] = {.lex_state = 205, .external_lex_state = 16}, + [1622] = {.lex_state = 223, .external_lex_state = 16}, + [1623] = {.lex_state = 90, .external_lex_state = 13}, + [1624] = {.lex_state = 223, .external_lex_state = 16}, + [1625] = {.lex_state = 90, .external_lex_state = 13}, + [1626] = {.lex_state = 223, .external_lex_state = 16}, + [1627] = {.lex_state = 90, .external_lex_state = 13}, + [1628] = {.lex_state = 223, .external_lex_state = 16}, + [1629] = {.lex_state = 90, .external_lex_state = 13}, + [1630] = {.lex_state = 223, .external_lex_state = 16}, + [1631] = {.lex_state = 151, .external_lex_state = 24}, + [1632] = {.lex_state = 151, .external_lex_state = 16}, + [1633] = {.lex_state = 151, .external_lex_state = 24}, + [1634] = {.lex_state = 151, .external_lex_state = 16}, + [1635] = {.lex_state = 205, .external_lex_state = 24}, + [1636] = {.lex_state = 205, .external_lex_state = 24}, + [1637] = {.lex_state = 205, .external_lex_state = 24}, + [1638] = {.lex_state = 221, .external_lex_state = 16}, + [1639] = {.lex_state = 205, .external_lex_state = 24}, + [1640] = {.lex_state = 225}, + [1641] = {.lex_state = 223, .external_lex_state = 16}, + [1642] = {.lex_state = 62}, + [1643] = {.lex_state = 151, .external_lex_state = 16}, + [1644] = {.lex_state = 151, .external_lex_state = 16}, + [1645] = {.lex_state = 151, .external_lex_state = 16}, + [1646] = {.lex_state = 205, .external_lex_state = 24}, + [1647] = {.lex_state = 225}, + [1648] = {.lex_state = 223, .external_lex_state = 16}, + [1649] = {.lex_state = 205, .external_lex_state = 24}, + [1650] = {.lex_state = 225}, + [1651] = {.lex_state = 223, .external_lex_state = 16}, + [1652] = {.lex_state = 205, .external_lex_state = 24}, + [1653] = {.lex_state = 205, .external_lex_state = 24}, + [1654] = {.lex_state = 223, .external_lex_state = 24}, + [1655] = {.lex_state = 205, .external_lex_state = 24}, + [1656] = {.lex_state = 205, .external_lex_state = 24}, + [1657] = {.lex_state = 205, .external_lex_state = 16}, + [1658] = {.lex_state = 223, .external_lex_state = 16}, + [1659] = {.lex_state = 223, .external_lex_state = 24}, + [1660] = {.lex_state = 221, .external_lex_state = 16}, + [1661] = {.lex_state = 223, .external_lex_state = 24}, + [1662] = {.lex_state = 225}, + [1663] = {.lex_state = 223, .external_lex_state = 16}, + [1664] = {.lex_state = 223, .external_lex_state = 24}, + [1665] = {.lex_state = 225}, + [1666] = {.lex_state = 223, .external_lex_state = 16}, + [1667] = {.lex_state = 225}, + [1668] = {.lex_state = 223, .external_lex_state = 16}, + [1669] = {.lex_state = 223, .external_lex_state = 16}, + [1670] = {.lex_state = 223, .external_lex_state = 24}, + [1671] = {.lex_state = 223, .external_lex_state = 16}, + [1672] = {.lex_state = 112, .external_lex_state = 5}, + [1673] = {.lex_state = 112, .external_lex_state = 5}, + [1674] = {.lex_state = 112, .external_lex_state = 5}, + [1675] = {.lex_state = 112, .external_lex_state = 5}, + [1676] = {.lex_state = 223, .external_lex_state = 16}, + [1677] = {.lex_state = 112, .external_lex_state = 5}, + [1678] = {.lex_state = 223, .external_lex_state = 16}, + [1679] = {.lex_state = 112, .external_lex_state = 5}, + [1680] = {.lex_state = 223, .external_lex_state = 16}, + [1681] = {.lex_state = 112, .external_lex_state = 5}, + [1682] = {.lex_state = 112, .external_lex_state = 5}, + [1683] = {.lex_state = 163, .external_lex_state = 15}, + [1684] = {.lex_state = 72}, + [1685] = {.lex_state = 68}, + [1686] = {.lex_state = 56, .external_lex_state = 2}, + [1687] = {.lex_state = 240, .external_lex_state = 18}, + [1688] = {.lex_state = 68}, + [1689] = {.lex_state = 68}, + [1690] = {.lex_state = 72}, + [1691] = {.lex_state = 72}, + [1692] = {.lex_state = 68}, + [1693] = {.lex_state = 72}, + [1694] = {.lex_state = 72}, + [1695] = {.lex_state = 72}, + [1696] = {.lex_state = 68}, + [1697] = {.lex_state = 72}, + [1698] = {.lex_state = 72}, + [1699] = {.lex_state = 72}, + [1700] = {.lex_state = 163, .external_lex_state = 26}, + [1701] = {.lex_state = 163, .external_lex_state = 26}, + [1702] = {.lex_state = 72}, + [1703] = {.lex_state = 163, .external_lex_state = 13}, + [1704] = {.lex_state = 163, .external_lex_state = 13}, + [1705] = {.lex_state = 68}, + [1706] = {.lex_state = 68}, + [1707] = {.lex_state = 72}, + [1708] = {.lex_state = 230, .external_lex_state = 28}, + [1709] = {.lex_state = 90}, + [1710] = {.lex_state = 97}, + [1711] = {.lex_state = 230, .external_lex_state = 28}, + [1712] = {.lex_state = 97, .external_lex_state = 6}, + [1713] = {.lex_state = 56, .external_lex_state = 2}, + [1714] = {.lex_state = 56, .external_lex_state = 2}, + [1715] = {.lex_state = 56, .external_lex_state = 2}, + [1716] = {.lex_state = 240, .external_lex_state = 26}, + [1717] = {.lex_state = 240, .external_lex_state = 26}, + [1718] = {.lex_state = 230, .external_lex_state = 28}, + [1719] = {.lex_state = 230, .external_lex_state = 28}, + [1720] = {.lex_state = 240, .external_lex_state = 26}, + [1721] = {.lex_state = 230, .external_lex_state = 26}, + [1722] = {.lex_state = 156, .external_lex_state = 6}, + [1723] = {.lex_state = 163}, + [1724] = {.lex_state = 156, .external_lex_state = 25}, + [1725] = {.lex_state = 205, .external_lex_state = 24}, + [1726] = {.lex_state = 205, .external_lex_state = 24}, + [1727] = {.lex_state = 205, .external_lex_state = 16}, + [1728] = {.lex_state = 223, .external_lex_state = 16}, + [1729] = {.lex_state = 156, .external_lex_state = 25}, + [1730] = {.lex_state = 221, .external_lex_state = 16}, + [1731] = {.lex_state = 156, .external_lex_state = 25}, + [1732] = {.lex_state = 225}, + [1733] = {.lex_state = 223, .external_lex_state = 16}, + [1734] = {.lex_state = 156, .external_lex_state = 25}, + [1735] = {.lex_state = 225}, + [1736] = {.lex_state = 223, .external_lex_state = 16}, + [1737] = {.lex_state = 225}, + [1738] = {.lex_state = 223, .external_lex_state = 16}, + [1739] = {.lex_state = 223, .external_lex_state = 16}, + [1740] = {.lex_state = 156, .external_lex_state = 25}, + [1741] = {.lex_state = 223, .external_lex_state = 16}, + [1742] = {.lex_state = 156, .external_lex_state = 13}, + [1743] = {.lex_state = 205, .external_lex_state = 24}, + [1744] = {.lex_state = 205, .external_lex_state = 24}, + [1745] = {.lex_state = 205, .external_lex_state = 16}, + [1746] = {.lex_state = 223, .external_lex_state = 16}, + [1747] = {.lex_state = 156, .external_lex_state = 13}, + [1748] = {.lex_state = 221, .external_lex_state = 16}, + [1749] = {.lex_state = 156, .external_lex_state = 13}, + [1750] = {.lex_state = 225}, + [1751] = {.lex_state = 223, .external_lex_state = 16}, + [1752] = {.lex_state = 156, .external_lex_state = 13}, + [1753] = {.lex_state = 225}, + [1754] = {.lex_state = 223, .external_lex_state = 16}, + [1755] = {.lex_state = 225}, + [1756] = {.lex_state = 223, .external_lex_state = 16}, + [1757] = {.lex_state = 223, .external_lex_state = 16}, + [1758] = {.lex_state = 156, .external_lex_state = 13}, + [1759] = {.lex_state = 223, .external_lex_state = 16}, + [1760] = {.lex_state = 158, .external_lex_state = 17}, + [1761] = {.lex_state = 158, .external_lex_state = 17}, + [1762] = {.lex_state = 158, .external_lex_state = 17}, + [1763] = {.lex_state = 223, .external_lex_state = 16}, + [1764] = {.lex_state = 205, .external_lex_state = 24}, + [1765] = {.lex_state = 205, .external_lex_state = 24}, + [1766] = {.lex_state = 205, .external_lex_state = 16}, + [1767] = {.lex_state = 223, .external_lex_state = 16}, + [1768] = {.lex_state = 158, .external_lex_state = 17}, + [1769] = {.lex_state = 223, .external_lex_state = 16}, + [1770] = {.lex_state = 158, .external_lex_state = 17}, + [1771] = {.lex_state = 223, .external_lex_state = 16}, + [1772] = {.lex_state = 158, .external_lex_state = 17}, + [1773] = {.lex_state = 223, .external_lex_state = 16}, + [1774] = {.lex_state = 158, .external_lex_state = 17}, + [1775] = {.lex_state = 223, .external_lex_state = 16}, + [1776] = {.lex_state = 68}, + [1777] = {.lex_state = 230, .external_lex_state = 17}, + [1778] = {.lex_state = 68}, + [1779] = {.lex_state = 171, .external_lex_state = 15}, + [1780] = {.lex_state = 163, .external_lex_state = 26}, + [1781] = {.lex_state = 72}, + [1782] = {.lex_state = 171, .external_lex_state = 13}, + [1783] = {.lex_state = 171, .external_lex_state = 13}, + [1784] = {.lex_state = 72}, + [1785] = {.lex_state = 232, .external_lex_state = 28}, + [1786] = {.lex_state = 232, .external_lex_state = 28}, + [1787] = {.lex_state = 232, .external_lex_state = 28}, + [1788] = {.lex_state = 232, .external_lex_state = 28}, + [1789] = {.lex_state = 232, .external_lex_state = 26}, + [1790] = {.lex_state = 232, .external_lex_state = 17}, + [1791] = {.lex_state = 176, .external_lex_state = 19}, + [1792] = {.lex_state = 205, .external_lex_state = 24}, + [1793] = {.lex_state = 205, .external_lex_state = 24}, + [1794] = {.lex_state = 205, .external_lex_state = 16}, + [1795] = {.lex_state = 223, .external_lex_state = 16}, + [1796] = {.lex_state = 176, .external_lex_state = 19}, + [1797] = {.lex_state = 221, .external_lex_state = 16}, + [1798] = {.lex_state = 176, .external_lex_state = 19}, + [1799] = {.lex_state = 225}, + [1800] = {.lex_state = 223, .external_lex_state = 16}, + [1801] = {.lex_state = 176, .external_lex_state = 19}, + [1802] = {.lex_state = 225}, + [1803] = {.lex_state = 223, .external_lex_state = 16}, + [1804] = {.lex_state = 225}, + [1805] = {.lex_state = 223, .external_lex_state = 16}, + [1806] = {.lex_state = 223, .external_lex_state = 16}, + [1807] = {.lex_state = 176, .external_lex_state = 19}, + [1808] = {.lex_state = 223, .external_lex_state = 16}, + [1809] = {.lex_state = 236, .external_lex_state = 13}, + [1810] = {.lex_state = 205, .external_lex_state = 24}, + [1811] = {.lex_state = 205, .external_lex_state = 24}, + [1812] = {.lex_state = 205, .external_lex_state = 16}, + [1813] = {.lex_state = 223, .external_lex_state = 16}, + [1814] = {.lex_state = 236, .external_lex_state = 13}, + [1815] = {.lex_state = 221, .external_lex_state = 16}, + [1816] = {.lex_state = 236, .external_lex_state = 13}, + [1817] = {.lex_state = 225}, + [1818] = {.lex_state = 223, .external_lex_state = 16}, + [1819] = {.lex_state = 236, .external_lex_state = 13}, + [1820] = {.lex_state = 225}, + [1821] = {.lex_state = 223, .external_lex_state = 16}, + [1822] = {.lex_state = 225}, + [1823] = {.lex_state = 223, .external_lex_state = 16}, + [1824] = {.lex_state = 223, .external_lex_state = 16}, + [1825] = {.lex_state = 236, .external_lex_state = 13}, + [1826] = {.lex_state = 223, .external_lex_state = 16}, + [1827] = {.lex_state = 125, .external_lex_state = 21}, + [1828] = {.lex_state = 125, .external_lex_state = 21}, + [1829] = {.lex_state = 125, .external_lex_state = 21}, + [1830] = {.lex_state = 223, .external_lex_state = 16}, + [1831] = {.lex_state = 205, .external_lex_state = 24}, + [1832] = {.lex_state = 205, .external_lex_state = 24}, + [1833] = {.lex_state = 205, .external_lex_state = 16}, + [1834] = {.lex_state = 223, .external_lex_state = 16}, + [1835] = {.lex_state = 125, .external_lex_state = 21}, + [1836] = {.lex_state = 223, .external_lex_state = 16}, + [1837] = {.lex_state = 125, .external_lex_state = 21}, + [1838] = {.lex_state = 223, .external_lex_state = 16}, + [1839] = {.lex_state = 125, .external_lex_state = 21}, + [1840] = {.lex_state = 223, .external_lex_state = 16}, + [1841] = {.lex_state = 125, .external_lex_state = 21}, + [1842] = {.lex_state = 223, .external_lex_state = 16}, + [1843] = {.lex_state = 56, .external_lex_state = 2}, + [1844] = {.lex_state = 127, .external_lex_state = 4}, + [1845] = {.lex_state = 242, .external_lex_state = 13}, + [1846] = {.lex_state = 242, .external_lex_state = 13}, + [1847] = {.lex_state = 242}, + [1848] = {.lex_state = 62}, + [1849] = {.lex_state = 56, .external_lex_state = 2}, + [1850] = {.lex_state = 72}, + [1851] = {.lex_state = 72}, + [1852] = {.lex_state = 74, .external_lex_state = 2}, + [1853] = {.lex_state = 76}, + [1854] = {.lex_state = 76}, + [1855] = {.lex_state = 82, .external_lex_state = 3}, + [1856] = {.lex_state = 82, .external_lex_state = 4}, + [1857] = {.lex_state = 87, .external_lex_state = 5}, + [1858] = {.lex_state = 87, .external_lex_state = 5}, + [1859] = {.lex_state = 106, .external_lex_state = 5}, + [1860] = {.lex_state = 127, .external_lex_state = 4}, + [1861] = {.lex_state = 87, .external_lex_state = 7}, + [1862] = {.lex_state = 110, .external_lex_state = 8}, + [1863] = {.lex_state = 62}, + [1864] = {.lex_state = 173, .external_lex_state = 2}, + [1865] = {.lex_state = 72, .external_lex_state = 2}, + [1866] = {.lex_state = 173, .external_lex_state = 2}, + [1867] = {.lex_state = 242}, + [1868] = {.lex_state = 242, .external_lex_state = 13}, + [1869] = {.lex_state = 72}, + [1870] = {.lex_state = 127, .external_lex_state = 4}, + [1871] = {.lex_state = 110, .external_lex_state = 8}, + [1872] = {.lex_state = 173, .external_lex_state = 2}, + [1873] = {.lex_state = 173, .external_lex_state = 2}, + [1874] = {.lex_state = 127, .external_lex_state = 4}, + [1875] = {.lex_state = 242, .external_lex_state = 13}, + [1876] = {.lex_state = 242, .external_lex_state = 13}, + [1877] = {.lex_state = 242}, + [1878] = {.lex_state = 72}, + [1879] = {.lex_state = 127, .external_lex_state = 4}, + [1880] = {.lex_state = 72}, + [1881] = {.lex_state = 116, .external_lex_state = 10}, + [1882] = {.lex_state = 116, .external_lex_state = 10}, + [1883] = {.lex_state = 116, .external_lex_state = 10}, + [1884] = {.lex_state = 116, .external_lex_state = 10}, + [1885] = {.lex_state = 223, .external_lex_state = 16}, + [1886] = {.lex_state = 116, .external_lex_state = 10}, + [1887] = {.lex_state = 223, .external_lex_state = 16}, + [1888] = {.lex_state = 116, .external_lex_state = 10}, + [1889] = {.lex_state = 223, .external_lex_state = 16}, + [1890] = {.lex_state = 116, .external_lex_state = 10}, + [1891] = {.lex_state = 116, .external_lex_state = 10}, + [1892] = {.lex_state = 245, .external_lex_state = 10}, + [1893] = {.lex_state = 127, .external_lex_state = 10}, + [1894] = {.lex_state = 127, .external_lex_state = 10}, + [1895] = {.lex_state = 127, .external_lex_state = 10}, + [1896] = {.lex_state = 209, .external_lex_state = 27}, + [1897] = {.lex_state = 209, .external_lex_state = 27}, + [1898] = {.lex_state = 209, .external_lex_state = 27}, + [1899] = {.lex_state = 129, .external_lex_state = 11}, + [1900] = {.lex_state = 129, .external_lex_state = 11}, + [1901] = {.lex_state = 129, .external_lex_state = 11}, + [1902] = {.lex_state = 129, .external_lex_state = 11}, + [1903] = {.lex_state = 223, .external_lex_state = 16}, + [1904] = {.lex_state = 129, .external_lex_state = 11}, + [1905] = {.lex_state = 223, .external_lex_state = 16}, + [1906] = {.lex_state = 129, .external_lex_state = 11}, + [1907] = {.lex_state = 223, .external_lex_state = 16}, + [1908] = {.lex_state = 129, .external_lex_state = 11}, + [1909] = {.lex_state = 129, .external_lex_state = 11}, + [1910] = {.lex_state = 234, .external_lex_state = 27}, + [1911] = {.lex_state = 199, .external_lex_state = 27}, + [1912] = {.lex_state = 234, .external_lex_state = 27}, + [1913] = {.lex_state = 221, .external_lex_state = 16}, + [1914] = {.lex_state = 234, .external_lex_state = 27}, + [1915] = {.lex_state = 225}, + [1916] = {.lex_state = 223, .external_lex_state = 16}, + [1917] = {.lex_state = 62}, + [1918] = {.lex_state = 151, .external_lex_state = 16}, + [1919] = {.lex_state = 151, .external_lex_state = 16}, + [1920] = {.lex_state = 151, .external_lex_state = 16}, + [1921] = {.lex_state = 234, .external_lex_state = 27}, + [1922] = {.lex_state = 225}, + [1923] = {.lex_state = 223, .external_lex_state = 16}, + [1924] = {.lex_state = 234, .external_lex_state = 27}, + [1925] = {.lex_state = 225}, + [1926] = {.lex_state = 223, .external_lex_state = 16}, + [1927] = {.lex_state = 234, .external_lex_state = 27}, + [1928] = {.lex_state = 234, .external_lex_state = 27}, + [1929] = {.lex_state = 218, .external_lex_state = 13}, + [1930] = {.lex_state = 218, .external_lex_state = 13}, + [1931] = {.lex_state = 218, .external_lex_state = 13}, + [1932] = {.lex_state = 218, .external_lex_state = 13}, + [1933] = {.lex_state = 223, .external_lex_state = 16}, + [1934] = {.lex_state = 218, .external_lex_state = 13}, + [1935] = {.lex_state = 223, .external_lex_state = 16}, + [1936] = {.lex_state = 218, .external_lex_state = 13}, + [1937] = {.lex_state = 223, .external_lex_state = 16}, + [1938] = {.lex_state = 218, .external_lex_state = 13}, + [1939] = {.lex_state = 218, .external_lex_state = 13}, + [1940] = {.lex_state = 121, .external_lex_state = 14}, + [1941] = {.lex_state = 121, .external_lex_state = 14}, + [1942] = {.lex_state = 121, .external_lex_state = 14}, + [1943] = {.lex_state = 121, .external_lex_state = 14}, + [1944] = {.lex_state = 223, .external_lex_state = 16}, + [1945] = {.lex_state = 121, .external_lex_state = 14}, + [1946] = {.lex_state = 223, .external_lex_state = 16}, + [1947] = {.lex_state = 121, .external_lex_state = 14}, + [1948] = {.lex_state = 223, .external_lex_state = 16}, + [1949] = {.lex_state = 121, .external_lex_state = 14}, + [1950] = {.lex_state = 121, .external_lex_state = 14}, + [1951] = {.lex_state = 121, .external_lex_state = 10}, + [1952] = {.lex_state = 121, .external_lex_state = 10}, + [1953] = {.lex_state = 121, .external_lex_state = 10}, + [1954] = {.lex_state = 121, .external_lex_state = 10}, + [1955] = {.lex_state = 223, .external_lex_state = 16}, + [1956] = {.lex_state = 121, .external_lex_state = 10}, + [1957] = {.lex_state = 223, .external_lex_state = 16}, + [1958] = {.lex_state = 121, .external_lex_state = 10}, + [1959] = {.lex_state = 223, .external_lex_state = 16}, + [1960] = {.lex_state = 121, .external_lex_state = 10}, + [1961] = {.lex_state = 121, .external_lex_state = 10}, + [1962] = {.lex_state = 163, .external_lex_state = 15}, + [1963] = {.lex_state = 163, .external_lex_state = 15}, + [1964] = {.lex_state = 163, .external_lex_state = 15}, + [1965] = {.lex_state = 163, .external_lex_state = 15}, + [1966] = {.lex_state = 223, .external_lex_state = 16}, + [1967] = {.lex_state = 163, .external_lex_state = 15}, + [1968] = {.lex_state = 223, .external_lex_state = 16}, + [1969] = {.lex_state = 163, .external_lex_state = 15}, + [1970] = {.lex_state = 223, .external_lex_state = 16}, + [1971] = {.lex_state = 163, .external_lex_state = 15}, + [1972] = {.lex_state = 163, .external_lex_state = 15}, + [1973] = {.lex_state = 90, .external_lex_state = 13}, + [1974] = {.lex_state = 90, .external_lex_state = 13}, + [1975] = {.lex_state = 90, .external_lex_state = 13}, + [1976] = {.lex_state = 90, .external_lex_state = 13}, + [1977] = {.lex_state = 223, .external_lex_state = 16}, + [1978] = {.lex_state = 90, .external_lex_state = 13}, + [1979] = {.lex_state = 223, .external_lex_state = 16}, + [1980] = {.lex_state = 90, .external_lex_state = 13}, + [1981] = {.lex_state = 223, .external_lex_state = 16}, + [1982] = {.lex_state = 90, .external_lex_state = 13}, + [1983] = {.lex_state = 90, .external_lex_state = 13}, + [1984] = {.lex_state = 151, .external_lex_state = 16}, + [1985] = {.lex_state = 151, .external_lex_state = 16}, + [1986] = {.lex_state = 205, .external_lex_state = 24}, + [1987] = {.lex_state = 205, .external_lex_state = 24}, + [1988] = {.lex_state = 205, .external_lex_state = 24}, + [1989] = {.lex_state = 205, .external_lex_state = 16}, + [1990] = {.lex_state = 223, .external_lex_state = 16}, + [1991] = {.lex_state = 205, .external_lex_state = 24}, + [1992] = {.lex_state = 221, .external_lex_state = 16}, + [1993] = {.lex_state = 205, .external_lex_state = 24}, + [1994] = {.lex_state = 225}, + [1995] = {.lex_state = 223, .external_lex_state = 16}, + [1996] = {.lex_state = 205, .external_lex_state = 24}, + [1997] = {.lex_state = 225}, + [1998] = {.lex_state = 223, .external_lex_state = 16}, + [1999] = {.lex_state = 225}, + [2000] = {.lex_state = 223, .external_lex_state = 16}, + [2001] = {.lex_state = 223, .external_lex_state = 16}, + [2002] = {.lex_state = 205, .external_lex_state = 24}, + [2003] = {.lex_state = 223, .external_lex_state = 16}, + [2004] = {.lex_state = 223, .external_lex_state = 24}, + [2005] = {.lex_state = 223, .external_lex_state = 24}, + [2006] = {.lex_state = 223, .external_lex_state = 24}, + [2007] = {.lex_state = 223, .external_lex_state = 16}, + [2008] = {.lex_state = 205, .external_lex_state = 24}, + [2009] = {.lex_state = 205, .external_lex_state = 24}, + [2010] = {.lex_state = 205, .external_lex_state = 16}, + [2011] = {.lex_state = 223, .external_lex_state = 16}, + [2012] = {.lex_state = 223, .external_lex_state = 24}, + [2013] = {.lex_state = 223, .external_lex_state = 16}, + [2014] = {.lex_state = 223, .external_lex_state = 24}, + [2015] = {.lex_state = 223, .external_lex_state = 16}, + [2016] = {.lex_state = 223, .external_lex_state = 24}, + [2017] = {.lex_state = 223, .external_lex_state = 16}, + [2018] = {.lex_state = 223, .external_lex_state = 24}, + [2019] = {.lex_state = 223, .external_lex_state = 16}, + [2020] = {.lex_state = 112, .external_lex_state = 5}, + [2021] = {.lex_state = 112, .external_lex_state = 5}, + [2022] = {.lex_state = 112, .external_lex_state = 5}, + [2023] = {.lex_state = 68}, + [2024] = {.lex_state = 68}, + [2025] = {.lex_state = 68}, + [2026] = {.lex_state = 72}, + [2027] = {.lex_state = 68}, + [2028] = {.lex_state = 72}, + [2029] = {.lex_state = 68}, + [2030] = {.lex_state = 72}, + [2031] = {.lex_state = 68}, + [2032] = {.lex_state = 72}, + [2033] = {.lex_state = 68}, + [2034] = {.lex_state = 72}, + [2035] = {.lex_state = 68}, + [2036] = {.lex_state = 163, .external_lex_state = 13}, + [2037] = {.lex_state = 163, .external_lex_state = 13}, + [2038] = {.lex_state = 68}, + [2039] = {.lex_state = 163, .external_lex_state = 13}, + [2040] = {.lex_state = 230, .external_lex_state = 28}, + [2041] = {.lex_state = 230, .external_lex_state = 28}, + [2042] = {.lex_state = 240, .external_lex_state = 26}, + [2043] = {.lex_state = 72}, + [2044] = {.lex_state = 230, .external_lex_state = 28}, + [2045] = {.lex_state = 240, .external_lex_state = 28}, + [2046] = {.lex_state = 90}, + [2047] = {.lex_state = 240, .external_lex_state = 28}, + [2048] = {.lex_state = 240, .external_lex_state = 28}, + [2049] = {.lex_state = 240, .external_lex_state = 28}, + [2050] = {.lex_state = 62}, + [2051] = {.lex_state = 151, .external_lex_state = 16}, + [2052] = {.lex_state = 154, .external_lex_state = 6}, + [2053] = {.lex_state = 151, .external_lex_state = 16}, + [2054] = {.lex_state = 151, .external_lex_state = 16}, + [2055] = {.lex_state = 68}, + [2056] = {.lex_state = 163, .external_lex_state = 2}, + [2057] = {.lex_state = 68}, + [2058] = {.lex_state = 171, .external_lex_state = 2}, + [2059] = {.lex_state = 68}, + [2060] = {.lex_state = 163, .external_lex_state = 2}, + [2061] = {.lex_state = 156, .external_lex_state = 6}, + [2062] = {.lex_state = 156, .external_lex_state = 25}, + [2063] = {.lex_state = 156, .external_lex_state = 25}, + [2064] = {.lex_state = 156, .external_lex_state = 25}, + [2065] = {.lex_state = 223, .external_lex_state = 16}, + [2066] = {.lex_state = 205, .external_lex_state = 24}, + [2067] = {.lex_state = 205, .external_lex_state = 24}, + [2068] = {.lex_state = 205, .external_lex_state = 16}, + [2069] = {.lex_state = 223, .external_lex_state = 16}, + [2070] = {.lex_state = 156, .external_lex_state = 25}, + [2071] = {.lex_state = 223, .external_lex_state = 16}, + [2072] = {.lex_state = 156, .external_lex_state = 25}, + [2073] = {.lex_state = 223, .external_lex_state = 16}, + [2074] = {.lex_state = 156, .external_lex_state = 25}, + [2075] = {.lex_state = 223, .external_lex_state = 16}, + [2076] = {.lex_state = 156, .external_lex_state = 25}, + [2077] = {.lex_state = 223, .external_lex_state = 16}, + [2078] = {.lex_state = 156, .external_lex_state = 13}, + [2079] = {.lex_state = 156, .external_lex_state = 13}, + [2080] = {.lex_state = 156, .external_lex_state = 13}, + [2081] = {.lex_state = 223, .external_lex_state = 16}, + [2082] = {.lex_state = 205, .external_lex_state = 24}, + [2083] = {.lex_state = 205, .external_lex_state = 24}, + [2084] = {.lex_state = 205, .external_lex_state = 16}, + [2085] = {.lex_state = 223, .external_lex_state = 16}, + [2086] = {.lex_state = 156, .external_lex_state = 13}, + [2087] = {.lex_state = 223, .external_lex_state = 16}, + [2088] = {.lex_state = 156, .external_lex_state = 13}, + [2089] = {.lex_state = 223, .external_lex_state = 16}, + [2090] = {.lex_state = 156, .external_lex_state = 13}, + [2091] = {.lex_state = 223, .external_lex_state = 16}, + [2092] = {.lex_state = 156, .external_lex_state = 13}, + [2093] = {.lex_state = 223, .external_lex_state = 16}, + [2094] = {.lex_state = 158, .external_lex_state = 17}, + [2095] = {.lex_state = 158, .external_lex_state = 17}, + [2096] = {.lex_state = 158, .external_lex_state = 17}, + [2097] = {.lex_state = 158, .external_lex_state = 17}, + [2098] = {.lex_state = 223, .external_lex_state = 16}, + [2099] = {.lex_state = 158, .external_lex_state = 17}, + [2100] = {.lex_state = 223, .external_lex_state = 16}, + [2101] = {.lex_state = 158, .external_lex_state = 17}, + [2102] = {.lex_state = 223, .external_lex_state = 16}, + [2103] = {.lex_state = 158, .external_lex_state = 17}, + [2104] = {.lex_state = 158, .external_lex_state = 17}, + [2105] = {.lex_state = 171, .external_lex_state = 13}, + [2106] = {.lex_state = 171, .external_lex_state = 13}, + [2107] = {.lex_state = 171, .external_lex_state = 13}, + [2108] = {.lex_state = 232, .external_lex_state = 28}, + [2109] = {.lex_state = 232, .external_lex_state = 28}, + [2110] = {.lex_state = 232, .external_lex_state = 28}, + [2111] = {.lex_state = 176, .external_lex_state = 19}, + [2112] = {.lex_state = 176, .external_lex_state = 19}, + [2113] = {.lex_state = 176, .external_lex_state = 19}, + [2114] = {.lex_state = 223, .external_lex_state = 16}, + [2115] = {.lex_state = 205, .external_lex_state = 24}, + [2116] = {.lex_state = 205, .external_lex_state = 24}, + [2117] = {.lex_state = 205, .external_lex_state = 16}, + [2118] = {.lex_state = 223, .external_lex_state = 16}, + [2119] = {.lex_state = 176, .external_lex_state = 19}, + [2120] = {.lex_state = 223, .external_lex_state = 16}, + [2121] = {.lex_state = 176, .external_lex_state = 19}, + [2122] = {.lex_state = 223, .external_lex_state = 16}, + [2123] = {.lex_state = 176, .external_lex_state = 19}, + [2124] = {.lex_state = 223, .external_lex_state = 16}, + [2125] = {.lex_state = 176, .external_lex_state = 19}, + [2126] = {.lex_state = 223, .external_lex_state = 16}, + [2127] = {.lex_state = 236, .external_lex_state = 13}, + [2128] = {.lex_state = 236, .external_lex_state = 13}, + [2129] = {.lex_state = 236, .external_lex_state = 13}, + [2130] = {.lex_state = 223, .external_lex_state = 16}, + [2131] = {.lex_state = 205, .external_lex_state = 24}, + [2132] = {.lex_state = 205, .external_lex_state = 24}, + [2133] = {.lex_state = 205, .external_lex_state = 16}, + [2134] = {.lex_state = 223, .external_lex_state = 16}, + [2135] = {.lex_state = 236, .external_lex_state = 13}, + [2136] = {.lex_state = 223, .external_lex_state = 16}, + [2137] = {.lex_state = 236, .external_lex_state = 13}, + [2138] = {.lex_state = 223, .external_lex_state = 16}, + [2139] = {.lex_state = 236, .external_lex_state = 13}, + [2140] = {.lex_state = 223, .external_lex_state = 16}, + [2141] = {.lex_state = 236, .external_lex_state = 13}, + [2142] = {.lex_state = 223, .external_lex_state = 16}, + [2143] = {.lex_state = 125, .external_lex_state = 21}, + [2144] = {.lex_state = 125, .external_lex_state = 21}, + [2145] = {.lex_state = 125, .external_lex_state = 21}, + [2146] = {.lex_state = 125, .external_lex_state = 21}, + [2147] = {.lex_state = 223, .external_lex_state = 16}, + [2148] = {.lex_state = 125, .external_lex_state = 21}, + [2149] = {.lex_state = 223, .external_lex_state = 16}, + [2150] = {.lex_state = 125, .external_lex_state = 21}, + [2151] = {.lex_state = 223, .external_lex_state = 16}, + [2152] = {.lex_state = 125, .external_lex_state = 21}, + [2153] = {.lex_state = 125, .external_lex_state = 21}, + [2154] = {.lex_state = 114, .external_lex_state = 9}, + [2155] = {.lex_state = 72}, + [2156] = {.lex_state = 119}, + [2157] = {.lex_state = 129, .external_lex_state = 12}, + [2158] = {.lex_state = 141}, + [2159] = {.lex_state = 62}, + [2160] = {.lex_state = 82, .external_lex_state = 14}, + [2161] = {.lex_state = 90}, + [2162] = {.lex_state = 97}, + [2163] = {.lex_state = 82, .external_lex_state = 14}, + [2164] = {.lex_state = 97, .external_lex_state = 6}, + [2165] = {.lex_state = 56, .external_lex_state = 2}, + [2166] = {.lex_state = 56, .external_lex_state = 2}, + [2167] = {.lex_state = 56, .external_lex_state = 2}, + [2168] = {.lex_state = 82, .external_lex_state = 3}, + [2169] = {.lex_state = 62}, + [2170] = {.lex_state = 82, .external_lex_state = 3}, + [2171] = {.lex_state = 82, .external_lex_state = 10}, + [2172] = {.lex_state = 90}, + [2173] = {.lex_state = 97}, + [2174] = {.lex_state = 82, .external_lex_state = 10}, + [2175] = {.lex_state = 97, .external_lex_state = 6}, + [2176] = {.lex_state = 56, .external_lex_state = 2}, + [2177] = {.lex_state = 56, .external_lex_state = 2}, + [2178] = {.lex_state = 56, .external_lex_state = 2}, + [2179] = {.lex_state = 82, .external_lex_state = 4}, + [2180] = {.lex_state = 82, .external_lex_state = 4}, + [2181] = {.lex_state = 87, .external_lex_state = 5}, + [2182] = {.lex_state = 68}, + [2183] = {.lex_state = 56, .external_lex_state = 2}, + [2184] = {.lex_state = 173, .external_lex_state = 2}, + [2185] = {.lex_state = 56, .external_lex_state = 2}, + [2186] = {.lex_state = 56}, + [2187] = {.lex_state = 179}, + [2188] = {.lex_state = 72}, + [2189] = {.lex_state = 72}, + [2190] = {.lex_state = 87, .external_lex_state = 5}, + [2191] = {.lex_state = 87, .external_lex_state = 5}, + [2192] = {.lex_state = 247, .external_lex_state = 7}, + [2193] = {.lex_state = 87, .external_lex_state = 7}, + [2194] = {.lex_state = 72}, + [2195] = {.lex_state = 127, .external_lex_state = 4}, + [2196] = {.lex_state = 110, .external_lex_state = 8}, + [2197] = {.lex_state = 173, .external_lex_state = 2}, + [2198] = {.lex_state = 87, .external_lex_state = 7}, + [2199] = {.lex_state = 173, .external_lex_state = 2}, + [2200] = {.lex_state = 173, .external_lex_state = 2}, + [2201] = {.lex_state = 72}, + [2202] = {.lex_state = 127, .external_lex_state = 4}, + [2203] = {.lex_state = 110, .external_lex_state = 8}, + [2204] = {.lex_state = 173, .external_lex_state = 2}, + [2205] = {.lex_state = 173, .external_lex_state = 2}, + [2206] = {.lex_state = 242}, + [2207] = {.lex_state = 173, .external_lex_state = 2}, + [2208] = {.lex_state = 242}, + [2209] = {.lex_state = 127, .external_lex_state = 4}, + [2210] = {.lex_state = 127, .external_lex_state = 4}, + [2211] = {.lex_state = 116, .external_lex_state = 10}, + [2212] = {.lex_state = 116, .external_lex_state = 10}, + [2213] = {.lex_state = 116, .external_lex_state = 10}, + [2214] = {.lex_state = 127, .external_lex_state = 10}, + [2215] = {.lex_state = 209, .external_lex_state = 27}, + [2216] = {.lex_state = 129, .external_lex_state = 11}, + [2217] = {.lex_state = 129, .external_lex_state = 11}, + [2218] = {.lex_state = 129, .external_lex_state = 11}, + [2219] = {.lex_state = 234, .external_lex_state = 27}, + [2220] = {.lex_state = 205, .external_lex_state = 24}, + [2221] = {.lex_state = 205, .external_lex_state = 24}, + [2222] = {.lex_state = 205, .external_lex_state = 16}, + [2223] = {.lex_state = 223, .external_lex_state = 16}, + [2224] = {.lex_state = 234, .external_lex_state = 27}, + [2225] = {.lex_state = 221, .external_lex_state = 16}, + [2226] = {.lex_state = 234, .external_lex_state = 27}, + [2227] = {.lex_state = 225}, + [2228] = {.lex_state = 223, .external_lex_state = 16}, + [2229] = {.lex_state = 234, .external_lex_state = 27}, + [2230] = {.lex_state = 225}, + [2231] = {.lex_state = 223, .external_lex_state = 16}, + [2232] = {.lex_state = 225}, + [2233] = {.lex_state = 223, .external_lex_state = 16}, + [2234] = {.lex_state = 223, .external_lex_state = 16}, + [2235] = {.lex_state = 234, .external_lex_state = 27}, + [2236] = {.lex_state = 223, .external_lex_state = 16}, + [2237] = {.lex_state = 218, .external_lex_state = 13}, + [2238] = {.lex_state = 218, .external_lex_state = 13}, + [2239] = {.lex_state = 218, .external_lex_state = 13}, + [2240] = {.lex_state = 121, .external_lex_state = 14}, + [2241] = {.lex_state = 121, .external_lex_state = 14}, + [2242] = {.lex_state = 121, .external_lex_state = 14}, + [2243] = {.lex_state = 121, .external_lex_state = 10}, + [2244] = {.lex_state = 121, .external_lex_state = 10}, + [2245] = {.lex_state = 121, .external_lex_state = 10}, + [2246] = {.lex_state = 163, .external_lex_state = 15}, + [2247] = {.lex_state = 163, .external_lex_state = 15}, + [2248] = {.lex_state = 163, .external_lex_state = 15}, + [2249] = {.lex_state = 90, .external_lex_state = 13}, + [2250] = {.lex_state = 90, .external_lex_state = 13}, + [2251] = {.lex_state = 90, .external_lex_state = 13}, + [2252] = {.lex_state = 205, .external_lex_state = 24}, + [2253] = {.lex_state = 205, .external_lex_state = 24}, + [2254] = {.lex_state = 205, .external_lex_state = 24}, + [2255] = {.lex_state = 223, .external_lex_state = 16}, + [2256] = {.lex_state = 205, .external_lex_state = 24}, + [2257] = {.lex_state = 205, .external_lex_state = 24}, + [2258] = {.lex_state = 205, .external_lex_state = 16}, + [2259] = {.lex_state = 223, .external_lex_state = 16}, + [2260] = {.lex_state = 205, .external_lex_state = 24}, + [2261] = {.lex_state = 223, .external_lex_state = 16}, + [2262] = {.lex_state = 205, .external_lex_state = 24}, + [2263] = {.lex_state = 223, .external_lex_state = 16}, + [2264] = {.lex_state = 205, .external_lex_state = 24}, + [2265] = {.lex_state = 223, .external_lex_state = 16}, + [2266] = {.lex_state = 205, .external_lex_state = 24}, + [2267] = {.lex_state = 223, .external_lex_state = 16}, + [2268] = {.lex_state = 223, .external_lex_state = 24}, + [2269] = {.lex_state = 223, .external_lex_state = 24}, + [2270] = {.lex_state = 223, .external_lex_state = 24}, + [2271] = {.lex_state = 223, .external_lex_state = 24}, + [2272] = {.lex_state = 223, .external_lex_state = 16}, + [2273] = {.lex_state = 223, .external_lex_state = 24}, + [2274] = {.lex_state = 223, .external_lex_state = 16}, + [2275] = {.lex_state = 223, .external_lex_state = 24}, + [2276] = {.lex_state = 223, .external_lex_state = 16}, + [2277] = {.lex_state = 223, .external_lex_state = 24}, + [2278] = {.lex_state = 223, .external_lex_state = 24}, + [2279] = {.lex_state = 68}, + [2280] = {.lex_state = 68}, + [2281] = {.lex_state = 72}, + [2282] = {.lex_state = 68}, + [2283] = {.lex_state = 72}, + [2284] = {.lex_state = 163, .external_lex_state = 13}, + [2285] = {.lex_state = 240, .external_lex_state = 28}, + [2286] = {.lex_state = 230, .external_lex_state = 28}, + [2287] = {.lex_state = 240, .external_lex_state = 28}, + [2288] = {.lex_state = 221, .external_lex_state = 16}, + [2289] = {.lex_state = 240, .external_lex_state = 28}, + [2290] = {.lex_state = 225}, + [2291] = {.lex_state = 223, .external_lex_state = 16}, + [2292] = {.lex_state = 62}, + [2293] = {.lex_state = 151, .external_lex_state = 16}, + [2294] = {.lex_state = 151, .external_lex_state = 16}, + [2295] = {.lex_state = 151, .external_lex_state = 16}, + [2296] = {.lex_state = 240, .external_lex_state = 28}, + [2297] = {.lex_state = 225}, + [2298] = {.lex_state = 223, .external_lex_state = 16}, + [2299] = {.lex_state = 240, .external_lex_state = 28}, + [2300] = {.lex_state = 225}, + [2301] = {.lex_state = 223, .external_lex_state = 16}, + [2302] = {.lex_state = 240, .external_lex_state = 28}, + [2303] = {.lex_state = 240, .external_lex_state = 28}, + [2304] = {.lex_state = 156, .external_lex_state = 25}, + [2305] = {.lex_state = 156, .external_lex_state = 25}, + [2306] = {.lex_state = 156, .external_lex_state = 25}, + [2307] = {.lex_state = 156, .external_lex_state = 25}, + [2308] = {.lex_state = 223, .external_lex_state = 16}, + [2309] = {.lex_state = 156, .external_lex_state = 25}, + [2310] = {.lex_state = 223, .external_lex_state = 16}, + [2311] = {.lex_state = 156, .external_lex_state = 25}, + [2312] = {.lex_state = 223, .external_lex_state = 16}, + [2313] = {.lex_state = 156, .external_lex_state = 25}, + [2314] = {.lex_state = 156, .external_lex_state = 25}, + [2315] = {.lex_state = 156, .external_lex_state = 13}, + [2316] = {.lex_state = 156, .external_lex_state = 13}, + [2317] = {.lex_state = 156, .external_lex_state = 13}, + [2318] = {.lex_state = 156, .external_lex_state = 13}, + [2319] = {.lex_state = 223, .external_lex_state = 16}, + [2320] = {.lex_state = 156, .external_lex_state = 13}, + [2321] = {.lex_state = 223, .external_lex_state = 16}, + [2322] = {.lex_state = 156, .external_lex_state = 13}, + [2323] = {.lex_state = 223, .external_lex_state = 16}, + [2324] = {.lex_state = 156, .external_lex_state = 13}, + [2325] = {.lex_state = 156, .external_lex_state = 13}, + [2326] = {.lex_state = 158, .external_lex_state = 17}, + [2327] = {.lex_state = 158, .external_lex_state = 17}, + [2328] = {.lex_state = 158, .external_lex_state = 17}, + [2329] = {.lex_state = 171, .external_lex_state = 13}, + [2330] = {.lex_state = 232, .external_lex_state = 28}, + [2331] = {.lex_state = 176, .external_lex_state = 19}, + [2332] = {.lex_state = 176, .external_lex_state = 19}, + [2333] = {.lex_state = 176, .external_lex_state = 19}, + [2334] = {.lex_state = 176, .external_lex_state = 19}, + [2335] = {.lex_state = 223, .external_lex_state = 16}, + [2336] = {.lex_state = 176, .external_lex_state = 19}, + [2337] = {.lex_state = 223, .external_lex_state = 16}, + [2338] = {.lex_state = 176, .external_lex_state = 19}, + [2339] = {.lex_state = 223, .external_lex_state = 16}, + [2340] = {.lex_state = 176, .external_lex_state = 19}, + [2341] = {.lex_state = 176, .external_lex_state = 19}, + [2342] = {.lex_state = 236, .external_lex_state = 13}, + [2343] = {.lex_state = 236, .external_lex_state = 13}, + [2344] = {.lex_state = 236, .external_lex_state = 13}, + [2345] = {.lex_state = 236, .external_lex_state = 13}, + [2346] = {.lex_state = 223, .external_lex_state = 16}, + [2347] = {.lex_state = 236, .external_lex_state = 13}, + [2348] = {.lex_state = 223, .external_lex_state = 16}, + [2349] = {.lex_state = 236, .external_lex_state = 13}, + [2350] = {.lex_state = 223, .external_lex_state = 16}, + [2351] = {.lex_state = 236, .external_lex_state = 13}, + [2352] = {.lex_state = 236, .external_lex_state = 13}, + [2353] = {.lex_state = 125, .external_lex_state = 21}, + [2354] = {.lex_state = 125, .external_lex_state = 21}, + [2355] = {.lex_state = 125, .external_lex_state = 21}, + [2356] = {.lex_state = 110, .external_lex_state = 21}, + [2357] = {.lex_state = 110, .external_lex_state = 21}, + [2358] = {.lex_state = 247, .external_lex_state = 7}, + [2359] = {.lex_state = 68}, + [2360] = {.lex_state = 110, .external_lex_state = 23}, + [2361] = {.lex_state = 234, .external_lex_state = 23}, + [2362] = {.lex_state = 114, .external_lex_state = 9}, + [2363] = {.lex_state = 72}, + [2364] = {.lex_state = 82, .external_lex_state = 14}, + [2365] = {.lex_state = 82, .external_lex_state = 14}, + [2366] = {.lex_state = 90}, + [2367] = {.lex_state = 82, .external_lex_state = 14}, + [2368] = {.lex_state = 82, .external_lex_state = 14}, + [2369] = {.lex_state = 82, .external_lex_state = 14}, + [2370] = {.lex_state = 62}, + [2371] = {.lex_state = 151, .external_lex_state = 16}, + [2372] = {.lex_state = 154, .external_lex_state = 6}, + [2373] = {.lex_state = 151, .external_lex_state = 16}, + [2374] = {.lex_state = 151, .external_lex_state = 16}, + [2375] = {.lex_state = 68}, + [2376] = {.lex_state = 163, .external_lex_state = 2}, + [2377] = {.lex_state = 68}, + [2378] = {.lex_state = 171, .external_lex_state = 2}, + [2379] = {.lex_state = 68}, + [2380] = {.lex_state = 163, .external_lex_state = 2}, + [2381] = {.lex_state = 82, .external_lex_state = 3}, + [2382] = {.lex_state = 72}, + [2383] = {.lex_state = 82, .external_lex_state = 10}, + [2384] = {.lex_state = 82, .external_lex_state = 10}, + [2385] = {.lex_state = 90}, + [2386] = {.lex_state = 82, .external_lex_state = 10}, + [2387] = {.lex_state = 82, .external_lex_state = 10}, + [2388] = {.lex_state = 82, .external_lex_state = 10}, + [2389] = {.lex_state = 62}, + [2390] = {.lex_state = 151, .external_lex_state = 16}, + [2391] = {.lex_state = 154, .external_lex_state = 6}, + [2392] = {.lex_state = 151, .external_lex_state = 16}, + [2393] = {.lex_state = 151, .external_lex_state = 16}, + [2394] = {.lex_state = 68}, + [2395] = {.lex_state = 163, .external_lex_state = 2}, + [2396] = {.lex_state = 68}, + [2397] = {.lex_state = 171, .external_lex_state = 2}, + [2398] = {.lex_state = 68}, + [2399] = {.lex_state = 163, .external_lex_state = 2}, + [2400] = {.lex_state = 82, .external_lex_state = 4}, + [2401] = {.lex_state = 87, .external_lex_state = 5}, + [2402] = {.lex_state = 119}, + [2403] = {.lex_state = 127, .external_lex_state = 4}, + [2404] = {.lex_state = 110, .external_lex_state = 8}, + [2405] = {.lex_state = 72}, + [2406] = {.lex_state = 87, .external_lex_state = 5}, + [2407] = {.lex_state = 87, .external_lex_state = 5}, + [2408] = {.lex_state = 247, .external_lex_state = 5}, + [2409] = {.lex_state = 247, .external_lex_state = 5}, + [2410] = {.lex_state = 247, .external_lex_state = 5}, + [2411] = {.lex_state = 247, .external_lex_state = 5}, + [2412] = {.lex_state = 247, .external_lex_state = 7}, + [2413] = {.lex_state = 247, .external_lex_state = 7}, + [2414] = {.lex_state = 87, .external_lex_state = 7}, + [2415] = {.lex_state = 173, .external_lex_state = 2}, + [2416] = {.lex_state = 87, .external_lex_state = 7}, + [2417] = {.lex_state = 72}, + [2418] = {.lex_state = 127, .external_lex_state = 4}, + [2419] = {.lex_state = 110, .external_lex_state = 8}, + [2420] = {.lex_state = 173, .external_lex_state = 2}, + [2421] = {.lex_state = 72}, + [2422] = {.lex_state = 127, .external_lex_state = 4}, + [2423] = {.lex_state = 110, .external_lex_state = 8}, + [2424] = {.lex_state = 72}, + [2425] = {.lex_state = 82, .external_lex_state = 4}, + [2426] = {.lex_state = 110, .external_lex_state = 8}, + [2427] = {.lex_state = 173, .external_lex_state = 2}, + [2428] = {.lex_state = 173, .external_lex_state = 2}, + [2429] = {.lex_state = 72}, + [2430] = {.lex_state = 82, .external_lex_state = 4}, + [2431] = {.lex_state = 110, .external_lex_state = 8}, + [2432] = {.lex_state = 173, .external_lex_state = 2}, + [2433] = {.lex_state = 173, .external_lex_state = 2}, + [2434] = {.lex_state = 234, .external_lex_state = 27}, + [2435] = {.lex_state = 234, .external_lex_state = 27}, + [2436] = {.lex_state = 234, .external_lex_state = 27}, + [2437] = {.lex_state = 223, .external_lex_state = 16}, + [2438] = {.lex_state = 205, .external_lex_state = 24}, + [2439] = {.lex_state = 205, .external_lex_state = 24}, + [2440] = {.lex_state = 205, .external_lex_state = 16}, + [2441] = {.lex_state = 223, .external_lex_state = 16}, + [2442] = {.lex_state = 234, .external_lex_state = 27}, + [2443] = {.lex_state = 223, .external_lex_state = 16}, + [2444] = {.lex_state = 234, .external_lex_state = 27}, + [2445] = {.lex_state = 223, .external_lex_state = 16}, + [2446] = {.lex_state = 234, .external_lex_state = 27}, + [2447] = {.lex_state = 223, .external_lex_state = 16}, + [2448] = {.lex_state = 234, .external_lex_state = 27}, + [2449] = {.lex_state = 223, .external_lex_state = 16}, + [2450] = {.lex_state = 205, .external_lex_state = 24}, + [2451] = {.lex_state = 205, .external_lex_state = 24}, + [2452] = {.lex_state = 205, .external_lex_state = 24}, + [2453] = {.lex_state = 205, .external_lex_state = 24}, + [2454] = {.lex_state = 223, .external_lex_state = 16}, + [2455] = {.lex_state = 205, .external_lex_state = 24}, + [2456] = {.lex_state = 223, .external_lex_state = 16}, + [2457] = {.lex_state = 205, .external_lex_state = 24}, + [2458] = {.lex_state = 223, .external_lex_state = 16}, + [2459] = {.lex_state = 205, .external_lex_state = 24}, + [2460] = {.lex_state = 205, .external_lex_state = 24}, + [2461] = {.lex_state = 223, .external_lex_state = 24}, + [2462] = {.lex_state = 223, .external_lex_state = 24}, + [2463] = {.lex_state = 223, .external_lex_state = 24}, + [2464] = {.lex_state = 68}, + [2465] = {.lex_state = 68}, + [2466] = {.lex_state = 240, .external_lex_state = 28}, + [2467] = {.lex_state = 205, .external_lex_state = 24}, + [2468] = {.lex_state = 205, .external_lex_state = 24}, + [2469] = {.lex_state = 205, .external_lex_state = 16}, + [2470] = {.lex_state = 223, .external_lex_state = 16}, + [2471] = {.lex_state = 240, .external_lex_state = 28}, + [2472] = {.lex_state = 221, .external_lex_state = 16}, + [2473] = {.lex_state = 240, .external_lex_state = 28}, + [2474] = {.lex_state = 225}, + [2475] = {.lex_state = 223, .external_lex_state = 16}, + [2476] = {.lex_state = 240, .external_lex_state = 28}, + [2477] = {.lex_state = 225}, + [2478] = {.lex_state = 223, .external_lex_state = 16}, + [2479] = {.lex_state = 225}, + [2480] = {.lex_state = 223, .external_lex_state = 16}, + [2481] = {.lex_state = 223, .external_lex_state = 16}, + [2482] = {.lex_state = 240, .external_lex_state = 28}, + [2483] = {.lex_state = 223, .external_lex_state = 16}, + [2484] = {.lex_state = 156, .external_lex_state = 25}, + [2485] = {.lex_state = 156, .external_lex_state = 25}, + [2486] = {.lex_state = 156, .external_lex_state = 25}, + [2487] = {.lex_state = 156, .external_lex_state = 13}, + [2488] = {.lex_state = 156, .external_lex_state = 13}, + [2489] = {.lex_state = 156, .external_lex_state = 13}, + [2490] = {.lex_state = 176, .external_lex_state = 19}, + [2491] = {.lex_state = 176, .external_lex_state = 19}, + [2492] = {.lex_state = 176, .external_lex_state = 19}, + [2493] = {.lex_state = 236, .external_lex_state = 13}, + [2494] = {.lex_state = 236, .external_lex_state = 13}, + [2495] = {.lex_state = 236, .external_lex_state = 13}, + [2496] = {.lex_state = 110, .external_lex_state = 21}, + [2497] = {.lex_state = 247, .external_lex_state = 7}, + [2498] = {.lex_state = 119}, + [2499] = {.lex_state = 56}, + [2500] = {.lex_state = 72}, + [2501] = {.lex_state = 56}, + [2502] = {.lex_state = 72}, + [2503] = {.lex_state = 72}, + [2504] = {.lex_state = 234, .external_lex_state = 23}, + [2505] = {.lex_state = 82, .external_lex_state = 3}, + [2506] = {.lex_state = 163}, + [2507] = {.lex_state = 82, .external_lex_state = 14}, + [2508] = {.lex_state = 82, .external_lex_state = 14}, + [2509] = {.lex_state = 82, .external_lex_state = 14}, + [2510] = {.lex_state = 82, .external_lex_state = 14}, + [2511] = {.lex_state = 82, .external_lex_state = 14}, + [2512] = {.lex_state = 221, .external_lex_state = 16}, + [2513] = {.lex_state = 82, .external_lex_state = 14}, + [2514] = {.lex_state = 225}, + [2515] = {.lex_state = 223, .external_lex_state = 16}, + [2516] = {.lex_state = 62}, + [2517] = {.lex_state = 151, .external_lex_state = 16}, + [2518] = {.lex_state = 151, .external_lex_state = 16}, + [2519] = {.lex_state = 151, .external_lex_state = 16}, + [2520] = {.lex_state = 82, .external_lex_state = 14}, + [2521] = {.lex_state = 225}, + [2522] = {.lex_state = 223, .external_lex_state = 16}, + [2523] = {.lex_state = 82, .external_lex_state = 14}, + [2524] = {.lex_state = 225}, + [2525] = {.lex_state = 223, .external_lex_state = 16}, + [2526] = {.lex_state = 82, .external_lex_state = 14}, + [2527] = {.lex_state = 82, .external_lex_state = 14}, + [2528] = {.lex_state = 82, .external_lex_state = 10}, + [2529] = {.lex_state = 82, .external_lex_state = 10}, + [2530] = {.lex_state = 82, .external_lex_state = 10}, + [2531] = {.lex_state = 221, .external_lex_state = 16}, + [2532] = {.lex_state = 82, .external_lex_state = 10}, + [2533] = {.lex_state = 225}, + [2534] = {.lex_state = 223, .external_lex_state = 16}, + [2535] = {.lex_state = 62}, + [2536] = {.lex_state = 151, .external_lex_state = 16}, + [2537] = {.lex_state = 151, .external_lex_state = 16}, + [2538] = {.lex_state = 151, .external_lex_state = 16}, + [2539] = {.lex_state = 82, .external_lex_state = 10}, + [2540] = {.lex_state = 225}, + [2541] = {.lex_state = 223, .external_lex_state = 16}, + [2542] = {.lex_state = 82, .external_lex_state = 10}, + [2543] = {.lex_state = 225}, + [2544] = {.lex_state = 223, .external_lex_state = 16}, + [2545] = {.lex_state = 82, .external_lex_state = 10}, + [2546] = {.lex_state = 82, .external_lex_state = 10}, + [2547] = {.lex_state = 110, .external_lex_state = 23}, + [2548] = {.lex_state = 247, .external_lex_state = 5}, + [2549] = {.lex_state = 247, .external_lex_state = 5}, + [2550] = {.lex_state = 247, .external_lex_state = 5}, + [2551] = {.lex_state = 247, .external_lex_state = 7}, + [2552] = {.lex_state = 173, .external_lex_state = 2}, + [2553] = {.lex_state = 173, .external_lex_state = 2}, + [2554] = {.lex_state = 173, .external_lex_state = 2}, + [2555] = {.lex_state = 72}, + [2556] = {.lex_state = 82, .external_lex_state = 4}, + [2557] = {.lex_state = 110, .external_lex_state = 8}, + [2558] = {.lex_state = 173, .external_lex_state = 2}, + [2559] = {.lex_state = 173, .external_lex_state = 2}, + [2560] = {.lex_state = 173, .external_lex_state = 2}, + [2561] = {.lex_state = 72}, + [2562] = {.lex_state = 82, .external_lex_state = 4}, + [2563] = {.lex_state = 110, .external_lex_state = 8}, + [2564] = {.lex_state = 173, .external_lex_state = 2}, + [2565] = {.lex_state = 234, .external_lex_state = 27}, + [2566] = {.lex_state = 234, .external_lex_state = 27}, + [2567] = {.lex_state = 234, .external_lex_state = 27}, + [2568] = {.lex_state = 234, .external_lex_state = 27}, + [2569] = {.lex_state = 223, .external_lex_state = 16}, + [2570] = {.lex_state = 234, .external_lex_state = 27}, + [2571] = {.lex_state = 223, .external_lex_state = 16}, + [2572] = {.lex_state = 234, .external_lex_state = 27}, + [2573] = {.lex_state = 223, .external_lex_state = 16}, + [2574] = {.lex_state = 234, .external_lex_state = 27}, + [2575] = {.lex_state = 234, .external_lex_state = 27}, + [2576] = {.lex_state = 205, .external_lex_state = 24}, + [2577] = {.lex_state = 205, .external_lex_state = 24}, + [2578] = {.lex_state = 205, .external_lex_state = 24}, + [2579] = {.lex_state = 240, .external_lex_state = 28}, + [2580] = {.lex_state = 240, .external_lex_state = 28}, + [2581] = {.lex_state = 240, .external_lex_state = 28}, + [2582] = {.lex_state = 223, .external_lex_state = 16}, + [2583] = {.lex_state = 205, .external_lex_state = 24}, + [2584] = {.lex_state = 205, .external_lex_state = 24}, + [2585] = {.lex_state = 205, .external_lex_state = 16}, + [2586] = {.lex_state = 223, .external_lex_state = 16}, + [2587] = {.lex_state = 240, .external_lex_state = 28}, + [2588] = {.lex_state = 223, .external_lex_state = 16}, + [2589] = {.lex_state = 240, .external_lex_state = 28}, + [2590] = {.lex_state = 223, .external_lex_state = 16}, + [2591] = {.lex_state = 240, .external_lex_state = 28}, + [2592] = {.lex_state = 223, .external_lex_state = 16}, + [2593] = {.lex_state = 240, .external_lex_state = 28}, + [2594] = {.lex_state = 223, .external_lex_state = 16}, + [2595] = {.lex_state = 110, .external_lex_state = 21}, + [2596] = {.lex_state = 110, .external_lex_state = 23}, + [2597] = {.lex_state = 72}, + [2598] = {.lex_state = 245, .external_lex_state = 10}, + [2599] = {.lex_state = 90}, + [2600] = {.lex_state = 97}, + [2601] = {.lex_state = 245, .external_lex_state = 10}, + [2602] = {.lex_state = 97, .external_lex_state = 6}, + [2603] = {.lex_state = 56, .external_lex_state = 2}, + [2604] = {.lex_state = 56, .external_lex_state = 2}, + [2605] = {.lex_state = 56, .external_lex_state = 2}, + [2606] = {.lex_state = 72}, + [2607] = {.lex_state = 247, .external_lex_state = 27}, + [2608] = {.lex_state = 247, .external_lex_state = 27}, + [2609] = {.lex_state = 247, .external_lex_state = 27}, + [2610] = {.lex_state = 247, .external_lex_state = 27}, + [2611] = {.lex_state = 234, .external_lex_state = 23}, + [2612] = {.lex_state = 82, .external_lex_state = 3}, + [2613] = {.lex_state = 163}, + [2614] = {.lex_state = 82, .external_lex_state = 14}, + [2615] = {.lex_state = 205, .external_lex_state = 24}, + [2616] = {.lex_state = 205, .external_lex_state = 24}, + [2617] = {.lex_state = 205, .external_lex_state = 16}, + [2618] = {.lex_state = 223, .external_lex_state = 16}, + [2619] = {.lex_state = 82, .external_lex_state = 14}, + [2620] = {.lex_state = 221, .external_lex_state = 16}, + [2621] = {.lex_state = 82, .external_lex_state = 14}, + [2622] = {.lex_state = 225}, + [2623] = {.lex_state = 223, .external_lex_state = 16}, + [2624] = {.lex_state = 82, .external_lex_state = 14}, + [2625] = {.lex_state = 225}, + [2626] = {.lex_state = 223, .external_lex_state = 16}, + [2627] = {.lex_state = 225}, + [2628] = {.lex_state = 223, .external_lex_state = 16}, + [2629] = {.lex_state = 223, .external_lex_state = 16}, + [2630] = {.lex_state = 82, .external_lex_state = 14}, + [2631] = {.lex_state = 223, .external_lex_state = 16}, + [2632] = {.lex_state = 82, .external_lex_state = 10}, + [2633] = {.lex_state = 205, .external_lex_state = 24}, + [2634] = {.lex_state = 205, .external_lex_state = 24}, + [2635] = {.lex_state = 205, .external_lex_state = 16}, + [2636] = {.lex_state = 223, .external_lex_state = 16}, + [2637] = {.lex_state = 82, .external_lex_state = 10}, + [2638] = {.lex_state = 221, .external_lex_state = 16}, + [2639] = {.lex_state = 82, .external_lex_state = 10}, + [2640] = {.lex_state = 225}, + [2641] = {.lex_state = 223, .external_lex_state = 16}, + [2642] = {.lex_state = 82, .external_lex_state = 10}, + [2643] = {.lex_state = 225}, + [2644] = {.lex_state = 223, .external_lex_state = 16}, + [2645] = {.lex_state = 225}, + [2646] = {.lex_state = 223, .external_lex_state = 16}, + [2647] = {.lex_state = 223, .external_lex_state = 16}, + [2648] = {.lex_state = 82, .external_lex_state = 10}, + [2649] = {.lex_state = 223, .external_lex_state = 16}, + [2650] = {.lex_state = 247, .external_lex_state = 5}, + [2651] = {.lex_state = 173, .external_lex_state = 2}, + [2652] = {.lex_state = 72}, + [2653] = {.lex_state = 82, .external_lex_state = 4}, + [2654] = {.lex_state = 110, .external_lex_state = 8}, + [2655] = {.lex_state = 173, .external_lex_state = 2}, + [2656] = {.lex_state = 72}, + [2657] = {.lex_state = 82, .external_lex_state = 4}, + [2658] = {.lex_state = 110, .external_lex_state = 8}, + [2659] = {.lex_state = 234, .external_lex_state = 27}, + [2660] = {.lex_state = 234, .external_lex_state = 27}, + [2661] = {.lex_state = 234, .external_lex_state = 27}, + [2662] = {.lex_state = 240, .external_lex_state = 28}, + [2663] = {.lex_state = 240, .external_lex_state = 28}, + [2664] = {.lex_state = 240, .external_lex_state = 28}, + [2665] = {.lex_state = 240, .external_lex_state = 28}, + [2666] = {.lex_state = 223, .external_lex_state = 16}, + [2667] = {.lex_state = 240, .external_lex_state = 28}, + [2668] = {.lex_state = 223, .external_lex_state = 16}, + [2669] = {.lex_state = 240, .external_lex_state = 28}, + [2670] = {.lex_state = 223, .external_lex_state = 16}, + [2671] = {.lex_state = 240, .external_lex_state = 28}, + [2672] = {.lex_state = 240, .external_lex_state = 28}, + [2673] = {.lex_state = 245, .external_lex_state = 10}, + [2674] = {.lex_state = 245, .external_lex_state = 10}, + [2675] = {.lex_state = 72}, + [2676] = {.lex_state = 245, .external_lex_state = 10}, + [2677] = {.lex_state = 245, .external_lex_state = 10}, + [2678] = {.lex_state = 90}, + [2679] = {.lex_state = 245, .external_lex_state = 10}, + [2680] = {.lex_state = 245, .external_lex_state = 10}, + [2681] = {.lex_state = 245, .external_lex_state = 10}, + [2682] = {.lex_state = 62}, + [2683] = {.lex_state = 151, .external_lex_state = 16}, + [2684] = {.lex_state = 154, .external_lex_state = 6}, + [2685] = {.lex_state = 151, .external_lex_state = 16}, + [2686] = {.lex_state = 151, .external_lex_state = 16}, + [2687] = {.lex_state = 68}, + [2688] = {.lex_state = 163, .external_lex_state = 2}, + [2689] = {.lex_state = 68}, + [2690] = {.lex_state = 171, .external_lex_state = 2}, + [2691] = {.lex_state = 68}, + [2692] = {.lex_state = 163, .external_lex_state = 2}, + [2693] = {.lex_state = 247, .external_lex_state = 27}, + [2694] = {.lex_state = 247, .external_lex_state = 27}, + [2695] = {.lex_state = 247, .external_lex_state = 27}, + [2696] = {.lex_state = 82, .external_lex_state = 3}, + [2697] = {.lex_state = 82, .external_lex_state = 14}, + [2698] = {.lex_state = 82, .external_lex_state = 14}, + [2699] = {.lex_state = 82, .external_lex_state = 14}, + [2700] = {.lex_state = 223, .external_lex_state = 16}, + [2701] = {.lex_state = 205, .external_lex_state = 24}, + [2702] = {.lex_state = 205, .external_lex_state = 24}, + [2703] = {.lex_state = 205, .external_lex_state = 16}, + [2704] = {.lex_state = 223, .external_lex_state = 16}, + [2705] = {.lex_state = 82, .external_lex_state = 14}, + [2706] = {.lex_state = 223, .external_lex_state = 16}, + [2707] = {.lex_state = 82, .external_lex_state = 14}, + [2708] = {.lex_state = 223, .external_lex_state = 16}, + [2709] = {.lex_state = 82, .external_lex_state = 14}, + [2710] = {.lex_state = 223, .external_lex_state = 16}, + [2711] = {.lex_state = 82, .external_lex_state = 14}, + [2712] = {.lex_state = 223, .external_lex_state = 16}, + [2713] = {.lex_state = 82, .external_lex_state = 10}, + [2714] = {.lex_state = 82, .external_lex_state = 10}, + [2715] = {.lex_state = 82, .external_lex_state = 10}, + [2716] = {.lex_state = 223, .external_lex_state = 16}, + [2717] = {.lex_state = 205, .external_lex_state = 24}, + [2718] = {.lex_state = 205, .external_lex_state = 24}, + [2719] = {.lex_state = 205, .external_lex_state = 16}, + [2720] = {.lex_state = 223, .external_lex_state = 16}, + [2721] = {.lex_state = 82, .external_lex_state = 10}, + [2722] = {.lex_state = 223, .external_lex_state = 16}, + [2723] = {.lex_state = 82, .external_lex_state = 10}, + [2724] = {.lex_state = 223, .external_lex_state = 16}, + [2725] = {.lex_state = 82, .external_lex_state = 10}, + [2726] = {.lex_state = 223, .external_lex_state = 16}, + [2727] = {.lex_state = 82, .external_lex_state = 10}, + [2728] = {.lex_state = 223, .external_lex_state = 16}, + [2729] = {.lex_state = 173, .external_lex_state = 2}, + [2730] = {.lex_state = 173, .external_lex_state = 2}, + [2731] = {.lex_state = 240, .external_lex_state = 28}, + [2732] = {.lex_state = 240, .external_lex_state = 28}, + [2733] = {.lex_state = 240, .external_lex_state = 28}, + [2734] = {.lex_state = 245, .external_lex_state = 10}, + [2735] = {.lex_state = 245, .external_lex_state = 10}, + [2736] = {.lex_state = 245, .external_lex_state = 10}, + [2737] = {.lex_state = 221, .external_lex_state = 16}, + [2738] = {.lex_state = 245, .external_lex_state = 10}, + [2739] = {.lex_state = 225}, + [2740] = {.lex_state = 223, .external_lex_state = 16}, + [2741] = {.lex_state = 62}, + [2742] = {.lex_state = 151, .external_lex_state = 16}, + [2743] = {.lex_state = 151, .external_lex_state = 16}, + [2744] = {.lex_state = 151, .external_lex_state = 16}, + [2745] = {.lex_state = 245, .external_lex_state = 10}, + [2746] = {.lex_state = 225}, + [2747] = {.lex_state = 223, .external_lex_state = 16}, + [2748] = {.lex_state = 245, .external_lex_state = 10}, + [2749] = {.lex_state = 225}, + [2750] = {.lex_state = 223, .external_lex_state = 16}, + [2751] = {.lex_state = 245, .external_lex_state = 10}, + [2752] = {.lex_state = 245, .external_lex_state = 10}, + [2753] = {.lex_state = 247, .external_lex_state = 27}, + [2754] = {.lex_state = 82, .external_lex_state = 14}, + [2755] = {.lex_state = 82, .external_lex_state = 14}, + [2756] = {.lex_state = 82, .external_lex_state = 14}, + [2757] = {.lex_state = 82, .external_lex_state = 14}, + [2758] = {.lex_state = 223, .external_lex_state = 16}, + [2759] = {.lex_state = 82, .external_lex_state = 14}, + [2760] = {.lex_state = 223, .external_lex_state = 16}, + [2761] = {.lex_state = 82, .external_lex_state = 14}, + [2762] = {.lex_state = 223, .external_lex_state = 16}, + [2763] = {.lex_state = 82, .external_lex_state = 14}, + [2764] = {.lex_state = 82, .external_lex_state = 14}, + [2765] = {.lex_state = 82, .external_lex_state = 10}, + [2766] = {.lex_state = 82, .external_lex_state = 10}, + [2767] = {.lex_state = 82, .external_lex_state = 10}, + [2768] = {.lex_state = 82, .external_lex_state = 10}, + [2769] = {.lex_state = 223, .external_lex_state = 16}, + [2770] = {.lex_state = 82, .external_lex_state = 10}, + [2771] = {.lex_state = 223, .external_lex_state = 16}, + [2772] = {.lex_state = 82, .external_lex_state = 10}, + [2773] = {.lex_state = 223, .external_lex_state = 16}, + [2774] = {.lex_state = 82, .external_lex_state = 10}, + [2775] = {.lex_state = 82, .external_lex_state = 10}, + [2776] = {.lex_state = 245, .external_lex_state = 10}, + [2777] = {.lex_state = 205, .external_lex_state = 24}, + [2778] = {.lex_state = 205, .external_lex_state = 24}, + [2779] = {.lex_state = 205, .external_lex_state = 16}, + [2780] = {.lex_state = 223, .external_lex_state = 16}, + [2781] = {.lex_state = 245, .external_lex_state = 10}, + [2782] = {.lex_state = 221, .external_lex_state = 16}, + [2783] = {.lex_state = 245, .external_lex_state = 10}, + [2784] = {.lex_state = 225}, + [2785] = {.lex_state = 223, .external_lex_state = 16}, + [2786] = {.lex_state = 245, .external_lex_state = 10}, + [2787] = {.lex_state = 225}, + [2788] = {.lex_state = 223, .external_lex_state = 16}, + [2789] = {.lex_state = 225}, + [2790] = {.lex_state = 223, .external_lex_state = 16}, + [2791] = {.lex_state = 223, .external_lex_state = 16}, + [2792] = {.lex_state = 245, .external_lex_state = 10}, + [2793] = {.lex_state = 223, .external_lex_state = 16}, + [2794] = {.lex_state = 82, .external_lex_state = 14}, + [2795] = {.lex_state = 82, .external_lex_state = 14}, + [2796] = {.lex_state = 82, .external_lex_state = 14}, + [2797] = {.lex_state = 82, .external_lex_state = 10}, + [2798] = {.lex_state = 82, .external_lex_state = 10}, + [2799] = {.lex_state = 82, .external_lex_state = 10}, + [2800] = {.lex_state = 245, .external_lex_state = 10}, + [2801] = {.lex_state = 245, .external_lex_state = 10}, + [2802] = {.lex_state = 245, .external_lex_state = 10}, + [2803] = {.lex_state = 223, .external_lex_state = 16}, + [2804] = {.lex_state = 205, .external_lex_state = 24}, + [2805] = {.lex_state = 205, .external_lex_state = 24}, + [2806] = {.lex_state = 205, .external_lex_state = 16}, + [2807] = {.lex_state = 223, .external_lex_state = 16}, + [2808] = {.lex_state = 245, .external_lex_state = 10}, + [2809] = {.lex_state = 223, .external_lex_state = 16}, + [2810] = {.lex_state = 245, .external_lex_state = 10}, + [2811] = {.lex_state = 223, .external_lex_state = 16}, + [2812] = {.lex_state = 245, .external_lex_state = 10}, + [2813] = {.lex_state = 223, .external_lex_state = 16}, + [2814] = {.lex_state = 245, .external_lex_state = 10}, + [2815] = {.lex_state = 223, .external_lex_state = 16}, + [2816] = {.lex_state = 245, .external_lex_state = 10}, + [2817] = {.lex_state = 245, .external_lex_state = 10}, + [2818] = {.lex_state = 245, .external_lex_state = 10}, + [2819] = {.lex_state = 245, .external_lex_state = 10}, + [2820] = {.lex_state = 223, .external_lex_state = 16}, + [2821] = {.lex_state = 245, .external_lex_state = 10}, + [2822] = {.lex_state = 223, .external_lex_state = 16}, + [2823] = {.lex_state = 245, .external_lex_state = 10}, + [2824] = {.lex_state = 223, .external_lex_state = 16}, + [2825] = {.lex_state = 245, .external_lex_state = 10}, + [2826] = {.lex_state = 245, .external_lex_state = 10}, + [2827] = {.lex_state = 245, .external_lex_state = 10}, + [2828] = {.lex_state = 245, .external_lex_state = 10}, + [2829] = {.lex_state = 245, .external_lex_state = 10}, }; enum { @@ -11554,40 +8066,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym__concat] = ACTIONS(1), [sym_variable_name] = ACTIONS(1), [ts_builtin_sym_end] = ACTIONS(1), - [anon_sym_for] = ACTIONS(3), - [anon_sym_in] = ACTIONS(3), - [anon_sym_while] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1), + [anon_sym_in] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), [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_done] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_then] = ACTIONS(1), + [anon_sym_fi] = ACTIONS(1), + [anon_sym_elif] = ACTIONS(1), + [anon_sym_else] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_esac] = ACTIONS(1), [anon_sym_PIPE] = ACTIONS(3), [anon_sym_RPAREN] = ACTIONS(1), [anon_sym_SEMI_SEMI] = ACTIONS(1), - [anon_sym_function] = ACTIONS(3), + [anon_sym_function] = ACTIONS(1), [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_BANG] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(3), - [anon_sym_RBRACK] = ACTIONS(3), + [anon_sym_RBRACK] = ACTIONS(1), [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_declare] = ACTIONS(1), + [anon_sym_typeset] = ACTIONS(1), + [anon_sym_export] = ACTIONS(1), + [anon_sym_readonly] = ACTIONS(1), + [anon_sym_local] = ACTIONS(1), [anon_sym_unset] = ACTIONS(3), - [anon_sym_unsetenv] = ACTIONS(3), + [anon_sym_unsetenv] = ACTIONS(1), [anon_sym_EQ_TILDE] = ACTIONS(1), [anon_sym_EQ_EQ] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(3), @@ -11602,7 +8113,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(3), [anon_sym_LT_LT_DASH] = ACTIONS(1), [anon_sym_LT_LT_LT] = ACTIONS(1), - [anon_sym_BANG_EQ] = ACTIONS(1), [sym__special_characters] = ACTIONS(3), [anon_sym_DQUOTE] = ACTIONS(1), [anon_sym_DOLLAR] = ACTIONS(3), @@ -11620,12 +8130,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(1), [anon_sym_GT_LPAREN] = ACTIONS(1), [sym_comment] = ACTIONS(3), - [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(3), - [anon_sym__] = ACTIONS(3), + [anon_sym_0] = ACTIONS(1), + [anon_sym__] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_AMP] = ACTIONS(3), }, @@ -12581,6 +9090,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym__simple_heredoc_body] = ACTIONS(247), [sym__heredoc_body_beginning] = ACTIONS(247), [sym_file_descriptor] = ACTIONS(247), + [anon_sym_esac] = ACTIONS(249), [anon_sym_PIPE] = ACTIONS(249), [anon_sym_RPAREN] = ACTIONS(249), [anon_sym_SEMI_SEMI] = ACTIONS(249), @@ -15372,6 +11882,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_beginning] = ACTIONS(697), [sym_file_descriptor] = ACTIONS(697), [sym__concat] = ACTIONS(697), + [anon_sym_esac] = ACTIONS(699), [anon_sym_PIPE] = ACTIONS(699), [anon_sym_RPAREN] = ACTIONS(699), [anon_sym_SEMI_SEMI] = ACTIONS(699), @@ -15586,6 +12097,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_beginning] = ACTIONS(727), [sym_file_descriptor] = ACTIONS(727), [sym__concat] = ACTIONS(727), + [anon_sym_esac] = ACTIONS(729), [anon_sym_PIPE] = ACTIONS(729), [anon_sym_RPAREN] = ACTIONS(729), [anon_sym_SEMI_SEMI] = ACTIONS(729), @@ -15624,6 +12136,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_beginning] = ACTIONS(731), [sym_file_descriptor] = ACTIONS(731), [sym__concat] = ACTIONS(731), + [anon_sym_esac] = ACTIONS(733), [anon_sym_PIPE] = ACTIONS(733), [anon_sym_RPAREN] = ACTIONS(733), [anon_sym_SEMI_SEMI] = ACTIONS(733), @@ -15662,6 +12175,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_beginning] = ACTIONS(735), [sym_file_descriptor] = ACTIONS(735), [sym__concat] = ACTIONS(735), + [anon_sym_esac] = ACTIONS(737), [anon_sym_PIPE] = ACTIONS(737), [anon_sym_RPAREN] = ACTIONS(737), [anon_sym_SEMI_SEMI] = ACTIONS(737), @@ -17223,8 +13737,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [ts_builtin_sym_end] = ACTIONS(951), [anon_sym_for] = ACTIONS(953), [anon_sym_while] = ACTIONS(953), + [anon_sym_done] = ACTIONS(953), [anon_sym_if] = ACTIONS(953), + [anon_sym_fi] = ACTIONS(953), + [anon_sym_elif] = ACTIONS(953), + [anon_sym_else] = ACTIONS(953), [anon_sym_case] = ACTIONS(953), + [anon_sym_esac] = ACTIONS(953), [anon_sym_SEMI_SEMI] = ACTIONS(951), [anon_sym_function] = ACTIONS(953), [anon_sym_LPAREN] = ACTIONS(951), @@ -17816,6 +14335,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [212] = { [sym_file_descriptor] = ACTIONS(1107), [sym_variable_name] = ACTIONS(1107), + [anon_sym_esac] = ACTIONS(1109), [anon_sym_PIPE] = ACTIONS(1109), [anon_sym_RPAREN] = ACTIONS(1109), [anon_sym_SEMI_SEMI] = ACTIONS(1109), @@ -18162,48 +14682,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(301), }, [222] = { - [sym_concatenation] = STATE(595), - [sym_string] = STATE(590), - [sym_simple_expansion] = STATE(590), - [sym_string_expansion] = STATE(590), - [sym_expansion] = STATE(590), - [sym_command_substitution] = STATE(590), - [sym_process_substitution] = STATE(590), - [aux_sym_for_statement_repeat1] = STATE(595), + [sym_concatenation] = STATE(589), + [sym_string] = STATE(588), + [sym_simple_expansion] = STATE(588), + [sym_string_expansion] = STATE(588), + [sym_expansion] = STATE(588), + [sym_command_substitution] = STATE(588), + [sym_process_substitution] = STATE(588), + [aux_sym_for_statement_repeat1] = STATE(589), [sym__special_characters] = ACTIONS(1155), - [anon_sym_DQUOTE] = ACTIONS(1157), - [anon_sym_DOLLAR] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(1161), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1163), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1165), - [anon_sym_BQUOTE] = ACTIONS(1167), - [anon_sym_LT_LPAREN] = ACTIONS(1169), - [anon_sym_GT_LPAREN] = ACTIONS(1169), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(71), + [sym_raw_string] = ACTIONS(1157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(75), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(77), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LT_LPAREN] = ACTIONS(81), + [anon_sym_GT_LPAREN] = ACTIONS(81), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1161), + [sym_word] = ACTIONS(1157), }, [223] = { - [sym_do_group] = STATE(597), - [anon_sym_do] = ACTIONS(1171), + [sym_do_group] = STATE(591), + [anon_sym_do] = ACTIONS(1159), [sym_comment] = ACTIONS(53), }, [224] = { - [sym__terminated_statement] = STATE(601), - [sym_for_statement] = STATE(599), - [sym_while_statement] = STATE(599), - [sym_if_statement] = STATE(599), - [sym_case_statement] = STATE(599), - [sym_function_definition] = STATE(599), - [sym_subshell] = STATE(599), - [sym_pipeline] = STATE(599), - [sym_list] = STATE(599), - [sym_negated_command] = STATE(599), - [sym_test_command] = STATE(599), - [sym_declaration_command] = STATE(599), - [sym_unset_command] = STATE(599), - [sym_command] = STATE(599), + [sym__terminated_statement] = STATE(593), + [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_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(600), + [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -18213,13 +14733,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(601), + [aux_sym_program_repeat1] = STATE(593), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), [anon_sym_while] = ACTIONS(13), - [anon_sym_done] = ACTIONS(1173), + [anon_sym_done] = ACTIONS(1161), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), @@ -18254,19 +14774,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(55), }, [225] = { - [sym_file_redirect] = STATE(603), - [sym_heredoc_redirect] = STATE(603), - [sym_heredoc_body] = STATE(602), - [sym_herestring_redirect] = STATE(603), - [aux_sym_while_statement_repeat1] = STATE(603), + [sym_file_redirect] = STATE(595), + [sym_heredoc_redirect] = STATE(595), + [sym_heredoc_body] = STATE(594), + [sym_herestring_redirect] = STATE(595), + [aux_sym_while_statement_repeat1] = STATE(595), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), [sym_file_descriptor] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(1175), - [anon_sym_SEMI_SEMI] = ACTIONS(1175), - [anon_sym_PIPE_AMP] = ACTIONS(1175), - [anon_sym_AMP_AMP] = ACTIONS(1175), - [anon_sym_PIPE_PIPE] = ACTIONS(1175), + [anon_sym_PIPE] = ACTIONS(1163), + [anon_sym_SEMI_SEMI] = ACTIONS(1163), + [anon_sym_PIPE_AMP] = ACTIONS(1163), + [anon_sym_AMP_AMP] = ACTIONS(1163), + [anon_sym_PIPE_PIPE] = ACTIONS(1163), [anon_sym_LT] = ACTIONS(347), [anon_sym_GT] = ACTIONS(347), [anon_sym_GT_GT] = ACTIONS(347), @@ -18278,9 +14798,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(349), [anon_sym_LT_LT_LT] = ACTIONS(351), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_LF] = ACTIONS(1177), - [anon_sym_AMP] = ACTIONS(1175), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym_LF] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1163), }, [226] = { [anon_sym_do] = ACTIONS(951), @@ -18288,24 +14808,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [227] = { - [sym__terminated_statement] = STATE(611), - [sym_for_statement] = STATE(607), - [sym_while_statement] = STATE(607), - [sym_if_statement] = STATE(607), - [sym_elif_clause] = STATE(608), - [sym_else_clause] = STATE(609), - [sym_case_statement] = STATE(607), - [sym_function_definition] = STATE(607), - [sym_subshell] = STATE(607), - [sym_pipeline] = STATE(607), - [sym_list] = STATE(607), - [sym_negated_command] = STATE(607), - [sym_test_command] = STATE(607), - [sym_declaration_command] = STATE(607), - [sym_unset_command] = STATE(607), - [sym_command] = STATE(607), + [sym__terminated_statement] = STATE(601), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_elif_clause] = STATE(599), + [sym_else_clause] = STATE(600), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(610), + [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -18315,17 +14835,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(611), - [aux_sym_if_statement_repeat1] = STATE(612), + [aux_sym_program_repeat1] = STATE(601), + [aux_sym_if_statement_repeat1] = STATE(602), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), [anon_sym_while] = ACTIONS(13), [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(1179), - [anon_sym_elif] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1183), + [anon_sym_fi] = ACTIONS(1167), + [anon_sym_elif] = ACTIONS(1169), + [anon_sym_else] = ACTIONS(1171), [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), @@ -18359,37 +14879,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(55), }, [228] = { - [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(1185), + [sym_string] = STATE(603), + [sym_simple_expansion] = STATE(603), + [sym_string_expansion] = STATE(603), + [sym_expansion] = STATE(603), + [sym_command_substitution] = STATE(603), + [sym_process_substitution] = STATE(603), + [sym__special_characters] = ACTIONS(1173), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_DOLLAR] = ACTIONS(71), - [sym_raw_string] = ACTIONS(1185), + [sym_raw_string] = ACTIONS(1173), [anon_sym_DOLLAR_LBRACE] = ACTIONS(75), [anon_sym_DOLLAR_LPAREN] = ACTIONS(77), [anon_sym_BQUOTE] = ACTIONS(79), [anon_sym_LT_LPAREN] = ACTIONS(81), [anon_sym_GT_LPAREN] = ACTIONS(81), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1185), + [sym_word] = ACTIONS(1173), }, [229] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1187), + [anon_sym_SEMI_SEMI] = ACTIONS(1175), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1187), - [anon_sym_LF] = ACTIONS(1189), - [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_SEMI] = ACTIONS(1175), + [anon_sym_LF] = ACTIONS(1177), + [anon_sym_AMP] = ACTIONS(1175), }, [230] = { - [anon_sym_in] = ACTIONS(1191), + [anon_sym_in] = ACTIONS(1179), [sym_comment] = ACTIONS(53), }, [231] = { - [aux_sym_concatenation_repeat1] = STATE(616), + [aux_sym_concatenation_repeat1] = STATE(606), [sym__concat] = ACTIONS(419), [anon_sym_in] = ACTIONS(695), [anon_sym_SEMI_SEMI] = ACTIONS(695), @@ -18402,7 +14922,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym__concat] = ACTIONS(697), [anon_sym_in] = ACTIONS(699), [anon_sym_SEMI_SEMI] = ACTIONS(699), + [sym__special_characters] = ACTIONS(699), + [anon_sym_DQUOTE] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(699), + [sym_raw_string] = ACTIONS(699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(699), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(699), + [anon_sym_BQUOTE] = ACTIONS(699), + [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_GT_LPAREN] = ACTIONS(699), [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(699), [anon_sym_SEMI] = ACTIONS(699), [anon_sym_LF] = ACTIONS(697), [anon_sym_AMP] = ACTIONS(699), @@ -18412,7 +14942,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1181), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -18424,7 +14954,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym__concat] = ACTIONS(727), [anon_sym_in] = ACTIONS(729), [anon_sym_SEMI_SEMI] = ACTIONS(729), + [sym__special_characters] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [sym_raw_string] = ACTIONS(729), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(729), [anon_sym_SEMI] = ACTIONS(729), [anon_sym_LF] = ACTIONS(727), [anon_sym_AMP] = ACTIONS(729), @@ -18433,7 +14973,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym__concat] = ACTIONS(731), [anon_sym_in] = ACTIONS(733), [anon_sym_SEMI_SEMI] = ACTIONS(733), + [sym__special_characters] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [sym_raw_string] = ACTIONS(733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(733), [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(733), [anon_sym_SEMI] = ACTIONS(733), [anon_sym_LF] = ACTIONS(731), [anon_sym_AMP] = ACTIONS(733), @@ -18442,50 +14992,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym__concat] = ACTIONS(735), [anon_sym_in] = ACTIONS(737), [anon_sym_SEMI_SEMI] = ACTIONS(737), + [sym__special_characters] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(737), + [sym_raw_string] = ACTIONS(737), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), + [anon_sym_BQUOTE] = ACTIONS(737), + [anon_sym_LT_LPAREN] = ACTIONS(737), + [anon_sym_GT_LPAREN] = ACTIONS(737), [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(737), [anon_sym_SEMI] = ACTIONS(737), [anon_sym_LF] = ACTIONS(735), [anon_sym_AMP] = ACTIONS(737), }, [237] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1195), + [anon_sym_SEMI_SEMI] = ACTIONS(1183), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_LF] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym_LF] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1183), }, [238] = { - [anon_sym_in] = ACTIONS(1199), + [anon_sym_in] = ACTIONS(1187), [sym_comment] = ACTIONS(53), }, [239] = { [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(1201), + [anon_sym_EQ] = ACTIONS(1189), [sym_comment] = ACTIONS(53), }, [240] = { - [sym_concatenation] = STATE(623), + [sym_concatenation] = STATE(613), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(623), - [anon_sym_RBRACE] = ACTIONS(1203), - [anon_sym_EQ] = ACTIONS(1205), + [aux_sym_expansion_repeat1] = STATE(613), + [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_EQ] = ACTIONS(1193), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1207), + [anon_sym_POUND] = ACTIONS(1195), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1209), - [anon_sym_COLON] = ACTIONS(1205), - [anon_sym_COLON_QMARK] = ACTIONS(1205), - [anon_sym_COLON_DASH] = ACTIONS(1205), - [anon_sym_PERCENT] = ACTIONS(1205), - [anon_sym_DASH] = ACTIONS(1205), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -18494,41 +15054,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [241] = { - [sym_subscript] = STATE(627), - [sym_variable_name] = ACTIONS(1211), - [anon_sym_DOLLAR] = ACTIONS(1213), - [anon_sym_DASH] = ACTIONS(1213), + [sym_subscript] = STATE(617), + [sym_variable_name] = ACTIONS(1199), + [anon_sym_DOLLAR] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1215), - [anon_sym_STAR] = ACTIONS(1213), - [anon_sym_AT] = ACTIONS(1213), - [anon_sym_QMARK] = ACTIONS(1213), - [anon_sym_0] = ACTIONS(1217), - [anon_sym__] = ACTIONS(1217), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_AT] = ACTIONS(1201), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_0] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), }, [242] = { - [sym_concatenation] = STATE(630), + [sym_concatenation] = STATE(620), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(630), - [anon_sym_RBRACE] = ACTIONS(1219), - [anon_sym_EQ] = ACTIONS(1221), + [aux_sym_expansion_repeat1] = STATE(620), + [anon_sym_RBRACE] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1209), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1223), + [anon_sym_POUND] = ACTIONS(1211), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1225), - [anon_sym_COLON] = ACTIONS(1221), - [anon_sym_COLON_QMARK] = ACTIONS(1221), - [anon_sym_COLON_DASH] = ACTIONS(1221), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1221), + [aux_sym_SLASH] = ACTIONS(1213), + [anon_sym_COLON] = ACTIONS(1209), + [anon_sym_COLON_QMARK] = ACTIONS(1209), + [anon_sym_COLON_DASH] = ACTIONS(1209), + [anon_sym_PERCENT] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1209), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -18537,28 +15097,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [243] = { - [sym_concatenation] = STATE(633), + [sym_concatenation] = STATE(623), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(633), - [anon_sym_RBRACE] = ACTIONS(1227), - [anon_sym_EQ] = ACTIONS(1229), + [aux_sym_expansion_repeat1] = STATE(623), + [anon_sym_RBRACE] = ACTIONS(1215), + [anon_sym_EQ] = ACTIONS(1217), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1231), + [anon_sym_POUND] = ACTIONS(1219), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1233), - [anon_sym_COLON] = ACTIONS(1229), - [anon_sym_COLON_QMARK] = ACTIONS(1229), - [anon_sym_COLON_DASH] = ACTIONS(1229), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), + [aux_sym_SLASH] = ACTIONS(1221), + [anon_sym_COLON] = ACTIONS(1217), + [anon_sym_COLON_QMARK] = ACTIONS(1217), + [anon_sym_COLON_DASH] = ACTIONS(1217), + [anon_sym_PERCENT] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -18568,7 +15128,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [244] = { [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1235), + [anon_sym_RPAREN] = ACTIONS(1223), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -18578,7 +15138,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1235), + [anon_sym_RPAREN] = ACTIONS(1223), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -18606,7 +15166,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(925), [anon_sym_AMP_AMP] = ACTIONS(927), [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1223), [sym_comment] = ACTIONS(53), }, [247] = { @@ -18629,7 +15189,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(369), [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1223), [anon_sym_LT_LPAREN] = ACTIONS(369), [anon_sym_GT_LPAREN] = ACTIONS(369), [sym_comment] = ACTIONS(53), @@ -18637,7 +15197,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [248] = { [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1237), + [anon_sym_RPAREN] = ACTIONS(1225), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -18647,7 +15207,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1237), + [anon_sym_RPAREN] = ACTIONS(1225), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -18671,26 +15231,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(369), }, [250] = { - [anon_sym_RPAREN] = ACTIONS(1239), + [anon_sym_RPAREN] = ACTIONS(1227), [sym_comment] = ACTIONS(53), }, [251] = { - [sym__terminated_statement] = STATE(640), - [sym_for_statement] = STATE(638), - [sym_while_statement] = STATE(638), - [sym_if_statement] = STATE(638), - [sym_case_statement] = STATE(638), - [sym_function_definition] = STATE(638), - [sym_subshell] = STATE(638), - [sym_pipeline] = STATE(638), - [sym_list] = STATE(638), - [sym_negated_command] = STATE(638), - [sym_test_command] = STATE(638), - [sym_declaration_command] = STATE(638), - [sym_unset_command] = STATE(638), - [sym_command] = STATE(638), + [sym__terminated_statement] = STATE(630), + [sym_for_statement] = STATE(628), + [sym_while_statement] = STATE(628), + [sym_if_statement] = STATE(628), + [sym_case_statement] = STATE(628), + [sym_function_definition] = STATE(628), + [sym_subshell] = STATE(628), + [sym_pipeline] = STATE(628), + [sym_list] = STATE(628), + [sym_negated_command] = STATE(628), + [sym_test_command] = STATE(628), + [sym_declaration_command] = STATE(628), + [sym_unset_command] = STATE(628), + [sym_command] = STATE(628), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(639), + [sym_variable_assignment] = STATE(629), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -18700,7 +15260,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(640), + [aux_sym_program_repeat1] = STATE(630), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), @@ -18710,7 +15270,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1229), [anon_sym_BANG] = ACTIONS(23), [anon_sym_LBRACK] = ACTIONS(25), [anon_sym_LBRACK_LBRACK] = ACTIONS(27), @@ -18741,63 +15301,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(55), }, [252] = { - [sym_file_redirect] = STATE(643), - [sym_file_descriptor] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_SEMI_SEMI] = 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(1247), - [anon_sym_AMP_GT] = ACTIONS(1247), - [anon_sym_AMP_GT_GT] = ACTIONS(1247), - [anon_sym_LT_AMP] = ACTIONS(1247), - [anon_sym_GT_AMP] = ACTIONS(1247), + [sym_file_redirect] = STATE(633), + [sym_file_descriptor] = ACTIONS(1231), + [anon_sym_PIPE] = ACTIONS(1233), + [anon_sym_SEMI_SEMI] = ACTIONS(1233), + [anon_sym_PIPE_AMP] = ACTIONS(1233), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1235), + [anon_sym_LT_AMP] = ACTIONS(1235), + [anon_sym_GT_AMP] = ACTIONS(1235), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_LF] = ACTIONS(1249), - [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_LF] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(1233), }, [253] = { [sym_concatenation] = STATE(212), - [sym_string] = STATE(645), + [sym_string] = STATE(635), [sym_array] = STATE(212), - [sym_simple_expansion] = STATE(645), - [sym_string_expansion] = STATE(645), - [sym_expansion] = STATE(645), - [sym_command_substitution] = STATE(645), - [sym_process_substitution] = STATE(645), + [sym_simple_expansion] = STATE(635), + [sym_string_expansion] = STATE(635), + [sym_expansion] = STATE(635), + [sym_command_substitution] = STATE(635), + [sym_process_substitution] = STATE(635), [sym__empty_value] = ACTIONS(385), [anon_sym_LPAREN] = ACTIONS(387), - [sym__special_characters] = ACTIONS(1251), + [sym__special_characters] = ACTIONS(1239), [anon_sym_DQUOTE] = ACTIONS(391), [anon_sym_DOLLAR] = ACTIONS(393), - [sym_raw_string] = ACTIONS(1253), + [sym_raw_string] = ACTIONS(1241), [anon_sym_DOLLAR_LBRACE] = ACTIONS(397), [anon_sym_DOLLAR_LPAREN] = ACTIONS(399), [anon_sym_BQUOTE] = ACTIONS(401), [anon_sym_LT_LPAREN] = ACTIONS(403), [anon_sym_GT_LPAREN] = ACTIONS(403), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1253), + [sym_word] = ACTIONS(1241), }, [254] = { - [sym_do_group] = STATE(646), + [sym_do_group] = STATE(636), [anon_sym_do] = ACTIONS(411), [sym_comment] = ACTIONS(53), }, [255] = { - [sym_compound_statement] = STATE(648), - [anon_sym_LPAREN] = ACTIONS(1255), + [sym_compound_statement] = STATE(638), + [anon_sym_LPAREN] = ACTIONS(1243), [anon_sym_LBRACE] = ACTIONS(455), [sym_comment] = ACTIONS(53), }, [256] = { [anon_sym_AMP_AMP] = ACTIONS(543), [anon_sym_PIPE_PIPE] = ACTIONS(543), - [anon_sym_RBRACK] = ACTIONS(1257), + [anon_sym_RBRACK] = ACTIONS(1245), [anon_sym_EQ_TILDE] = ACTIONS(547), [anon_sym_EQ_EQ] = ACTIONS(547), [anon_sym_EQ] = ACTIONS(549), @@ -18810,7 +15370,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [257] = { [anon_sym_AMP_AMP] = ACTIONS(573), [anon_sym_PIPE_PIPE] = ACTIONS(573), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1257), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1245), [anon_sym_EQ_TILDE] = ACTIONS(575), [anon_sym_EQ_EQ] = ACTIONS(575), [anon_sym_EQ] = ACTIONS(577), @@ -18822,12 +15382,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [258] = { [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(1259), - [anon_sym_PLUS_EQ] = ACTIONS(1259), + [anon_sym_EQ] = ACTIONS(1247), + [anon_sym_PLUS_EQ] = ACTIONS(1247), [sym_comment] = ACTIONS(53), }, [259] = { - [aux_sym_concatenation_repeat1] = STATE(651), + [aux_sym_concatenation_repeat1] = STATE(641), [sym__concat] = ACTIONS(581), [sym_variable_name] = ACTIONS(583), [anon_sym_PIPE] = ACTIONS(585), @@ -18853,7 +15413,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(585), }, [260] = { - [aux_sym_concatenation_repeat1] = STATE(651), + [aux_sym_concatenation_repeat1] = STATE(641), [sym__concat] = ACTIONS(581), [sym_variable_name] = ACTIONS(599), [anon_sym_PIPE] = ACTIONS(601), @@ -18879,21 +15439,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(601), }, [261] = { - [anon_sym_EQ] = ACTIONS(1259), - [anon_sym_PLUS_EQ] = ACTIONS(1259), + [anon_sym_EQ] = ACTIONS(1247), + [anon_sym_PLUS_EQ] = ACTIONS(1247), [sym_comment] = ACTIONS(53), }, [262] = { - [sym_variable_assignment] = STATE(652), + [sym_variable_assignment] = STATE(642), [sym_subscript] = STATE(261), - [sym_concatenation] = STATE(652), + [sym_concatenation] = STATE(642), [sym_string] = STATE(260), [sym_simple_expansion] = STATE(260), [sym_string_expansion] = STATE(260), [sym_expansion] = STATE(260), [sym_command_substitution] = STATE(260), [sym_process_substitution] = STATE(260), - [aux_sym_declaration_command_repeat1] = STATE(652), + [aux_sym_declaration_command_repeat1] = STATE(642), [sym_variable_name] = ACTIONS(461), [anon_sym_PIPE] = ACTIONS(617), [anon_sym_RPAREN] = ACTIONS(617), @@ -18918,7 +15478,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(617), }, [263] = { - [aux_sym_concatenation_repeat1] = STATE(653), + [aux_sym_concatenation_repeat1] = STATE(643), [sym__concat] = ACTIONS(621), [anon_sym_PIPE] = ACTIONS(623), [anon_sym_RPAREN] = ACTIONS(623), @@ -18943,7 +15503,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(623), }, [264] = { - [aux_sym_concatenation_repeat1] = STATE(653), + [aux_sym_concatenation_repeat1] = STATE(643), [sym__concat] = ACTIONS(621), [anon_sym_PIPE] = ACTIONS(639), [anon_sym_RPAREN] = ACTIONS(639), @@ -18968,14 +15528,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(639), }, [265] = { - [sym_concatenation] = STATE(654), + [sym_concatenation] = STATE(644), [sym_string] = STATE(264), [sym_simple_expansion] = STATE(264), [sym_string_expansion] = STATE(264), [sym_expansion] = STATE(264), [sym_command_substitution] = STATE(264), [sym_process_substitution] = STATE(264), - [aux_sym_unset_command_repeat1] = STATE(654), + [aux_sym_unset_command_repeat1] = STATE(644), [anon_sym_PIPE] = ACTIONS(657), [anon_sym_RPAREN] = ACTIONS(657), [anon_sym_SEMI_SEMI] = ACTIONS(657), @@ -18999,7 +15559,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(657), }, [266] = { - [aux_sym_concatenation_repeat1] = STATE(655), + [aux_sym_concatenation_repeat1] = STATE(645), [sym__simple_heredoc_body] = ACTIONS(693), [sym__heredoc_body_beginning] = ACTIONS(693), [sym_file_descriptor] = ACTIONS(693), @@ -19038,7 +15598,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(695), }, [267] = { - [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_RPAREN] = ACTIONS(1249), [sym_comment] = ACTIONS(53), }, [268] = { @@ -19105,17 +15665,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(105), }, [269] = { - [anon_sym_esac] = ACTIONS(1263), - [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_esac] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_RPAREN] = ACTIONS(1251), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_LF] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1251), }, [270] = { [sym_file_descriptor] = ACTIONS(951), @@ -19124,7 +15684,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(953), [anon_sym_if] = ACTIONS(953), [anon_sym_case] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(1267), + [anon_sym_RPAREN] = ACTIONS(1255), [anon_sym_function] = ACTIONS(953), [anon_sym_LPAREN] = ACTIONS(951), [anon_sym_BANG] = ACTIONS(953), @@ -19157,21 +15717,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(953), }, [271] = { - [sym_for_statement] = STATE(658), - [sym_while_statement] = STATE(658), - [sym_if_statement] = STATE(658), - [sym_case_statement] = STATE(658), - [sym_function_definition] = STATE(658), - [sym_subshell] = STATE(658), - [sym_pipeline] = STATE(658), - [sym_list] = STATE(658), - [sym_negated_command] = STATE(658), - [sym_test_command] = STATE(658), - [sym_declaration_command] = STATE(658), - [sym_unset_command] = STATE(658), - [sym_command] = STATE(658), + [sym_for_statement] = STATE(648), + [sym_while_statement] = STATE(648), + [sym_if_statement] = STATE(648), + [sym_case_statement] = STATE(648), + [sym_function_definition] = STATE(648), + [sym_subshell] = STATE(648), + [sym_pipeline] = STATE(648), + [sym_list] = STATE(648), + [sym_negated_command] = STATE(648), + [sym_test_command] = STATE(648), + [sym_declaration_command] = STATE(648), + [sym_unset_command] = STATE(648), + [sym_command] = STATE(648), [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(659), + [sym_variable_assignment] = STATE(649), [sym_subscript] = STATE(66), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -19220,75 +15780,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(105), }, [272] = { - [anon_sym_LT] = ACTIONS(1269), - [anon_sym_GT] = ACTIONS(1269), - [anon_sym_GT_GT] = ACTIONS(1271), - [anon_sym_AMP_GT] = ACTIONS(1269), - [anon_sym_AMP_GT_GT] = ACTIONS(1271), - [anon_sym_LT_AMP] = ACTIONS(1271), - [anon_sym_GT_AMP] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1257), + [anon_sym_GT_GT] = ACTIONS(1259), + [anon_sym_AMP_GT] = ACTIONS(1257), + [anon_sym_AMP_GT_GT] = ACTIONS(1259), + [anon_sym_LT_AMP] = ACTIONS(1259), + [anon_sym_GT_AMP] = ACTIONS(1259), [sym_comment] = ACTIONS(53), }, [273] = { [sym_concatenation] = STATE(540), - [sym_string] = STATE(662), - [sym_simple_expansion] = STATE(662), - [sym_string_expansion] = STATE(662), - [sym_expansion] = STATE(662), - [sym_command_substitution] = STATE(662), - [sym_process_substitution] = STATE(662), - [sym__special_characters] = ACTIONS(1273), + [sym_string] = STATE(652), + [sym_simple_expansion] = STATE(652), + [sym_string_expansion] = STATE(652), + [sym_expansion] = STATE(652), + [sym_command_substitution] = STATE(652), + [sym_process_substitution] = STATE(652), + [sym__special_characters] = ACTIONS(1261), [anon_sym_DQUOTE] = ACTIONS(355), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1275), + [sym_raw_string] = ACTIONS(1263), [anon_sym_DOLLAR_LBRACE] = ACTIONS(359), [anon_sym_DOLLAR_LPAREN] = ACTIONS(361), [anon_sym_BQUOTE] = ACTIONS(363), [anon_sym_LT_LPAREN] = ACTIONS(365), [anon_sym_GT_LPAREN] = ACTIONS(365), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1275), + [sym_word] = ACTIONS(1263), [sym_regex] = ACTIONS(975), }, [274] = { [sym_concatenation] = STATE(543), - [sym_string] = STATE(664), - [sym_simple_expansion] = STATE(664), - [sym_string_expansion] = STATE(664), - [sym_expansion] = STATE(664), - [sym_command_substitution] = STATE(664), - [sym_process_substitution] = STATE(664), - [sym__special_characters] = ACTIONS(1277), + [sym_string] = STATE(654), + [sym_simple_expansion] = STATE(654), + [sym_string_expansion] = STATE(654), + [sym_expansion] = STATE(654), + [sym_command_substitution] = STATE(654), + [sym_process_substitution] = STATE(654), + [sym__special_characters] = ACTIONS(1265), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1279), + [sym_raw_string] = ACTIONS(1267), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1279), + [sym_word] = ACTIONS(1267), }, [275] = { [sym_concatenation] = STATE(547), - [sym_string] = STATE(666), - [sym_simple_expansion] = STATE(666), - [sym_string_expansion] = STATE(666), - [sym_expansion] = STATE(666), - [sym_command_substitution] = STATE(666), - [sym_process_substitution] = STATE(666), - [sym__special_characters] = ACTIONS(1281), + [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(1269), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1283), + [sym_raw_string] = ACTIONS(1271), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1283), + [sym_word] = ACTIONS(1271), }, [276] = { [aux_sym_concatenation_repeat1] = STATE(266), @@ -19369,11 +15929,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(993), }, [278] = { - [sym_file_redirect] = STATE(667), - [sym_heredoc_redirect] = STATE(667), + [sym_file_redirect] = STATE(657), + [sym_heredoc_redirect] = STATE(657), [sym_heredoc_body] = STATE(548), - [sym_herestring_redirect] = STATE(667), - [aux_sym_while_statement_repeat1] = STATE(667), + [sym_herestring_redirect] = STATE(657), + [aux_sym_while_statement_repeat1] = STATE(657), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), [sym_file_descriptor] = ACTIONS(483), @@ -19399,19 +15959,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(995), }, [279] = { - [sym_file_redirect] = STATE(668), - [sym_heredoc_redirect] = STATE(668), + [sym_file_redirect] = STATE(658), + [sym_heredoc_redirect] = STATE(658), [sym_heredoc_body] = STATE(548), - [sym_herestring_redirect] = STATE(668), - [sym_concatenation] = STATE(669), + [sym_herestring_redirect] = STATE(658), + [sym_concatenation] = STATE(659), [sym_string] = STATE(277), [sym_simple_expansion] = STATE(277), [sym_string_expansion] = STATE(277), [sym_expansion] = STATE(277), [sym_command_substitution] = STATE(277), [sym_process_substitution] = STATE(277), - [aux_sym_while_statement_repeat1] = STATE(668), - [aux_sym_command_repeat2] = STATE(669), + [aux_sym_while_statement_repeat1] = STATE(658), + [aux_sym_command_repeat2] = STATE(659), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), [sym_file_descriptor] = ACTIONS(483), @@ -19450,22 +16010,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [280] = { [anon_sym_PIPE] = ACTIONS(473), - [anon_sym_RPAREN] = ACTIONS(1285), - [anon_sym_SEMI_SEMI] = ACTIONS(1287), + [anon_sym_RPAREN] = ACTIONS(1273), + [anon_sym_SEMI_SEMI] = ACTIONS(1275), [anon_sym_PIPE_AMP] = ACTIONS(473), [anon_sym_AMP_AMP] = ACTIONS(479), [anon_sym_PIPE_PIPE] = ACTIONS(479), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym_LF] = ACTIONS(1289), - [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym_LF] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1275), }, [281] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(473), - [anon_sym_RPAREN] = ACTIONS(1285), - [anon_sym_SEMI_SEMI] = ACTIONS(1287), + [anon_sym_RPAREN] = ACTIONS(1273), + [anon_sym_SEMI_SEMI] = ACTIONS(1275), [anon_sym_PIPE_AMP] = ACTIONS(473), [anon_sym_AMP_AMP] = ACTIONS(479), [anon_sym_PIPE_PIPE] = ACTIONS(479), @@ -19487,9 +16047,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(371), [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym_LF] = ACTIONS(1289), - [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym_LF] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1275), }, [282] = { [sym__terminated_statement] = STATE(282), @@ -19557,19 +16117,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(1070), }, [283] = { - [sym_file_redirect] = STATE(668), - [sym_heredoc_redirect] = STATE(668), + [sym_file_redirect] = STATE(658), + [sym_heredoc_redirect] = STATE(658), [sym_heredoc_body] = STATE(548), - [sym_herestring_redirect] = STATE(668), - [sym_concatenation] = STATE(671), + [sym_herestring_redirect] = STATE(658), + [sym_concatenation] = STATE(661), [sym_string] = STATE(277), [sym_simple_expansion] = STATE(277), [sym_string_expansion] = STATE(277), [sym_expansion] = STATE(277), [sym_command_substitution] = STATE(277), [sym_process_substitution] = STATE(277), - [aux_sym_while_statement_repeat1] = STATE(668), - [aux_sym_command_repeat2] = STATE(671), + [aux_sym_while_statement_repeat1] = STATE(658), + [aux_sym_command_repeat2] = STATE(661), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), [sym_file_descriptor] = ACTIONS(483), @@ -19607,34 +16167,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(995), }, [284] = { - [sym_concatenation] = STATE(672), - [sym_string] = STATE(675), - [sym_array] = STATE(672), - [sym_simple_expansion] = STATE(675), - [sym_string_expansion] = STATE(675), - [sym_expansion] = STATE(675), - [sym_command_substitution] = STATE(675), - [sym_process_substitution] = STATE(675), - [sym__empty_value] = ACTIONS(1291), - [anon_sym_LPAREN] = ACTIONS(1293), - [sym__special_characters] = ACTIONS(1295), + [sym_concatenation] = STATE(662), + [sym_string] = STATE(665), + [sym_array] = STATE(662), + [sym_simple_expansion] = STATE(665), + [sym_string_expansion] = STATE(665), + [sym_expansion] = STATE(665), + [sym_command_substitution] = STATE(665), + [sym_process_substitution] = STATE(665), + [sym__empty_value] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym__special_characters] = ACTIONS(1283), [anon_sym_DQUOTE] = ACTIONS(207), [anon_sym_DOLLAR] = ACTIONS(209), - [sym_raw_string] = ACTIONS(1297), + [sym_raw_string] = ACTIONS(1285), [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), [anon_sym_DOLLAR_LPAREN] = ACTIONS(215), [anon_sym_BQUOTE] = ACTIONS(217), [anon_sym_LT_LPAREN] = ACTIONS(219), [anon_sym_GT_LPAREN] = ACTIONS(219), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1297), + [sym_word] = ACTIONS(1285), }, [285] = { - [sym__expression] = STATE(676), - [sym_binary_expression] = STATE(676), - [sym_unary_expression] = STATE(676), - [sym_parenthesized_expression] = STATE(676), - [sym_concatenation] = STATE(676), + [sym__expression] = STATE(666), + [sym_binary_expression] = STATE(666), + [sym_unary_expression] = STATE(666), + [sym_parenthesized_expression] = STATE(666), + [sym_concatenation] = STATE(666), [sym_string] = STATE(287), [sym_simple_expansion] = STATE(287), [sym_string_expansion] = STATE(287), @@ -19657,7 +16217,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(511), }, [286] = { - [aux_sym_concatenation_repeat1] = STATE(677), + [aux_sym_concatenation_repeat1] = STATE(667), [sym__concat] = ACTIONS(551), [anon_sym_RPAREN] = ACTIONS(515), [anon_sym_AMP_AMP] = ACTIONS(515), @@ -19672,7 +16232,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(515), }, [287] = { - [aux_sym_concatenation_repeat1] = STATE(677), + [aux_sym_concatenation_repeat1] = STATE(667), [sym__concat] = ACTIONS(551), [anon_sym_RPAREN] = ACTIONS(529), [anon_sym_AMP_AMP] = ACTIONS(529), @@ -19687,22 +16247,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(529), }, [288] = { - [anon_sym_RPAREN] = ACTIONS(1299), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [anon_sym_EQ_TILDE] = ACTIONS(1303), - [anon_sym_EQ_EQ] = ACTIONS(1303), - [anon_sym_EQ] = ACTIONS(1305), - [anon_sym_LT] = ACTIONS(1301), - [anon_sym_GT] = ACTIONS(1301), - [anon_sym_BANG_EQ] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1287), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [anon_sym_PIPE_PIPE] = ACTIONS(1289), + [anon_sym_EQ_TILDE] = ACTIONS(1291), + [anon_sym_EQ_EQ] = ACTIONS(1291), + [anon_sym_EQ] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(1289), + [anon_sym_GT] = ACTIONS(1289), + [anon_sym_BANG_EQ] = ACTIONS(1289), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1301), + [sym_test_operator] = ACTIONS(1289), }, [289] = { [anon_sym_AMP_AMP] = ACTIONS(543), [anon_sym_PIPE_PIPE] = ACTIONS(543), - [anon_sym_RBRACK] = ACTIONS(1307), + [anon_sym_RBRACK] = ACTIONS(1295), [anon_sym_EQ_TILDE] = ACTIONS(547), [anon_sym_EQ_EQ] = ACTIONS(547), [anon_sym_EQ] = ACTIONS(549), @@ -19713,26 +16273,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(543), }, [290] = { - [sym_string] = STATE(681), - [sym_simple_expansion] = STATE(681), - [sym_string_expansion] = STATE(681), - [sym_expansion] = STATE(681), - [sym_command_substitution] = STATE(681), - [sym_process_substitution] = STATE(681), - [sym__special_characters] = ACTIONS(1309), + [sym_string] = STATE(671), + [sym_simple_expansion] = STATE(671), + [sym_string_expansion] = STATE(671), + [sym_expansion] = STATE(671), + [sym_command_substitution] = STATE(671), + [sym_process_substitution] = STATE(671), + [sym__special_characters] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(115), [anon_sym_DOLLAR] = ACTIONS(117), - [sym_raw_string] = ACTIONS(1309), + [sym_raw_string] = ACTIONS(1297), [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), [anon_sym_BQUOTE] = ACTIONS(125), [anon_sym_LT_LPAREN] = ACTIONS(127), [anon_sym_GT_LPAREN] = ACTIONS(127), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1309), + [sym_word] = ACTIONS(1297), }, [291] = { - [aux_sym_concatenation_repeat1] = STATE(682), + [aux_sym_concatenation_repeat1] = STATE(672), [sym__concat] = ACTIONS(513), [anon_sym_AMP_AMP] = ACTIONS(693), [anon_sym_PIPE_PIPE] = ACTIONS(693), @@ -19765,7 +16325,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_DQUOTE] = ACTIONS(1299), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -19817,32 +16377,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [297] = { [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(1313), + [anon_sym_EQ] = ACTIONS(1301), [sym_comment] = ACTIONS(53), }, [298] = { - [sym_concatenation] = STATE(687), + [sym_concatenation] = STATE(677), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(687), - [anon_sym_RBRACE] = ACTIONS(1315), - [anon_sym_EQ] = ACTIONS(1317), + [aux_sym_expansion_repeat1] = STATE(677), + [anon_sym_RBRACE] = ACTIONS(1303), + [anon_sym_EQ] = ACTIONS(1305), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1319), + [anon_sym_POUND] = ACTIONS(1307), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1321), - [anon_sym_COLON] = ACTIONS(1317), - [anon_sym_COLON_QMARK] = ACTIONS(1317), - [anon_sym_COLON_DASH] = ACTIONS(1317), - [anon_sym_PERCENT] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1317), + [aux_sym_SLASH] = ACTIONS(1309), + [anon_sym_COLON] = ACTIONS(1305), + [anon_sym_COLON_QMARK] = ACTIONS(1305), + [anon_sym_COLON_DASH] = ACTIONS(1305), + [anon_sym_PERCENT] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1305), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -19851,41 +16411,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [299] = { - [sym_subscript] = STATE(691), - [sym_variable_name] = ACTIONS(1323), - [anon_sym_DOLLAR] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), + [sym_subscript] = STATE(681), + [sym_variable_name] = ACTIONS(1311), + [anon_sym_DOLLAR] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1313), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1327), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_AT] = ACTIONS(1325), - [anon_sym_QMARK] = ACTIONS(1325), - [anon_sym_0] = ACTIONS(1329), - [anon_sym__] = ACTIONS(1329), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_QMARK] = ACTIONS(1313), + [anon_sym_0] = ACTIONS(1317), + [anon_sym__] = ACTIONS(1317), }, [300] = { - [sym_concatenation] = STATE(694), + [sym_concatenation] = STATE(684), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(694), - [anon_sym_RBRACE] = ACTIONS(1331), - [anon_sym_EQ] = ACTIONS(1333), + [aux_sym_expansion_repeat1] = STATE(684), + [anon_sym_RBRACE] = ACTIONS(1319), + [anon_sym_EQ] = ACTIONS(1321), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1335), + [anon_sym_POUND] = ACTIONS(1323), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1337), - [anon_sym_COLON] = ACTIONS(1333), - [anon_sym_COLON_QMARK] = ACTIONS(1333), - [anon_sym_COLON_DASH] = ACTIONS(1333), - [anon_sym_PERCENT] = ACTIONS(1333), - [anon_sym_DASH] = ACTIONS(1333), + [aux_sym_SLASH] = ACTIONS(1325), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_COLON_QMARK] = ACTIONS(1321), + [anon_sym_COLON_DASH] = ACTIONS(1321), + [anon_sym_PERCENT] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1321), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -19894,28 +16454,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [301] = { - [sym_concatenation] = STATE(697), + [sym_concatenation] = STATE(687), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(697), - [anon_sym_RBRACE] = ACTIONS(1339), - [anon_sym_EQ] = ACTIONS(1341), + [aux_sym_expansion_repeat1] = STATE(687), + [anon_sym_RBRACE] = ACTIONS(1327), + [anon_sym_EQ] = ACTIONS(1329), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1343), + [anon_sym_POUND] = ACTIONS(1331), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1345), - [anon_sym_COLON] = ACTIONS(1341), - [anon_sym_COLON_QMARK] = ACTIONS(1341), - [anon_sym_COLON_DASH] = ACTIONS(1341), - [anon_sym_PERCENT] = ACTIONS(1341), - [anon_sym_DASH] = ACTIONS(1341), + [aux_sym_SLASH] = ACTIONS(1333), + [anon_sym_COLON] = ACTIONS(1329), + [anon_sym_COLON_QMARK] = ACTIONS(1329), + [anon_sym_COLON_DASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1329), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -19925,7 +16485,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [302] = { [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1335), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -19935,7 +16495,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1335), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -19963,7 +16523,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(925), [anon_sym_AMP_AMP] = ACTIONS(927), [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_BQUOTE] = ACTIONS(1347), + [anon_sym_BQUOTE] = ACTIONS(1335), [sym_comment] = ACTIONS(53), }, [305] = { @@ -19986,7 +16546,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(369), [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(1347), + [anon_sym_BQUOTE] = ACTIONS(1335), [anon_sym_LT_LPAREN] = ACTIONS(369), [anon_sym_GT_LPAREN] = ACTIONS(369), [sym_comment] = ACTIONS(53), @@ -19994,7 +16554,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [306] = { [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1349), + [anon_sym_RPAREN] = ACTIONS(1337), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -20004,7 +16564,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1349), + [anon_sym_RPAREN] = ACTIONS(1337), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -20028,11 +16588,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(369), }, [308] = { - [sym__expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_unary_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(700), - [sym_concatenation] = STATE(700), + [sym__expression] = STATE(690), + [sym_binary_expression] = STATE(690), + [sym_unary_expression] = STATE(690), + [sym_parenthesized_expression] = STATE(690), + [sym_concatenation] = STATE(690), [sym_string] = STATE(77), [sym_simple_expansion] = STATE(77), [sym_string_expansion] = STATE(77), @@ -20055,76 +16615,76 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(131), }, [309] = { - [sym_file_redirect] = STATE(705), - [sym_heredoc_redirect] = STATE(705), - [sym_herestring_redirect] = STATE(705), - [aux_sym_while_statement_repeat1] = STATE(705), - [sym_file_descriptor] = ACTIONS(1351), - [anon_sym_PIPE] = ACTIONS(1353), - [anon_sym_SEMI_SEMI] = ACTIONS(1353), - [anon_sym_PIPE_AMP] = ACTIONS(1353), - [anon_sym_AMP_AMP] = ACTIONS(1353), - [anon_sym_PIPE_PIPE] = ACTIONS(1353), - [anon_sym_LT] = ACTIONS(1355), - [anon_sym_GT] = ACTIONS(1355), - [anon_sym_GT_GT] = ACTIONS(1355), - [anon_sym_AMP_GT] = ACTIONS(1355), - [anon_sym_AMP_GT_GT] = ACTIONS(1355), - [anon_sym_LT_AMP] = ACTIONS(1355), - [anon_sym_GT_AMP] = ACTIONS(1355), - [anon_sym_LT_LT] = ACTIONS(1357), - [anon_sym_LT_LT_DASH] = ACTIONS(1357), - [anon_sym_LT_LT_LT] = ACTIONS(1359), + [sym_file_redirect] = STATE(695), + [sym_heredoc_redirect] = STATE(695), + [sym_herestring_redirect] = STATE(695), + [aux_sym_while_statement_repeat1] = STATE(695), + [sym_file_descriptor] = ACTIONS(1339), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_SEMI_SEMI] = ACTIONS(1341), + [anon_sym_PIPE_AMP] = ACTIONS(1341), + [anon_sym_AMP_AMP] = ACTIONS(1341), + [anon_sym_PIPE_PIPE] = ACTIONS(1341), + [anon_sym_LT] = ACTIONS(1343), + [anon_sym_GT] = ACTIONS(1343), + [anon_sym_GT_GT] = ACTIONS(1343), + [anon_sym_AMP_GT] = ACTIONS(1343), + [anon_sym_AMP_GT_GT] = ACTIONS(1343), + [anon_sym_LT_AMP] = ACTIONS(1343), + [anon_sym_GT_AMP] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(1345), + [anon_sym_LT_LT_DASH] = ACTIONS(1345), + [anon_sym_LT_LT_LT] = ACTIONS(1347), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_LF] = ACTIONS(1361), - [anon_sym_AMP] = ACTIONS(1353), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_LF] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1341), }, [310] = { - [sym__expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_unary_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(700), - [sym_concatenation] = STATE(700), + [sym__expression] = STATE(690), + [sym_binary_expression] = STATE(690), + [sym_unary_expression] = STATE(690), + [sym_parenthesized_expression] = STATE(690), + [sym_concatenation] = STATE(690), [sym_string] = STATE(77), [sym_simple_expansion] = STATE(77), [sym_string_expansion] = STATE(77), [sym_expansion] = STATE(77), [sym_command_substitution] = STATE(77), [sym_process_substitution] = STATE(77), - [anon_sym_LPAREN] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1351), [anon_sym_BANG] = ACTIONS(111), - [sym__special_characters] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1367), + [sym__special_characters] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1355), [anon_sym_DOLLAR] = ACTIONS(117), [sym_raw_string] = ACTIONS(129), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), - [anon_sym_BQUOTE] = ACTIONS(1373), - [anon_sym_LT_LPAREN] = ACTIONS(1375), - [anon_sym_GT_LPAREN] = ACTIONS(1375), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1357), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1359), + [anon_sym_BQUOTE] = ACTIONS(1361), + [anon_sym_LT_LPAREN] = ACTIONS(1363), + [anon_sym_GT_LPAREN] = ACTIONS(1363), [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(129), [sym_test_operator] = ACTIONS(111), - [sym_regex] = ACTIONS(1377), + [sym_regex] = ACTIONS(1365), }, [311] = { - [anon_sym_RPAREN] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [anon_sym_EQ_TILDE] = ACTIONS(1303), - [anon_sym_EQ_EQ] = ACTIONS(1303), - [anon_sym_EQ] = ACTIONS(1305), - [anon_sym_LT] = ACTIONS(1301), - [anon_sym_GT] = ACTIONS(1301), - [anon_sym_BANG_EQ] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [anon_sym_PIPE_PIPE] = ACTIONS(1289), + [anon_sym_EQ_TILDE] = ACTIONS(1291), + [anon_sym_EQ_EQ] = ACTIONS(1291), + [anon_sym_EQ] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(1289), + [anon_sym_GT] = ACTIONS(1289), + [anon_sym_BANG_EQ] = ACTIONS(1289), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1301), + [sym_test_operator] = ACTIONS(1289), }, [312] = { [anon_sym_AMP_AMP] = ACTIONS(573), [anon_sym_PIPE_PIPE] = ACTIONS(573), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1307), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1295), [anon_sym_EQ_TILDE] = ACTIONS(575), [anon_sym_EQ_EQ] = ACTIONS(575), [anon_sym_EQ] = ACTIONS(577), @@ -20135,26 +16695,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(573), }, [313] = { - [sym_string] = STATE(708), - [sym_simple_expansion] = STATE(708), - [sym_string_expansion] = STATE(708), - [sym_expansion] = STATE(708), - [sym_command_substitution] = STATE(708), - [sym_process_substitution] = STATE(708), - [sym__special_characters] = ACTIONS(1381), + [sym_string] = STATE(698), + [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__special_characters] = ACTIONS(1369), [anon_sym_DQUOTE] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1369), [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), [anon_sym_BQUOTE] = ACTIONS(149), [anon_sym_LT_LPAREN] = ACTIONS(151), [anon_sym_GT_LPAREN] = ACTIONS(151), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1381), + [sym_word] = ACTIONS(1369), }, [314] = { - [aux_sym_concatenation_repeat1] = STATE(709), + [aux_sym_concatenation_repeat1] = STATE(699), [sym__concat] = ACTIONS(551), [anon_sym_AMP_AMP] = ACTIONS(693), [anon_sym_PIPE_PIPE] = ACTIONS(693), @@ -20189,7 +16749,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1371), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -20247,32 +16807,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [320] = { [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(1385), + [anon_sym_EQ] = ACTIONS(1373), [sym_comment] = ACTIONS(53), }, [321] = { - [sym_concatenation] = STATE(714), + [sym_concatenation] = STATE(704), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(714), - [anon_sym_RBRACE] = ACTIONS(1387), - [anon_sym_EQ] = ACTIONS(1389), + [aux_sym_expansion_repeat1] = STATE(704), + [anon_sym_RBRACE] = ACTIONS(1375), + [anon_sym_EQ] = ACTIONS(1377), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(1379), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1393), - [anon_sym_COLON] = ACTIONS(1389), - [anon_sym_COLON_QMARK] = ACTIONS(1389), - [anon_sym_COLON_DASH] = ACTIONS(1389), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), + [aux_sym_SLASH] = ACTIONS(1381), + [anon_sym_COLON] = ACTIONS(1377), + [anon_sym_COLON_QMARK] = ACTIONS(1377), + [anon_sym_COLON_DASH] = ACTIONS(1377), + [anon_sym_PERCENT] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -20281,41 +16841,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [322] = { - [sym_subscript] = STATE(718), - [sym_variable_name] = ACTIONS(1395), - [anon_sym_DOLLAR] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), + [sym_subscript] = STATE(708), + [sym_variable_name] = ACTIONS(1383), + [anon_sym_DOLLAR] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_0] = ACTIONS(1401), - [anon_sym__] = ACTIONS(1401), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1385), + [anon_sym_AT] = ACTIONS(1385), + [anon_sym_QMARK] = ACTIONS(1385), + [anon_sym_0] = ACTIONS(1389), + [anon_sym__] = ACTIONS(1389), }, [323] = { - [sym_concatenation] = STATE(721), + [sym_concatenation] = STATE(711), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(721), - [anon_sym_RBRACE] = ACTIONS(1403), - [anon_sym_EQ] = ACTIONS(1405), + [aux_sym_expansion_repeat1] = STATE(711), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_EQ] = ACTIONS(1393), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1407), + [anon_sym_POUND] = ACTIONS(1395), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1409), - [anon_sym_COLON] = ACTIONS(1405), - [anon_sym_COLON_QMARK] = ACTIONS(1405), - [anon_sym_COLON_DASH] = ACTIONS(1405), - [anon_sym_PERCENT] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), + [aux_sym_SLASH] = ACTIONS(1397), + [anon_sym_COLON] = ACTIONS(1393), + [anon_sym_COLON_QMARK] = ACTIONS(1393), + [anon_sym_COLON_DASH] = ACTIONS(1393), + [anon_sym_PERCENT] = ACTIONS(1393), + [anon_sym_DASH] = ACTIONS(1393), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -20324,28 +16884,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [324] = { - [sym_concatenation] = STATE(724), + [sym_concatenation] = STATE(714), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(724), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_EQ] = ACTIONS(1413), + [aux_sym_expansion_repeat1] = STATE(714), + [anon_sym_RBRACE] = ACTIONS(1399), + [anon_sym_EQ] = ACTIONS(1401), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1415), + [anon_sym_POUND] = ACTIONS(1403), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1417), - [anon_sym_COLON] = ACTIONS(1413), - [anon_sym_COLON_QMARK] = ACTIONS(1413), - [anon_sym_COLON_DASH] = ACTIONS(1413), - [anon_sym_PERCENT] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), + [aux_sym_SLASH] = ACTIONS(1405), + [anon_sym_COLON] = ACTIONS(1401), + [anon_sym_COLON_QMARK] = ACTIONS(1401), + [anon_sym_COLON_DASH] = ACTIONS(1401), + [anon_sym_PERCENT] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -20355,7 +16915,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [325] = { [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1407), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -20365,7 +16925,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1407), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -20393,7 +16953,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(925), [anon_sym_AMP_AMP] = ACTIONS(927), [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_BQUOTE] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1407), [sym_comment] = ACTIONS(53), }, [328] = { @@ -20416,7 +16976,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(369), [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1407), [anon_sym_LT_LPAREN] = ACTIONS(369), [anon_sym_GT_LPAREN] = ACTIONS(369), [sym_comment] = ACTIONS(53), @@ -20424,7 +16984,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [329] = { [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1421), + [anon_sym_RPAREN] = ACTIONS(1409), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -20434,7 +16994,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1421), + [anon_sym_RPAREN] = ACTIONS(1409), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -20458,11 +17018,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(369), }, [331] = { - [sym__expression] = STATE(727), - [sym_binary_expression] = STATE(727), - [sym_unary_expression] = STATE(727), - [sym_parenthesized_expression] = STATE(727), - [sym_concatenation] = STATE(727), + [sym__expression] = STATE(717), + [sym_binary_expression] = STATE(717), + [sym_unary_expression] = STATE(717), + [sym_parenthesized_expression] = STATE(717), + [sym_concatenation] = STATE(717), [sym_string] = STATE(88), [sym_simple_expansion] = STATE(88), [sym_string_expansion] = STATE(88), @@ -20485,77 +17045,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(155), }, [332] = { - [sym__expression] = STATE(727), - [sym_binary_expression] = STATE(727), - [sym_unary_expression] = STATE(727), - [sym_parenthesized_expression] = STATE(727), - [sym_concatenation] = STATE(727), + [sym__expression] = STATE(717), + [sym_binary_expression] = STATE(717), + [sym_unary_expression] = STATE(717), + [sym_parenthesized_expression] = STATE(717), + [sym_concatenation] = STATE(717), [sym_string] = STATE(88), [sym_simple_expansion] = STATE(88), [sym_string_expansion] = STATE(88), [sym_expansion] = STATE(88), [sym_command_substitution] = STATE(88), [sym_process_substitution] = STATE(88), - [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(1411), [anon_sym_BANG] = ACTIONS(135), - [sym__special_characters] = ACTIONS(1425), - [anon_sym_DQUOTE] = ACTIONS(1427), + [sym__special_characters] = ACTIONS(1413), + [anon_sym_DQUOTE] = ACTIONS(1415), [anon_sym_DOLLAR] = ACTIONS(141), [sym_raw_string] = ACTIONS(153), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1431), - [anon_sym_BQUOTE] = ACTIONS(1433), - [anon_sym_LT_LPAREN] = ACTIONS(1435), - [anon_sym_GT_LPAREN] = ACTIONS(1435), + [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(177), [sym_word] = ACTIONS(153), [sym_test_operator] = ACTIONS(135), - [sym_regex] = ACTIONS(1437), + [sym_regex] = ACTIONS(1425), }, [333] = { - [sym_concatenation] = STATE(729), - [sym_string] = STATE(732), - [sym_array] = STATE(729), - [sym_simple_expansion] = STATE(732), - [sym_string_expansion] = STATE(732), - [sym_expansion] = STATE(732), - [sym_command_substitution] = STATE(732), - [sym_process_substitution] = STATE(732), - [sym__empty_value] = ACTIONS(1439), - [anon_sym_LPAREN] = ACTIONS(1441), + [sym_concatenation] = STATE(719), + [sym_string] = STATE(722), + [sym_array] = STATE(719), + [sym_simple_expansion] = STATE(722), + [sym_string_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym__empty_value] = ACTIONS(1427), + [anon_sym_LPAREN] = ACTIONS(1429), + [sym__special_characters] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(589), + [anon_sym_DOLLAR] = ACTIONS(165), + [sym_raw_string] = ACTIONS(1433), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1435), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1437), + [anon_sym_BQUOTE] = ACTIONS(1439), + [anon_sym_LT_LPAREN] = ACTIONS(1441), + [anon_sym_GT_LPAREN] = ACTIONS(1441), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1433), + }, + [334] = { + [sym_string] = STATE(723), + [sym_simple_expansion] = STATE(723), + [sym_string_expansion] = STATE(723), + [sym_expansion] = STATE(723), + [sym_command_substitution] = STATE(723), + [sym_process_substitution] = STATE(723), [sym__special_characters] = ACTIONS(1443), [anon_sym_DQUOTE] = ACTIONS(589), [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(1445), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1447), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1449), - [anon_sym_BQUOTE] = ACTIONS(1451), - [anon_sym_LT_LPAREN] = ACTIONS(1453), - [anon_sym_GT_LPAREN] = ACTIONS(1453), + [sym_raw_string] = ACTIONS(1443), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1435), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1437), + [anon_sym_BQUOTE] = ACTIONS(1439), + [anon_sym_LT_LPAREN] = ACTIONS(1441), + [anon_sym_GT_LPAREN] = ACTIONS(1441), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1445), - }, - [334] = { - [sym_string] = STATE(733), - [sym_simple_expansion] = STATE(733), - [sym_string_expansion] = STATE(733), - [sym_expansion] = STATE(733), - [sym_command_substitution] = STATE(733), - [sym_process_substitution] = STATE(733), - [sym__special_characters] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(589), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(1455), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1447), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1449), - [anon_sym_BQUOTE] = ACTIONS(1451), - [anon_sym_LT_LPAREN] = ACTIONS(1453), - [anon_sym_GT_LPAREN] = ACTIONS(1453), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1455), + [sym_word] = ACTIONS(1443), }, [335] = { - [aux_sym_concatenation_repeat1] = STATE(734), + [aux_sym_concatenation_repeat1] = STATE(724), [sym__concat] = ACTIONS(581), [sym_variable_name] = ACTIONS(693), [anon_sym_PIPE] = ACTIONS(695), @@ -20609,7 +17169,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(1457), + [anon_sym_DQUOTE] = ACTIONS(1445), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -20694,32 +17254,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [341] = { [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(1459), + [anon_sym_EQ] = ACTIONS(1447), [sym_comment] = ACTIONS(53), }, [342] = { - [sym_concatenation] = STATE(739), + [sym_concatenation] = STATE(729), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(739), - [anon_sym_RBRACE] = ACTIONS(1461), - [anon_sym_EQ] = ACTIONS(1463), + [aux_sym_expansion_repeat1] = STATE(729), + [anon_sym_RBRACE] = ACTIONS(1449), + [anon_sym_EQ] = ACTIONS(1451), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1465), + [anon_sym_POUND] = ACTIONS(1453), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1467), - [anon_sym_COLON] = ACTIONS(1463), - [anon_sym_COLON_QMARK] = ACTIONS(1463), - [anon_sym_COLON_DASH] = ACTIONS(1463), - [anon_sym_PERCENT] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), + [aux_sym_SLASH] = ACTIONS(1455), + [anon_sym_COLON] = ACTIONS(1451), + [anon_sym_COLON_QMARK] = ACTIONS(1451), + [anon_sym_COLON_DASH] = ACTIONS(1451), + [anon_sym_PERCENT] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -20728,41 +17288,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [343] = { - [sym_subscript] = STATE(743), - [sym_variable_name] = ACTIONS(1469), - [anon_sym_DOLLAR] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1471), + [sym_subscript] = STATE(733), + [sym_variable_name] = ACTIONS(1457), + [anon_sym_DOLLAR] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1471), - [anon_sym_AT] = ACTIONS(1471), - [anon_sym_QMARK] = ACTIONS(1471), - [anon_sym_0] = ACTIONS(1475), - [anon_sym__] = ACTIONS(1475), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1459), + [anon_sym_QMARK] = ACTIONS(1459), + [anon_sym_0] = ACTIONS(1463), + [anon_sym__] = ACTIONS(1463), }, [344] = { - [sym_concatenation] = STATE(746), + [sym_concatenation] = STATE(736), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(746), - [anon_sym_RBRACE] = ACTIONS(1477), - [anon_sym_EQ] = ACTIONS(1479), + [aux_sym_expansion_repeat1] = STATE(736), + [anon_sym_RBRACE] = ACTIONS(1465), + [anon_sym_EQ] = ACTIONS(1467), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(1469), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1483), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_COLON_QMARK] = ACTIONS(1479), - [anon_sym_COLON_DASH] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -20771,28 +17331,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [345] = { - [sym_concatenation] = STATE(749), + [sym_concatenation] = STATE(739), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(749), - [anon_sym_RBRACE] = ACTIONS(1485), - [anon_sym_EQ] = ACTIONS(1487), + [aux_sym_expansion_repeat1] = STATE(739), + [anon_sym_RBRACE] = ACTIONS(1473), + [anon_sym_EQ] = ACTIONS(1475), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1489), + [anon_sym_POUND] = ACTIONS(1477), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1491), - [anon_sym_COLON] = ACTIONS(1487), - [anon_sym_COLON_QMARK] = ACTIONS(1487), - [anon_sym_COLON_DASH] = ACTIONS(1487), - [anon_sym_PERCENT] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), + [aux_sym_SLASH] = ACTIONS(1479), + [anon_sym_COLON] = ACTIONS(1475), + [anon_sym_COLON_QMARK] = ACTIONS(1475), + [anon_sym_COLON_DASH] = ACTIONS(1475), + [anon_sym_PERCENT] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1475), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -20802,7 +17362,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [346] = { [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1493), + [anon_sym_RPAREN] = ACTIONS(1481), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -20812,7 +17372,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1493), + [anon_sym_RPAREN] = ACTIONS(1481), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -20840,7 +17400,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(925), [anon_sym_AMP_AMP] = ACTIONS(927), [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_BQUOTE] = ACTIONS(1493), + [anon_sym_BQUOTE] = ACTIONS(1481), [sym_comment] = ACTIONS(53), }, [349] = { @@ -20863,7 +17423,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(369), [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(1493), + [anon_sym_BQUOTE] = ACTIONS(1481), [anon_sym_LT_LPAREN] = ACTIONS(369), [anon_sym_GT_LPAREN] = ACTIONS(369), [sym_comment] = ACTIONS(53), @@ -20871,7 +17431,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [350] = { [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1495), + [anon_sym_RPAREN] = ACTIONS(1483), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -20881,7 +17441,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1495), + [anon_sym_RPAREN] = ACTIONS(1483), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -20915,49 +17475,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(98), [sym_process_substitution] = STATE(98), [aux_sym_declaration_command_repeat1] = STATE(352), - [sym_variable_name] = ACTIONS(1497), - [anon_sym_PIPE] = ACTIONS(1500), - [anon_sym_SEMI_SEMI] = ACTIONS(1500), - [anon_sym_PIPE_AMP] = ACTIONS(1500), - [anon_sym_AMP_AMP] = ACTIONS(1500), - [anon_sym_PIPE_PIPE] = ACTIONS(1500), - [sym__special_characters] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_DOLLAR] = ACTIONS(1508), - [sym_raw_string] = ACTIONS(1511), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1514), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1517), - [anon_sym_BQUOTE] = ACTIONS(1520), - [anon_sym_LT_LPAREN] = ACTIONS(1523), - [anon_sym_GT_LPAREN] = ACTIONS(1523), + [sym_variable_name] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_SEMI_SEMI] = ACTIONS(1488), + [anon_sym_PIPE_AMP] = ACTIONS(1488), + [anon_sym_AMP_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1488), + [sym__special_characters] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR] = ACTIONS(1496), + [sym_raw_string] = ACTIONS(1499), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1502), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1505), + [anon_sym_BQUOTE] = ACTIONS(1508), + [anon_sym_LT_LPAREN] = ACTIONS(1511), + [anon_sym_GT_LPAREN] = ACTIONS(1511), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1526), - [sym_word] = ACTIONS(1511), - [anon_sym_SEMI] = ACTIONS(1500), - [anon_sym_LF] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1500), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1514), + [sym_word] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym_LF] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(1488), }, [353] = { - [sym_string] = STATE(752), - [sym_simple_expansion] = STATE(752), - [sym_string_expansion] = STATE(752), - [sym_expansion] = STATE(752), - [sym_command_substitution] = STATE(752), - [sym_process_substitution] = STATE(752), - [sym__special_characters] = ACTIONS(1531), + [sym_string] = STATE(742), + [sym_simple_expansion] = STATE(742), + [sym_string_expansion] = STATE(742), + [sym_expansion] = STATE(742), + [sym_command_substitution] = STATE(742), + [sym_process_substitution] = STATE(742), + [sym__special_characters] = ACTIONS(1519), [anon_sym_DQUOTE] = ACTIONS(629), [anon_sym_DOLLAR] = ACTIONS(189), - [sym_raw_string] = ACTIONS(1531), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1533), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1535), - [anon_sym_BQUOTE] = ACTIONS(1537), - [anon_sym_LT_LPAREN] = ACTIONS(1539), - [anon_sym_GT_LPAREN] = ACTIONS(1539), + [sym_raw_string] = ACTIONS(1519), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1521), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1523), + [anon_sym_BQUOTE] = ACTIONS(1525), + [anon_sym_LT_LPAREN] = ACTIONS(1527), + [anon_sym_GT_LPAREN] = ACTIONS(1527), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1531), + [sym_word] = ACTIONS(1519), }, [354] = { - [aux_sym_concatenation_repeat1] = STATE(753), + [aux_sym_concatenation_repeat1] = STATE(743), [sym__concat] = ACTIONS(621), [anon_sym_PIPE] = ACTIONS(695), [anon_sym_SEMI_SEMI] = ACTIONS(695), @@ -21009,7 +17569,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(1541), + [anon_sym_DQUOTE] = ACTIONS(1529), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -21091,32 +17651,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [360] = { [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(1543), + [anon_sym_EQ] = ACTIONS(1531), [sym_comment] = ACTIONS(53), }, [361] = { - [sym_concatenation] = STATE(758), + [sym_concatenation] = STATE(748), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(758), - [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_EQ] = ACTIONS(1547), + [aux_sym_expansion_repeat1] = STATE(748), + [anon_sym_RBRACE] = ACTIONS(1533), + [anon_sym_EQ] = ACTIONS(1535), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1549), + [anon_sym_POUND] = ACTIONS(1537), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1551), - [anon_sym_COLON] = ACTIONS(1547), - [anon_sym_COLON_QMARK] = ACTIONS(1547), - [anon_sym_COLON_DASH] = ACTIONS(1547), - [anon_sym_PERCENT] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), + [aux_sym_SLASH] = ACTIONS(1539), + [anon_sym_COLON] = ACTIONS(1535), + [anon_sym_COLON_QMARK] = ACTIONS(1535), + [anon_sym_COLON_DASH] = ACTIONS(1535), + [anon_sym_PERCENT] = ACTIONS(1535), + [anon_sym_DASH] = ACTIONS(1535), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -21125,41 +17685,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [362] = { - [sym_subscript] = STATE(762), - [sym_variable_name] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(1555), - [anon_sym_DASH] = ACTIONS(1555), + [sym_subscript] = STATE(752), + [sym_variable_name] = ACTIONS(1541), + [anon_sym_DOLLAR] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1555), - [anon_sym_AT] = ACTIONS(1555), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_0] = ACTIONS(1559), - [anon_sym__] = ACTIONS(1559), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_AT] = ACTIONS(1543), + [anon_sym_QMARK] = ACTIONS(1543), + [anon_sym_0] = ACTIONS(1547), + [anon_sym__] = ACTIONS(1547), }, [363] = { - [sym_concatenation] = STATE(765), + [sym_concatenation] = STATE(755), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(765), - [anon_sym_RBRACE] = ACTIONS(1561), - [anon_sym_EQ] = ACTIONS(1563), + [aux_sym_expansion_repeat1] = STATE(755), + [anon_sym_RBRACE] = ACTIONS(1549), + [anon_sym_EQ] = ACTIONS(1551), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1565), + [anon_sym_POUND] = ACTIONS(1553), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1567), - [anon_sym_COLON] = ACTIONS(1563), - [anon_sym_COLON_QMARK] = ACTIONS(1563), - [anon_sym_COLON_DASH] = ACTIONS(1563), - [anon_sym_PERCENT] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -21168,28 +17728,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [364] = { - [sym_concatenation] = STATE(768), + [sym_concatenation] = STATE(758), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(768), - [anon_sym_RBRACE] = ACTIONS(1569), - [anon_sym_EQ] = ACTIONS(1571), + [aux_sym_expansion_repeat1] = STATE(758), + [anon_sym_RBRACE] = ACTIONS(1557), + [anon_sym_EQ] = ACTIONS(1559), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(1561), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1575), - [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), + [aux_sym_SLASH] = ACTIONS(1563), + [anon_sym_COLON] = ACTIONS(1559), + [anon_sym_COLON_QMARK] = ACTIONS(1559), + [anon_sym_COLON_DASH] = ACTIONS(1559), + [anon_sym_PERCENT] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(1559), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -21199,7 +17759,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [365] = { [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(1565), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -21209,7 +17769,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(1565), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -21237,7 +17797,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(925), [anon_sym_AMP_AMP] = ACTIONS(927), [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_BQUOTE] = ACTIONS(1577), + [anon_sym_BQUOTE] = ACTIONS(1565), [sym_comment] = ACTIONS(53), }, [368] = { @@ -21260,7 +17820,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(369), [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(1577), + [anon_sym_BQUOTE] = ACTIONS(1565), [anon_sym_LT_LPAREN] = ACTIONS(369), [anon_sym_GT_LPAREN] = ACTIONS(369), [sym_comment] = ACTIONS(53), @@ -21268,7 +17828,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [369] = { [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1567), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -21278,7 +17838,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1567), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -21310,48 +17870,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(109), [sym_process_substitution] = STATE(109), [aux_sym_unset_command_repeat1] = STATE(371), - [anon_sym_PIPE] = ACTIONS(1581), - [anon_sym_SEMI_SEMI] = ACTIONS(1581), - [anon_sym_PIPE_AMP] = ACTIONS(1581), - [anon_sym_AMP_AMP] = ACTIONS(1581), - [anon_sym_PIPE_PIPE] = ACTIONS(1581), - [sym__special_characters] = ACTIONS(1583), - [anon_sym_DQUOTE] = ACTIONS(1586), - [anon_sym_DOLLAR] = ACTIONS(1589), - [sym_raw_string] = ACTIONS(1592), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1595), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1598), - [anon_sym_BQUOTE] = ACTIONS(1601), - [anon_sym_LT_LPAREN] = ACTIONS(1604), - [anon_sym_GT_LPAREN] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_SEMI_SEMI] = ACTIONS(1569), + [anon_sym_PIPE_AMP] = ACTIONS(1569), + [anon_sym_AMP_AMP] = ACTIONS(1569), + [anon_sym_PIPE_PIPE] = ACTIONS(1569), + [sym__special_characters] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR] = ACTIONS(1577), + [sym_raw_string] = ACTIONS(1580), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1583), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1586), + [anon_sym_BQUOTE] = ACTIONS(1589), + [anon_sym_LT_LPAREN] = ACTIONS(1592), + [anon_sym_GT_LPAREN] = ACTIONS(1592), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1607), - [sym_word] = ACTIONS(1592), - [anon_sym_SEMI] = ACTIONS(1581), - [anon_sym_LF] = ACTIONS(1610), - [anon_sym_AMP] = ACTIONS(1581), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1595), + [sym_word] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1569), + [anon_sym_LF] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1569), }, [372] = { - [sym_string] = STATE(771), - [sym_simple_expansion] = STATE(771), - [sym_string_expansion] = STATE(771), - [sym_expansion] = STATE(771), - [sym_command_substitution] = STATE(771), - [sym_process_substitution] = STATE(771), - [sym__special_characters] = ACTIONS(1612), + [sym_string] = STATE(761), + [sym_simple_expansion] = STATE(761), + [sym_string_expansion] = STATE(761), + [sym_expansion] = STATE(761), + [sym_command_substitution] = STATE(761), + [sym_process_substitution] = STATE(761), + [sym__special_characters] = ACTIONS(1600), [anon_sym_DQUOTE] = ACTIONS(207), [anon_sym_DOLLAR] = ACTIONS(209), - [sym_raw_string] = ACTIONS(1612), + [sym_raw_string] = ACTIONS(1600), [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), [anon_sym_DOLLAR_LPAREN] = ACTIONS(215), [anon_sym_BQUOTE] = ACTIONS(217), [anon_sym_LT_LPAREN] = ACTIONS(219), [anon_sym_GT_LPAREN] = ACTIONS(219), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1612), + [sym_word] = ACTIONS(1600), }, [373] = { - [aux_sym_concatenation_repeat1] = STATE(772), + [aux_sym_concatenation_repeat1] = STATE(762), [sym_file_descriptor] = ACTIONS(693), [sym__concat] = ACTIONS(663), [sym_variable_name] = ACTIONS(693), @@ -21407,7 +17967,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(1614), + [anon_sym_DQUOTE] = ACTIONS(1602), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -21501,32 +18061,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [379] = { [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1604), [sym_comment] = ACTIONS(53), }, [380] = { - [sym_concatenation] = STATE(777), + [sym_concatenation] = STATE(767), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(777), - [anon_sym_RBRACE] = ACTIONS(1618), - [anon_sym_EQ] = ACTIONS(1620), + [aux_sym_expansion_repeat1] = STATE(767), + [anon_sym_RBRACE] = ACTIONS(1606), + [anon_sym_EQ] = ACTIONS(1608), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1622), + [anon_sym_POUND] = ACTIONS(1610), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1624), - [anon_sym_COLON] = ACTIONS(1620), - [anon_sym_COLON_QMARK] = ACTIONS(1620), - [anon_sym_COLON_DASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH] = ACTIONS(1620), + [aux_sym_SLASH] = ACTIONS(1612), + [anon_sym_COLON] = ACTIONS(1608), + [anon_sym_COLON_QMARK] = ACTIONS(1608), + [anon_sym_COLON_DASH] = ACTIONS(1608), + [anon_sym_PERCENT] = ACTIONS(1608), + [anon_sym_DASH] = ACTIONS(1608), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -21535,41 +18095,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [381] = { - [sym_subscript] = STATE(781), - [sym_variable_name] = ACTIONS(1626), - [anon_sym_DOLLAR] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), + [sym_subscript] = STATE(771), + [sym_variable_name] = ACTIONS(1614), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1630), - [anon_sym_STAR] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(1628), - [anon_sym_QMARK] = ACTIONS(1628), - [anon_sym_0] = ACTIONS(1632), - [anon_sym__] = ACTIONS(1632), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_AT] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1616), + [anon_sym_0] = ACTIONS(1620), + [anon_sym__] = ACTIONS(1620), }, [382] = { - [sym_concatenation] = STATE(784), + [sym_concatenation] = STATE(774), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(784), - [anon_sym_RBRACE] = ACTIONS(1634), - [anon_sym_EQ] = ACTIONS(1636), + [aux_sym_expansion_repeat1] = STATE(774), + [anon_sym_RBRACE] = ACTIONS(1622), + [anon_sym_EQ] = ACTIONS(1624), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1638), + [anon_sym_POUND] = ACTIONS(1626), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1640), - [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), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -21578,28 +18138,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [383] = { - [sym_concatenation] = STATE(787), + [sym_concatenation] = STATE(777), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(787), - [anon_sym_RBRACE] = ACTIONS(1642), - [anon_sym_EQ] = ACTIONS(1644), + [aux_sym_expansion_repeat1] = STATE(777), + [anon_sym_RBRACE] = ACTIONS(1630), + [anon_sym_EQ] = ACTIONS(1632), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1646), + [anon_sym_POUND] = ACTIONS(1634), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1648), - [anon_sym_COLON] = ACTIONS(1644), - [anon_sym_COLON_QMARK] = ACTIONS(1644), - [anon_sym_COLON_DASH] = ACTIONS(1644), - [anon_sym_PERCENT] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), + [aux_sym_SLASH] = ACTIONS(1636), + [anon_sym_COLON] = ACTIONS(1632), + [anon_sym_COLON_QMARK] = ACTIONS(1632), + [anon_sym_COLON_DASH] = ACTIONS(1632), + [anon_sym_PERCENT] = ACTIONS(1632), + [anon_sym_DASH] = ACTIONS(1632), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -21609,7 +18169,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [384] = { [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(1638), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -21619,7 +18179,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(1638), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -21647,7 +18207,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(925), [anon_sym_AMP_AMP] = ACTIONS(927), [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1638), [sym_comment] = ACTIONS(53), }, [387] = { @@ -21670,7 +18230,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(369), [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1638), [anon_sym_LT_LPAREN] = ACTIONS(369), [anon_sym_GT_LPAREN] = ACTIONS(369), [sym_comment] = ACTIONS(53), @@ -21678,7 +18238,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [388] = { [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1652), + [anon_sym_RPAREN] = ACTIONS(1640), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -21688,7 +18248,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1652), + [anon_sym_RPAREN] = ACTIONS(1640), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -21712,80 +18272,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(369), }, [390] = { - [sym__simple_heredoc_body] = ACTIONS(1654), - [sym__heredoc_body_beginning] = ACTIONS(1654), - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(1654), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [anon_sym_EQ_TILDE] = ACTIONS(1656), - [anon_sym_EQ_EQ] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1656), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1656), - [anon_sym_LT_AMP] = ACTIONS(1656), - [anon_sym_GT_AMP] = ACTIONS(1656), - [anon_sym_LT_LT] = ACTIONS(1656), - [anon_sym_LT_LT_DASH] = ACTIONS(1656), - [anon_sym_LT_LT_LT] = ACTIONS(1656), - [sym__special_characters] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1656), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1656), - [anon_sym_BQUOTE] = ACTIONS(1656), - [anon_sym_LT_LPAREN] = ACTIONS(1656), - [anon_sym_GT_LPAREN] = ACTIONS(1656), + [sym__simple_heredoc_body] = ACTIONS(1642), + [sym__heredoc_body_beginning] = ACTIONS(1642), + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(1642), + [anon_sym_esac] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [anon_sym_EQ_TILDE] = ACTIONS(1644), + [anon_sym_EQ_EQ] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1644), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1644), + [anon_sym_LT_AMP] = ACTIONS(1644), + [anon_sym_GT_AMP] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1644), + [anon_sym_LT_LT_DASH] = ACTIONS(1644), + [anon_sym_LT_LT_LT] = ACTIONS(1644), + [sym__special_characters] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1644), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1644), + [anon_sym_LT_LPAREN] = ACTIONS(1644), + [anon_sym_GT_LPAREN] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), + [sym_word] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, [391] = { [aux_sym_concatenation_repeat1] = STATE(391), - [sym__simple_heredoc_body] = ACTIONS(1654), - [sym__heredoc_body_beginning] = ACTIONS(1654), - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(1658), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [anon_sym_EQ_TILDE] = ACTIONS(1656), - [anon_sym_EQ_EQ] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1656), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1656), - [anon_sym_LT_AMP] = ACTIONS(1656), - [anon_sym_GT_AMP] = ACTIONS(1656), - [anon_sym_LT_LT] = ACTIONS(1656), - [anon_sym_LT_LT_DASH] = ACTIONS(1656), - [anon_sym_LT_LT_LT] = ACTIONS(1656), - [sym__special_characters] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1656), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1656), - [anon_sym_BQUOTE] = ACTIONS(1656), - [anon_sym_LT_LPAREN] = ACTIONS(1656), - [anon_sym_GT_LPAREN] = ACTIONS(1656), + [sym__simple_heredoc_body] = ACTIONS(1642), + [sym__heredoc_body_beginning] = ACTIONS(1642), + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(1646), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [anon_sym_EQ_TILDE] = ACTIONS(1644), + [anon_sym_EQ_EQ] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1644), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1644), + [anon_sym_LT_AMP] = ACTIONS(1644), + [anon_sym_GT_AMP] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1644), + [anon_sym_LT_LT_DASH] = ACTIONS(1644), + [anon_sym_LT_LT_LT] = ACTIONS(1644), + [sym__special_characters] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1644), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1644), + [anon_sym_LT_LPAREN] = ACTIONS(1644), + [anon_sym_GT_LPAREN] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), + [sym_word] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, [392] = { [sym__concat] = ACTIONS(727), @@ -21798,13 +18359,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), }, [393] = { - [sym__concat] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1663), - [anon_sym_DOLLAR] = ACTIONS(1663), - [sym__string_content] = ACTIONS(1665), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1663), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1663), - [anon_sym_BQUOTE] = ACTIONS(1663), + [sym__concat] = ACTIONS(1649), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1651), + [sym__string_content] = ACTIONS(1653), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1651), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1651), + [anon_sym_BQUOTE] = ACTIONS(1651), [sym_comment] = ACTIONS(177), }, [394] = { @@ -21818,42 +18379,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), }, [395] = { - [anon_sym_DQUOTE] = ACTIONS(1663), - [anon_sym_DOLLAR] = ACTIONS(1663), - [sym__string_content] = ACTIONS(1665), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1663), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1663), - [anon_sym_BQUOTE] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1651), + [sym__string_content] = ACTIONS(1653), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1651), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1651), + [anon_sym_BQUOTE] = ACTIONS(1651), [sym_comment] = ACTIONS(177), }, [396] = { [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(1667), + [anon_sym_EQ] = ACTIONS(1655), [sym_comment] = ACTIONS(53), }, [397] = { - [sym_concatenation] = STATE(794), + [sym_concatenation] = STATE(784), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(794), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_EQ] = ACTIONS(1671), + [aux_sym_expansion_repeat1] = STATE(784), + [anon_sym_RBRACE] = ACTIONS(1657), + [anon_sym_EQ] = ACTIONS(1659), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(1661), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1675), - [anon_sym_COLON] = ACTIONS(1671), - [anon_sym_COLON_QMARK] = ACTIONS(1671), - [anon_sym_COLON_DASH] = ACTIONS(1671), - [anon_sym_PERCENT] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), + [aux_sym_SLASH] = ACTIONS(1663), + [anon_sym_COLON] = ACTIONS(1659), + [anon_sym_COLON_QMARK] = ACTIONS(1659), + [anon_sym_COLON_DASH] = ACTIONS(1659), + [anon_sym_PERCENT] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -21862,41 +18423,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [398] = { - [sym_subscript] = STATE(798), - [sym_variable_name] = ACTIONS(1677), - [anon_sym_DOLLAR] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1679), + [sym_subscript] = STATE(788), + [sym_variable_name] = ACTIONS(1665), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_AT] = ACTIONS(1679), - [anon_sym_QMARK] = ACTIONS(1679), - [anon_sym_0] = ACTIONS(1683), - [anon_sym__] = ACTIONS(1683), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_AT] = ACTIONS(1667), + [anon_sym_QMARK] = ACTIONS(1667), + [anon_sym_0] = ACTIONS(1671), + [anon_sym__] = ACTIONS(1671), }, [399] = { - [sym_concatenation] = STATE(801), + [sym_concatenation] = STATE(791), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(801), - [anon_sym_RBRACE] = ACTIONS(1685), - [anon_sym_EQ] = ACTIONS(1687), + [aux_sym_expansion_repeat1] = STATE(791), + [anon_sym_RBRACE] = ACTIONS(1673), + [anon_sym_EQ] = ACTIONS(1675), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1689), + [anon_sym_POUND] = ACTIONS(1677), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1691), - [anon_sym_COLON] = ACTIONS(1687), - [anon_sym_COLON_QMARK] = ACTIONS(1687), - [anon_sym_COLON_DASH] = ACTIONS(1687), - [anon_sym_PERCENT] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -21905,28 +18466,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [400] = { - [sym_concatenation] = STATE(804), + [sym_concatenation] = STATE(794), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(804), - [anon_sym_RBRACE] = ACTIONS(1693), - [anon_sym_EQ] = ACTIONS(1695), + [aux_sym_expansion_repeat1] = STATE(794), + [anon_sym_RBRACE] = ACTIONS(1681), + [anon_sym_EQ] = ACTIONS(1683), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1697), + [anon_sym_POUND] = ACTIONS(1685), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1699), - [anon_sym_COLON] = ACTIONS(1695), - [anon_sym_COLON_QMARK] = ACTIONS(1695), - [anon_sym_COLON_DASH] = ACTIONS(1695), - [anon_sym_PERCENT] = ACTIONS(1695), - [anon_sym_DASH] = ACTIONS(1695), + [aux_sym_SLASH] = ACTIONS(1687), + [anon_sym_COLON] = ACTIONS(1683), + [anon_sym_COLON_QMARK] = ACTIONS(1683), + [anon_sym_COLON_DASH] = ACTIONS(1683), + [anon_sym_PERCENT] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -21936,7 +18497,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [401] = { [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1701), + [anon_sym_RPAREN] = ACTIONS(1689), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -21946,7 +18507,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1701), + [anon_sym_RPAREN] = ACTIONS(1689), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -21974,7 +18535,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(925), [anon_sym_AMP_AMP] = ACTIONS(927), [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_BQUOTE] = ACTIONS(1701), + [anon_sym_BQUOTE] = ACTIONS(1689), [sym_comment] = ACTIONS(53), }, [404] = { @@ -21997,171 +18558,173 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(369), [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(1701), + [anon_sym_BQUOTE] = ACTIONS(1689), [anon_sym_LT_LPAREN] = ACTIONS(369), [anon_sym_GT_LPAREN] = ACTIONS(369), [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(369), }, [405] = { - [sym__simple_heredoc_body] = ACTIONS(1703), - [sym__heredoc_body_beginning] = ACTIONS(1703), - [sym_file_descriptor] = ACTIONS(1703), - [sym__concat] = ACTIONS(1703), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_RPAREN] = ACTIONS(1705), - [anon_sym_SEMI_SEMI] = ACTIONS(1705), - [anon_sym_PIPE_AMP] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1705), - [anon_sym_PIPE_PIPE] = ACTIONS(1705), - [anon_sym_EQ_TILDE] = ACTIONS(1705), - [anon_sym_EQ_EQ] = ACTIONS(1705), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_GT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_AMP_GT] = ACTIONS(1705), - [anon_sym_AMP_GT_GT] = ACTIONS(1705), - [anon_sym_LT_AMP] = ACTIONS(1705), - [anon_sym_GT_AMP] = ACTIONS(1705), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_LT_LT_DASH] = ACTIONS(1705), - [anon_sym_LT_LT_LT] = ACTIONS(1705), - [sym__special_characters] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1705), - [sym_raw_string] = ACTIONS(1705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1705), - [anon_sym_BQUOTE] = ACTIONS(1705), - [anon_sym_LT_LPAREN] = ACTIONS(1705), - [anon_sym_GT_LPAREN] = ACTIONS(1705), + [sym__simple_heredoc_body] = ACTIONS(1691), + [sym__heredoc_body_beginning] = ACTIONS(1691), + [sym_file_descriptor] = ACTIONS(1691), + [sym__concat] = ACTIONS(1691), + [anon_sym_esac] = ACTIONS(1693), + [anon_sym_PIPE] = ACTIONS(1693), + [anon_sym_RPAREN] = ACTIONS(1693), + [anon_sym_SEMI_SEMI] = ACTIONS(1693), + [anon_sym_PIPE_AMP] = ACTIONS(1693), + [anon_sym_AMP_AMP] = ACTIONS(1693), + [anon_sym_PIPE_PIPE] = ACTIONS(1693), + [anon_sym_EQ_TILDE] = ACTIONS(1693), + [anon_sym_EQ_EQ] = ACTIONS(1693), + [anon_sym_LT] = ACTIONS(1693), + [anon_sym_GT] = ACTIONS(1693), + [anon_sym_GT_GT] = ACTIONS(1693), + [anon_sym_AMP_GT] = ACTIONS(1693), + [anon_sym_AMP_GT_GT] = ACTIONS(1693), + [anon_sym_LT_AMP] = ACTIONS(1693), + [anon_sym_GT_AMP] = ACTIONS(1693), + [anon_sym_LT_LT] = ACTIONS(1693), + [anon_sym_LT_LT_DASH] = ACTIONS(1693), + [anon_sym_LT_LT_LT] = ACTIONS(1693), + [sym__special_characters] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1693), + [anon_sym_DOLLAR] = ACTIONS(1693), + [sym_raw_string] = ACTIONS(1693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1693), + [anon_sym_BQUOTE] = ACTIONS(1693), + [anon_sym_LT_LPAREN] = ACTIONS(1693), + [anon_sym_GT_LPAREN] = ACTIONS(1693), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_LF] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1705), + [sym_word] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_LF] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1693), }, [406] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(1663), - [anon_sym_DOLLAR] = ACTIONS(1707), - [sym__string_content] = ACTIONS(1710), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1713), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1716), - [anon_sym_BQUOTE] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1695), + [sym__string_content] = ACTIONS(1698), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1701), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), + [anon_sym_BQUOTE] = ACTIONS(1707), [sym_comment] = ACTIONS(177), }, [407] = { - [sym_concatenation] = STATE(808), - [sym_string] = STATE(807), - [sym_simple_expansion] = STATE(807), - [sym_string_expansion] = STATE(807), - [sym_expansion] = STATE(807), - [sym_command_substitution] = STATE(807), - [sym_process_substitution] = STATE(807), - [sym__special_characters] = ACTIONS(1722), + [sym_concatenation] = STATE(798), + [sym_string] = STATE(797), + [sym_simple_expansion] = STATE(797), + [sym_string_expansion] = STATE(797), + [sym_expansion] = STATE(797), + [sym_command_substitution] = STATE(797), + [sym_process_substitution] = STATE(797), + [sym__special_characters] = ACTIONS(1710), [anon_sym_DQUOTE] = ACTIONS(115), [anon_sym_DOLLAR] = ACTIONS(117), - [sym_raw_string] = ACTIONS(1724), + [sym_raw_string] = ACTIONS(1712), [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), [anon_sym_BQUOTE] = ACTIONS(125), [anon_sym_LT_LPAREN] = ACTIONS(127), [anon_sym_GT_LPAREN] = ACTIONS(127), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1724), + [sym_word] = ACTIONS(1712), }, [408] = { - [sym_concatenation] = STATE(818), - [sym_string] = STATE(813), - [sym_simple_expansion] = STATE(813), - [sym_string_expansion] = STATE(813), - [sym_expansion] = STATE(813), - [sym_command_substitution] = STATE(813), - [sym_process_substitution] = STATE(813), - [anon_sym_RBRACE] = ACTIONS(1726), - [sym__special_characters] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1734), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), + [sym_concatenation] = STATE(808), + [sym_string] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_string_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [anon_sym_RBRACE] = ACTIONS(1714), + [sym__special_characters] = ACTIONS(1716), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(1722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1734), + [sym_word] = ACTIONS(1722), }, [409] = { - [sym__simple_heredoc_body] = ACTIONS(1744), - [sym__heredoc_body_beginning] = ACTIONS(1744), - [sym_file_descriptor] = ACTIONS(1744), - [sym__concat] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_SEMI_SEMI] = ACTIONS(1746), - [anon_sym_PIPE_AMP] = ACTIONS(1746), - [anon_sym_AMP_AMP] = ACTIONS(1746), - [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_EQ_TILDE] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1746), - [anon_sym_GT] = ACTIONS(1746), - [anon_sym_GT_GT] = ACTIONS(1746), - [anon_sym_AMP_GT] = ACTIONS(1746), - [anon_sym_AMP_GT_GT] = ACTIONS(1746), - [anon_sym_LT_AMP] = ACTIONS(1746), - [anon_sym_GT_AMP] = ACTIONS(1746), - [anon_sym_LT_LT] = ACTIONS(1746), - [anon_sym_LT_LT_DASH] = ACTIONS(1746), - [anon_sym_LT_LT_LT] = ACTIONS(1746), - [sym__special_characters] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1746), - [sym_raw_string] = ACTIONS(1746), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1746), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_LT_LPAREN] = ACTIONS(1746), - [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym__simple_heredoc_body] = ACTIONS(1732), + [sym__heredoc_body_beginning] = ACTIONS(1732), + [sym_file_descriptor] = ACTIONS(1732), + [sym__concat] = ACTIONS(1732), + [anon_sym_esac] = ACTIONS(1734), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_SEMI_SEMI] = ACTIONS(1734), + [anon_sym_PIPE_AMP] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_EQ_TILDE] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_GT_GT] = ACTIONS(1734), + [anon_sym_AMP_GT] = ACTIONS(1734), + [anon_sym_AMP_GT_GT] = ACTIONS(1734), + [anon_sym_LT_AMP] = ACTIONS(1734), + [anon_sym_GT_AMP] = ACTIONS(1734), + [anon_sym_LT_LT] = ACTIONS(1734), + [anon_sym_LT_LT_DASH] = ACTIONS(1734), + [anon_sym_LT_LT_LT] = ACTIONS(1734), + [sym__special_characters] = ACTIONS(1734), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1734), + [sym_raw_string] = ACTIONS(1734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1734), + [anon_sym_BQUOTE] = ACTIONS(1734), + [anon_sym_LT_LPAREN] = ACTIONS(1734), + [anon_sym_GT_LPAREN] = ACTIONS(1734), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LF] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1746), + [sym_word] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_LF] = ACTIONS(1732), + [anon_sym_AMP] = ACTIONS(1734), }, [410] = { - [aux_sym_concatenation_repeat1] = STATE(820), - [sym__concat] = ACTIONS(1748), - [anon_sym_RBRACE] = ACTIONS(1750), - [anon_sym_EQ] = ACTIONS(1752), - [sym__special_characters] = ACTIONS(1752), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1752), - [sym_raw_string] = ACTIONS(1750), - [anon_sym_POUND] = ACTIONS(1750), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1750), - [anon_sym_COLON] = ACTIONS(1752), - [anon_sym_COLON_QMARK] = ACTIONS(1752), - [anon_sym_COLON_DASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1750), - [anon_sym_BQUOTE] = ACTIONS(1750), - [anon_sym_LT_LPAREN] = ACTIONS(1750), - [anon_sym_GT_LPAREN] = ACTIONS(1750), + [aux_sym_concatenation_repeat1] = STATE(810), + [sym__concat] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1740), + [sym__special_characters] = ACTIONS(1740), + [anon_sym_DQUOTE] = ACTIONS(1738), + [anon_sym_DOLLAR] = ACTIONS(1740), + [sym_raw_string] = ACTIONS(1738), + [anon_sym_POUND] = ACTIONS(1738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1738), + [anon_sym_COLON] = ACTIONS(1740), + [anon_sym_COLON_QMARK] = ACTIONS(1740), + [anon_sym_COLON_DASH] = ACTIONS(1740), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), + [anon_sym_BQUOTE] = ACTIONS(1738), + [anon_sym_LT_LPAREN] = ACTIONS(1738), + [anon_sym_GT_LPAREN] = ACTIONS(1738), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1752), + [sym_word] = ACTIONS(1740), }, [411] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(822), - [anon_sym_DQUOTE] = ACTIONS(1754), + [aux_sym_string_repeat1] = STATE(812), + [anon_sym_DQUOTE] = ACTIONS(1742), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -22170,77 +18733,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), }, [412] = { - [sym_string] = STATE(824), + [sym_string] = STATE(814), [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1758), - [anon_sym_POUND] = ACTIONS(1756), - [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1744), + [sym_raw_string] = ACTIONS(1746), + [anon_sym_POUND] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1760), - [anon_sym_STAR] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(1756), - [anon_sym_QMARK] = ACTIONS(1756), - [anon_sym_0] = ACTIONS(1762), - [anon_sym__] = ACTIONS(1762), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(1744), + [anon_sym_QMARK] = ACTIONS(1744), + [anon_sym_0] = ACTIONS(1750), + [anon_sym__] = ACTIONS(1750), }, [413] = { - [aux_sym_concatenation_repeat1] = STATE(820), - [sym__concat] = ACTIONS(1748), - [anon_sym_RBRACE] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1766), - [sym__special_characters] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1764), - [anon_sym_DOLLAR] = ACTIONS(1766), - [sym_raw_string] = ACTIONS(1764), - [anon_sym_POUND] = ACTIONS(1764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1764), - [anon_sym_COLON] = ACTIONS(1766), - [anon_sym_COLON_QMARK] = ACTIONS(1766), - [anon_sym_COLON_DASH] = ACTIONS(1766), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1764), - [anon_sym_BQUOTE] = ACTIONS(1764), - [anon_sym_LT_LPAREN] = ACTIONS(1764), - [anon_sym_GT_LPAREN] = ACTIONS(1764), + [aux_sym_concatenation_repeat1] = STATE(810), + [sym__concat] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1754), + [sym__special_characters] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1752), + [anon_sym_DOLLAR] = ACTIONS(1754), + [sym_raw_string] = ACTIONS(1752), + [anon_sym_POUND] = ACTIONS(1752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1752), + [anon_sym_COLON] = ACTIONS(1754), + [anon_sym_COLON_QMARK] = ACTIONS(1754), + [anon_sym_COLON_DASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1752), + [anon_sym_BQUOTE] = ACTIONS(1752), + [anon_sym_LT_LPAREN] = ACTIONS(1752), + [anon_sym_GT_LPAREN] = ACTIONS(1752), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1766), + [sym_word] = ACTIONS(1754), }, [414] = { - [sym_subscript] = STATE(830), - [sym_variable_name] = ACTIONS(1768), - [anon_sym_DOLLAR] = ACTIONS(1770), - [anon_sym_POUND] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1770), + [sym_subscript] = STATE(820), + [sym_variable_name] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1758), + [anon_sym_POUND] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1758), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(1770), - [anon_sym_QMARK] = ACTIONS(1770), - [anon_sym_0] = ACTIONS(1776), - [anon_sym__] = ACTIONS(1776), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1758), + [anon_sym_AT] = ACTIONS(1758), + [anon_sym_QMARK] = ACTIONS(1758), + [anon_sym_0] = ACTIONS(1764), + [anon_sym__] = ACTIONS(1764), }, [415] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(1778), + [sym_regex_without_right_brace] = ACTIONS(1766), }, [416] = { - [sym_for_statement] = STATE(832), - [sym_while_statement] = STATE(832), - [sym_if_statement] = STATE(832), - [sym_case_statement] = STATE(832), - [sym_function_definition] = STATE(832), - [sym_subshell] = STATE(832), - [sym_pipeline] = STATE(832), - [sym_list] = STATE(832), - [sym_negated_command] = STATE(832), - [sym_test_command] = STATE(832), - [sym_declaration_command] = STATE(832), - [sym_unset_command] = STATE(832), - [sym_command] = STATE(832), + [sym_for_statement] = STATE(822), + [sym_while_statement] = STATE(822), + [sym_if_statement] = STATE(822), + [sym_case_statement] = STATE(822), + [sym_function_definition] = STATE(822), + [sym_subshell] = STATE(822), + [sym_pipeline] = STATE(822), + [sym_list] = STATE(822), + [sym_negated_command] = STATE(822), + [sym_test_command] = STATE(822), + [sym_declaration_command] = STATE(822), + [sym_unset_command] = STATE(822), + [sym_command] = STATE(822), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(833), + [sym_variable_assignment] = STATE(823), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -22289,21 +18852,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(301), }, [417] = { - [sym_for_statement] = STATE(834), - [sym_while_statement] = STATE(834), - [sym_if_statement] = STATE(834), - [sym_case_statement] = STATE(834), - [sym_function_definition] = STATE(834), - [sym_subshell] = STATE(834), - [sym_pipeline] = STATE(834), - [sym_list] = STATE(834), - [sym_negated_command] = STATE(834), - [sym_test_command] = STATE(834), - [sym_declaration_command] = STATE(834), - [sym_unset_command] = STATE(834), - [sym_command] = STATE(834), + [sym_for_statement] = STATE(824), + [sym_while_statement] = STATE(824), + [sym_if_statement] = STATE(824), + [sym_case_statement] = STATE(824), + [sym_function_definition] = STATE(824), + [sym_subshell] = STATE(824), + [sym_pipeline] = STATE(824), + [sym_list] = STATE(824), + [sym_negated_command] = STATE(824), + [sym_test_command] = STATE(824), + [sym_declaration_command] = STATE(824), + [sym_unset_command] = STATE(824), + [sym_command] = STATE(824), [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(835), + [sym_variable_assignment] = STATE(825), [sym_subscript] = STATE(183), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -22352,21 +18915,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(323), }, [418] = { - [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_negated_command] = STATE(836), - [sym_test_command] = STATE(836), - [sym_declaration_command] = STATE(836), - [sym_unset_command] = STATE(836), - [sym_command] = STATE(836), + [sym_for_statement] = STATE(826), + [sym_while_statement] = STATE(826), + [sym_if_statement] = STATE(826), + [sym_case_statement] = STATE(826), + [sym_function_definition] = STATE(826), + [sym_subshell] = STATE(826), + [sym_pipeline] = STATE(826), + [sym_list] = STATE(826), + [sym_negated_command] = STATE(826), + [sym_test_command] = STATE(826), + [sym_declaration_command] = STATE(826), + [sym_unset_command] = STATE(826), + [sym_command] = STATE(826), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(837), + [sym_variable_assignment] = STATE(827), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -22415,27 +18978,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(301), }, [419] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -22445,32 +19008,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [420] = { [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(1786), + [anon_sym_EQ] = ACTIONS(1774), [sym_comment] = ACTIONS(53), }, [421] = { - [sym_concatenation] = STATE(843), + [sym_concatenation] = STATE(833), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(843), - [anon_sym_RBRACE] = ACTIONS(1788), - [anon_sym_EQ] = ACTIONS(1790), + [aux_sym_expansion_repeat1] = STATE(833), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_EQ] = ACTIONS(1778), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(1780), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1794), - [anon_sym_COLON] = ACTIONS(1790), - [anon_sym_COLON_QMARK] = ACTIONS(1790), - [anon_sym_COLON_DASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -22479,28 +19042,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [422] = { - [sym_concatenation] = STATE(846), + [sym_concatenation] = STATE(836), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(846), - [anon_sym_RBRACE] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1798), + [aux_sym_expansion_repeat1] = STATE(836), + [anon_sym_RBRACE] = ACTIONS(1784), + [anon_sym_EQ] = ACTIONS(1786), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1800), + [anon_sym_POUND] = ACTIONS(1788), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1802), - [anon_sym_COLON] = ACTIONS(1798), - [anon_sym_COLON_QMARK] = ACTIONS(1798), - [anon_sym_COLON_DASH] = ACTIONS(1798), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), + [aux_sym_SLASH] = ACTIONS(1790), + [anon_sym_COLON] = ACTIONS(1786), + [anon_sym_COLON_QMARK] = ACTIONS(1786), + [anon_sym_COLON_DASH] = ACTIONS(1786), + [anon_sym_PERCENT] = ACTIONS(1786), + [anon_sym_DASH] = ACTIONS(1786), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -22509,28 +19072,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [423] = { - [sym_concatenation] = STATE(848), + [sym_concatenation] = STATE(838), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(848), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_EQ] = ACTIONS(1804), + [aux_sym_expansion_repeat1] = STATE(838), + [anon_sym_RBRACE] = ACTIONS(1714), + [anon_sym_EQ] = ACTIONS(1792), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(1794), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1808), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), + [aux_sym_SLASH] = ACTIONS(1796), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -22539,69 +19102,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [424] = { - [sym__simple_heredoc_body] = ACTIONS(1810), - [sym__heredoc_body_beginning] = ACTIONS(1810), - [sym_file_descriptor] = ACTIONS(1810), - [sym__concat] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_SEMI_SEMI] = ACTIONS(1812), - [anon_sym_PIPE_AMP] = ACTIONS(1812), - [anon_sym_AMP_AMP] = ACTIONS(1812), - [anon_sym_PIPE_PIPE] = ACTIONS(1812), - [anon_sym_EQ_TILDE] = ACTIONS(1812), - [anon_sym_EQ_EQ] = ACTIONS(1812), - [anon_sym_LT] = ACTIONS(1812), - [anon_sym_GT] = ACTIONS(1812), - [anon_sym_GT_GT] = ACTIONS(1812), - [anon_sym_AMP_GT] = ACTIONS(1812), - [anon_sym_AMP_GT_GT] = ACTIONS(1812), - [anon_sym_LT_AMP] = ACTIONS(1812), - [anon_sym_GT_AMP] = ACTIONS(1812), - [anon_sym_LT_LT] = ACTIONS(1812), - [anon_sym_LT_LT_DASH] = ACTIONS(1812), - [anon_sym_LT_LT_LT] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(1812), - [anon_sym_DQUOTE] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1812), - [sym_raw_string] = ACTIONS(1812), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1812), - [anon_sym_GT_LPAREN] = ACTIONS(1812), + [sym__simple_heredoc_body] = ACTIONS(1798), + [sym__heredoc_body_beginning] = ACTIONS(1798), + [sym_file_descriptor] = ACTIONS(1798), + [sym__concat] = ACTIONS(1798), + [anon_sym_esac] = ACTIONS(1800), + [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(177), - [sym_word] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_LF] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1812), + [sym_word] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_LF] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1800), }, [425] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(1814), + [sym_regex_without_right_brace] = ACTIONS(1802), }, [426] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -22610,69 +19174,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [427] = { - [sym__simple_heredoc_body] = ACTIONS(1818), - [sym__heredoc_body_beginning] = ACTIONS(1818), - [sym_file_descriptor] = ACTIONS(1818), - [sym__concat] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_RPAREN] = ACTIONS(1820), - [anon_sym_SEMI_SEMI] = ACTIONS(1820), - [anon_sym_PIPE_AMP] = ACTIONS(1820), - [anon_sym_AMP_AMP] = ACTIONS(1820), - [anon_sym_PIPE_PIPE] = ACTIONS(1820), - [anon_sym_EQ_TILDE] = ACTIONS(1820), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_LT] = ACTIONS(1820), - [anon_sym_GT] = ACTIONS(1820), - [anon_sym_GT_GT] = ACTIONS(1820), - [anon_sym_AMP_GT] = ACTIONS(1820), - [anon_sym_AMP_GT_GT] = ACTIONS(1820), - [anon_sym_LT_AMP] = ACTIONS(1820), - [anon_sym_GT_AMP] = ACTIONS(1820), - [anon_sym_LT_LT] = ACTIONS(1820), - [anon_sym_LT_LT_DASH] = ACTIONS(1820), - [anon_sym_LT_LT_LT] = ACTIONS(1820), - [sym__special_characters] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1820), - [sym_raw_string] = ACTIONS(1820), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1820), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1820), - [anon_sym_BQUOTE] = ACTIONS(1820), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), + [sym__simple_heredoc_body] = ACTIONS(1806), + [sym__heredoc_body_beginning] = ACTIONS(1806), + [sym_file_descriptor] = ACTIONS(1806), + [sym__concat] = ACTIONS(1806), + [anon_sym_esac] = ACTIONS(1808), + [anon_sym_PIPE] = ACTIONS(1808), + [anon_sym_RPAREN] = ACTIONS(1808), + [anon_sym_SEMI_SEMI] = ACTIONS(1808), + [anon_sym_PIPE_AMP] = ACTIONS(1808), + [anon_sym_AMP_AMP] = ACTIONS(1808), + [anon_sym_PIPE_PIPE] = ACTIONS(1808), + [anon_sym_EQ_TILDE] = ACTIONS(1808), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_GT_GT] = ACTIONS(1808), + [anon_sym_AMP_GT] = ACTIONS(1808), + [anon_sym_AMP_GT_GT] = ACTIONS(1808), + [anon_sym_LT_AMP] = ACTIONS(1808), + [anon_sym_GT_AMP] = ACTIONS(1808), + [anon_sym_LT_LT] = ACTIONS(1808), + [anon_sym_LT_LT_DASH] = ACTIONS(1808), + [anon_sym_LT_LT_LT] = ACTIONS(1808), + [sym__special_characters] = ACTIONS(1808), + [anon_sym_DQUOTE] = ACTIONS(1808), + [anon_sym_DOLLAR] = ACTIONS(1808), + [sym_raw_string] = ACTIONS(1808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1808), + [anon_sym_BQUOTE] = ACTIONS(1808), + [anon_sym_LT_LPAREN] = ACTIONS(1808), + [anon_sym_GT_LPAREN] = ACTIONS(1808), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_LF] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1820), + [sym_word] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1808), + [anon_sym_LF] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1808), }, [428] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(1822), + [sym_regex_without_right_brace] = ACTIONS(1810), }, [429] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(1714), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -22681,97 +19246,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [430] = { - [sym_concatenation] = STATE(672), - [sym_string] = STATE(853), - [sym_array] = STATE(672), - [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__empty_value] = ACTIONS(1291), - [anon_sym_LPAREN] = ACTIONS(1293), - [sym__special_characters] = ACTIONS(1824), + [sym_concatenation] = STATE(662), + [sym_string] = STATE(843), + [sym_array] = STATE(662), + [sym_simple_expansion] = STATE(843), + [sym_string_expansion] = STATE(843), + [sym_expansion] = STATE(843), + [sym_command_substitution] = STATE(843), + [sym_process_substitution] = STATE(843), + [sym__empty_value] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym__special_characters] = ACTIONS(1812), [anon_sym_DQUOTE] = ACTIONS(207), [anon_sym_DOLLAR] = ACTIONS(209), - [sym_raw_string] = ACTIONS(1826), + [sym_raw_string] = ACTIONS(1814), [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), [anon_sym_DOLLAR_LPAREN] = ACTIONS(215), [anon_sym_BQUOTE] = ACTIONS(217), [anon_sym_LT_LPAREN] = ACTIONS(219), [anon_sym_GT_LPAREN] = ACTIONS(219), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1826), + [sym_word] = ACTIONS(1814), }, [431] = { - [anon_sym_in] = ACTIONS(1828), - [anon_sym_SEMI_SEMI] = ACTIONS(1830), + [anon_sym_in] = ACTIONS(1816), + [anon_sym_SEMI_SEMI] = ACTIONS(1818), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_SEMI] = ACTIONS(1818), + [anon_sym_LF] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1818), }, [432] = { - [sym_do_group] = STATE(857), - [anon_sym_do] = ACTIONS(1834), + [sym_do_group] = STATE(847), + [anon_sym_do] = ACTIONS(1822), [sym_comment] = ACTIONS(53), }, [433] = { - [anon_sym_then] = ACTIONS(1836), + [anon_sym_then] = ACTIONS(1824), [sym_comment] = ACTIONS(53), }, [434] = { [aux_sym_concatenation_repeat1] = STATE(231), [sym__concat] = ACTIONS(419), - [anon_sym_in] = ACTIONS(1838), - [anon_sym_SEMI_SEMI] = ACTIONS(1840), + [anon_sym_in] = ACTIONS(1826), + [anon_sym_SEMI_SEMI] = ACTIONS(1828), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_LF] = ACTIONS(1842), - [anon_sym_AMP] = ACTIONS(1840), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_LF] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1828), }, [435] = { [aux_sym_concatenation_repeat1] = STATE(231), [sym__concat] = ACTIONS(419), - [anon_sym_in] = ACTIONS(1844), - [anon_sym_SEMI_SEMI] = ACTIONS(1846), + [anon_sym_in] = ACTIONS(1832), + [anon_sym_SEMI_SEMI] = ACTIONS(1834), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_LF] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1836), + [anon_sym_AMP] = ACTIONS(1834), }, [436] = { - [anon_sym_in] = ACTIONS(1844), - [anon_sym_SEMI_SEMI] = ACTIONS(1846), + [anon_sym_in] = ACTIONS(1832), + [anon_sym_SEMI_SEMI] = ACTIONS(1834), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_LF] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1836), + [anon_sym_AMP] = ACTIONS(1834), }, [437] = { - [sym_compound_statement] = STATE(865), - [anon_sym_LPAREN] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1852), + [sym_compound_statement] = STATE(855), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1840), [sym_comment] = ACTIONS(53), }, [438] = { [anon_sym_PIPE] = ACTIONS(473), - [anon_sym_RPAREN] = ACTIONS(1854), - [anon_sym_SEMI_SEMI] = ACTIONS(1856), + [anon_sym_RPAREN] = ACTIONS(1842), + [anon_sym_SEMI_SEMI] = ACTIONS(1844), [anon_sym_PIPE_AMP] = ACTIONS(473), [anon_sym_AMP_AMP] = ACTIONS(479), [anon_sym_PIPE_PIPE] = ACTIONS(479), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_LF] = ACTIONS(1858), - [anon_sym_AMP] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_LF] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1844), }, [439] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(473), - [anon_sym_RPAREN] = ACTIONS(1854), - [anon_sym_SEMI_SEMI] = ACTIONS(1856), + [anon_sym_RPAREN] = ACTIONS(1842), + [anon_sym_SEMI_SEMI] = ACTIONS(1844), [anon_sym_PIPE_AMP] = ACTIONS(473), [anon_sym_AMP_AMP] = ACTIONS(479), [anon_sym_PIPE_PIPE] = ACTIONS(479), @@ -22793,27 +19358,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(371), [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_LF] = ACTIONS(1858), - [anon_sym_AMP] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_LF] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1844), }, [440] = { [sym__terminated_statement] = STATE(282), - [sym_for_statement] = STATE(868), - [sym_while_statement] = STATE(868), - [sym_if_statement] = STATE(868), - [sym_case_statement] = STATE(868), - [sym_function_definition] = STATE(868), - [sym_subshell] = STATE(868), - [sym_pipeline] = STATE(868), - [sym_list] = STATE(868), - [sym_negated_command] = STATE(868), - [sym_test_command] = STATE(868), - [sym_declaration_command] = STATE(868), - [sym_unset_command] = STATE(868), - [sym_command] = STATE(868), + [sym_for_statement] = STATE(858), + [sym_while_statement] = STATE(858), + [sym_if_statement] = STATE(858), + [sym_case_statement] = STATE(858), + [sym_function_definition] = STATE(858), + [sym_subshell] = STATE(858), + [sym_pipeline] = STATE(858), + [sym_list] = STATE(858), + [sym_negated_command] = STATE(858), + [sym_test_command] = STATE(858), + [sym_declaration_command] = STATE(858), + [sym_unset_command] = STATE(858), + [sym_command] = STATE(858), [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(869), + [sym_variable_assignment] = STATE(859), [sym_subscript] = STATE(66), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -22874,7 +19439,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [442] = { [anon_sym_AMP_AMP] = ACTIONS(543), [anon_sym_PIPE_PIPE] = ACTIONS(543), - [anon_sym_RBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(1848), [anon_sym_EQ_TILDE] = ACTIONS(547), [anon_sym_EQ_EQ] = ACTIONS(547), [anon_sym_EQ] = ACTIONS(549), @@ -22887,7 +19452,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [443] = { [anon_sym_AMP_AMP] = ACTIONS(573), [anon_sym_PIPE_PIPE] = ACTIONS(573), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1860), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1848), [anon_sym_EQ_TILDE] = ACTIONS(575), [anon_sym_EQ_EQ] = ACTIONS(575), [anon_sym_EQ] = ACTIONS(577), @@ -22899,13 +19464,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [444] = { [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(1862), - [anon_sym_PLUS_EQ] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1850), + [anon_sym_PLUS_EQ] = ACTIONS(1850), [sym_comment] = ACTIONS(53), }, [445] = { - [aux_sym_concatenation_repeat1] = STATE(873), - [sym__concat] = ACTIONS(1864), + [aux_sym_concatenation_repeat1] = STATE(863), + [sym__concat] = ACTIONS(1852), [sym_variable_name] = ACTIONS(583), [anon_sym_PIPE] = ACTIONS(585), [anon_sym_RPAREN] = ACTIONS(583), @@ -22929,8 +19494,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(875), - [anon_sym_DQUOTE] = ACTIONS(1866), + [aux_sym_string_repeat1] = STATE(865), + [anon_sym_DQUOTE] = ACTIONS(1854), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -22939,23 +19504,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), }, [447] = { - [sym_string] = STATE(877), + [sym_string] = STATE(867), [anon_sym_DQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(1868), - [sym_raw_string] = ACTIONS(1870), - [anon_sym_POUND] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_DOLLAR] = ACTIONS(1856), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(1856), + [anon_sym_DASH] = ACTIONS(1856), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1868), - [anon_sym_QMARK] = ACTIONS(1868), - [anon_sym_0] = ACTIONS(1874), - [anon_sym__] = ACTIONS(1874), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1860), + [anon_sym_STAR] = ACTIONS(1856), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_QMARK] = ACTIONS(1856), + [anon_sym_0] = ACTIONS(1862), + [anon_sym__] = ACTIONS(1862), }, [448] = { - [aux_sym_concatenation_repeat1] = STATE(873), - [sym__concat] = ACTIONS(1864), + [aux_sym_concatenation_repeat1] = STATE(863), + [sym__concat] = ACTIONS(1852), [sym_variable_name] = ACTIONS(599), [anon_sym_PIPE] = ACTIONS(601), [anon_sym_RPAREN] = ACTIONS(599), @@ -22976,35 +19541,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(601), }, [449] = { - [sym_subscript] = STATE(883), - [sym_variable_name] = ACTIONS(1876), - [anon_sym_DOLLAR] = ACTIONS(1878), - [anon_sym_POUND] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1878), + [sym_subscript] = STATE(873), + [sym_variable_name] = ACTIONS(1864), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_POUND] = ACTIONS(1868), + [anon_sym_DASH] = ACTIONS(1866), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1878), - [anon_sym_AT] = ACTIONS(1878), - [anon_sym_QMARK] = ACTIONS(1878), - [anon_sym_0] = ACTIONS(1884), - [anon_sym__] = ACTIONS(1884), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_AT] = ACTIONS(1866), + [anon_sym_QMARK] = ACTIONS(1866), + [anon_sym_0] = ACTIONS(1872), + [anon_sym__] = ACTIONS(1872), }, [450] = { - [sym_for_statement] = STATE(884), - [sym_while_statement] = STATE(884), - [sym_if_statement] = STATE(884), - [sym_case_statement] = STATE(884), - [sym_function_definition] = STATE(884), - [sym_subshell] = STATE(884), - [sym_pipeline] = STATE(884), - [sym_list] = STATE(884), - [sym_negated_command] = STATE(884), - [sym_test_command] = STATE(884), - [sym_declaration_command] = STATE(884), - [sym_unset_command] = STATE(884), - [sym_command] = STATE(884), + [sym_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_negated_command] = STATE(874), + [sym_test_command] = STATE(874), + [sym_declaration_command] = STATE(874), + [sym_unset_command] = STATE(874), + [sym_command] = STATE(874), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(885), + [sym_variable_assignment] = STATE(875), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -23053,21 +19618,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(301), }, [451] = { - [sym_for_statement] = STATE(886), - [sym_while_statement] = STATE(886), - [sym_if_statement] = STATE(886), - [sym_case_statement] = STATE(886), - [sym_function_definition] = STATE(886), - [sym_subshell] = STATE(886), - [sym_pipeline] = STATE(886), - [sym_list] = STATE(886), - [sym_negated_command] = STATE(886), - [sym_test_command] = STATE(886), - [sym_declaration_command] = STATE(886), - [sym_unset_command] = STATE(886), - [sym_command] = STATE(886), + [sym_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_negated_command] = STATE(876), + [sym_test_command] = STATE(876), + [sym_declaration_command] = STATE(876), + [sym_unset_command] = STATE(876), + [sym_command] = STATE(876), [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(887), + [sym_variable_assignment] = STATE(877), [sym_subscript] = STATE(183), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -23116,21 +19681,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(323), }, [452] = { - [sym_for_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_case_statement] = STATE(888), - [sym_function_definition] = STATE(888), - [sym_subshell] = STATE(888), - [sym_pipeline] = STATE(888), - [sym_list] = STATE(888), - [sym_negated_command] = STATE(888), - [sym_test_command] = STATE(888), - [sym_declaration_command] = STATE(888), - [sym_unset_command] = STATE(888), - [sym_command] = STATE(888), + [sym_for_statement] = STATE(878), + [sym_while_statement] = STATE(878), + [sym_if_statement] = STATE(878), + [sym_case_statement] = STATE(878), + [sym_function_definition] = STATE(878), + [sym_subshell] = STATE(878), + [sym_pipeline] = STATE(878), + [sym_list] = STATE(878), + [sym_negated_command] = STATE(878), + [sym_test_command] = STATE(878), + [sym_declaration_command] = STATE(878), + [sym_unset_command] = STATE(878), + [sym_command] = STATE(878), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(889), + [sym_variable_assignment] = STATE(879), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -23199,21 +19764,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(615), }, [454] = { - [anon_sym_EQ] = ACTIONS(1862), - [anon_sym_PLUS_EQ] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1850), + [anon_sym_PLUS_EQ] = ACTIONS(1850), [sym_comment] = ACTIONS(53), }, [455] = { - [sym_variable_assignment] = STATE(890), + [sym_variable_assignment] = STATE(880), [sym_subscript] = STATE(454), - [sym_concatenation] = STATE(890), + [sym_concatenation] = STATE(880), [sym_string] = STATE(448), [sym_simple_expansion] = STATE(448), [sym_string_expansion] = STATE(448), [sym_expansion] = STATE(448), [sym_command_substitution] = STATE(448), [sym_process_substitution] = STATE(448), - [aux_sym_declaration_command_repeat1] = STATE(890), + [aux_sym_declaration_command_repeat1] = STATE(880), [sym_variable_name] = ACTIONS(803), [anon_sym_PIPE] = ACTIONS(617), [anon_sym_RPAREN] = ACTIONS(619), @@ -23234,8 +19799,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(823), }, [456] = { - [aux_sym_concatenation_repeat1] = STATE(892), - [sym__concat] = ACTIONS(1886), + [aux_sym_concatenation_repeat1] = STATE(882), + [sym__concat] = ACTIONS(1874), [anon_sym_PIPE] = ACTIONS(623), [anon_sym_RPAREN] = ACTIONS(625), [anon_sym_PIPE_AMP] = ACTIONS(625), @@ -23258,8 +19823,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(894), - [anon_sym_DQUOTE] = ACTIONS(1888), + [aux_sym_string_repeat1] = STATE(884), + [anon_sym_DQUOTE] = ACTIONS(1876), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -23268,23 +19833,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), }, [458] = { - [sym_string] = STATE(896), + [sym_string] = STATE(886), [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_DOLLAR] = ACTIONS(1890), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_POUND] = ACTIONS(1890), - [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1878), + [sym_raw_string] = ACTIONS(1880), + [anon_sym_POUND] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1890), - [anon_sym_AT] = ACTIONS(1890), - [anon_sym_QMARK] = ACTIONS(1890), - [anon_sym_0] = ACTIONS(1896), - [anon_sym__] = ACTIONS(1896), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1882), + [anon_sym_STAR] = ACTIONS(1878), + [anon_sym_AT] = ACTIONS(1878), + [anon_sym_QMARK] = ACTIONS(1878), + [anon_sym_0] = ACTIONS(1884), + [anon_sym__] = ACTIONS(1884), }, [459] = { - [aux_sym_concatenation_repeat1] = STATE(892), - [sym__concat] = ACTIONS(1886), + [aux_sym_concatenation_repeat1] = STATE(882), + [sym__concat] = ACTIONS(1874), [anon_sym_PIPE] = ACTIONS(639), [anon_sym_RPAREN] = ACTIONS(641), [anon_sym_PIPE_AMP] = ACTIONS(641), @@ -23304,35 +19869,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(639), }, [460] = { - [sym_subscript] = STATE(902), - [sym_variable_name] = ACTIONS(1898), - [anon_sym_DOLLAR] = ACTIONS(1900), - [anon_sym_POUND] = ACTIONS(1902), - [anon_sym_DASH] = ACTIONS(1900), + [sym_subscript] = STATE(892), + [sym_variable_name] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1888), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1904), - [anon_sym_STAR] = ACTIONS(1900), - [anon_sym_AT] = ACTIONS(1900), - [anon_sym_QMARK] = ACTIONS(1900), - [anon_sym_0] = ACTIONS(1906), - [anon_sym__] = ACTIONS(1906), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1888), + [anon_sym_AT] = ACTIONS(1888), + [anon_sym_QMARK] = ACTIONS(1888), + [anon_sym_0] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), }, [461] = { - [sym_for_statement] = STATE(903), - [sym_while_statement] = STATE(903), - [sym_if_statement] = STATE(903), - [sym_case_statement] = STATE(903), - [sym_function_definition] = STATE(903), - [sym_subshell] = STATE(903), - [sym_pipeline] = STATE(903), - [sym_list] = STATE(903), - [sym_negated_command] = STATE(903), - [sym_test_command] = STATE(903), - [sym_declaration_command] = STATE(903), - [sym_unset_command] = STATE(903), - [sym_command] = STATE(903), + [sym_for_statement] = STATE(893), + [sym_while_statement] = STATE(893), + [sym_if_statement] = STATE(893), + [sym_case_statement] = STATE(893), + [sym_function_definition] = STATE(893), + [sym_subshell] = STATE(893), + [sym_pipeline] = STATE(893), + [sym_list] = STATE(893), + [sym_negated_command] = STATE(893), + [sym_test_command] = STATE(893), + [sym_declaration_command] = STATE(893), + [sym_unset_command] = STATE(893), + [sym_command] = STATE(893), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(904), + [sym_variable_assignment] = STATE(894), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -23381,21 +19946,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(301), }, [462] = { - [sym_for_statement] = STATE(905), - [sym_while_statement] = STATE(905), - [sym_if_statement] = STATE(905), - [sym_case_statement] = STATE(905), - [sym_function_definition] = STATE(905), - [sym_subshell] = STATE(905), - [sym_pipeline] = STATE(905), - [sym_list] = STATE(905), - [sym_negated_command] = STATE(905), - [sym_test_command] = STATE(905), - [sym_declaration_command] = STATE(905), - [sym_unset_command] = STATE(905), - [sym_command] = STATE(905), + [sym_for_statement] = STATE(895), + [sym_while_statement] = STATE(895), + [sym_if_statement] = STATE(895), + [sym_case_statement] = STATE(895), + [sym_function_definition] = STATE(895), + [sym_subshell] = STATE(895), + [sym_pipeline] = STATE(895), + [sym_list] = STATE(895), + [sym_negated_command] = STATE(895), + [sym_test_command] = STATE(895), + [sym_declaration_command] = STATE(895), + [sym_unset_command] = STATE(895), + [sym_command] = STATE(895), [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(906), + [sym_variable_assignment] = STATE(896), [sym_subscript] = STATE(183), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -23444,21 +20009,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(323), }, [463] = { - [sym_for_statement] = STATE(907), - [sym_while_statement] = STATE(907), - [sym_if_statement] = STATE(907), - [sym_case_statement] = STATE(907), - [sym_function_definition] = STATE(907), - [sym_subshell] = STATE(907), - [sym_pipeline] = STATE(907), - [sym_list] = STATE(907), - [sym_negated_command] = STATE(907), - [sym_test_command] = STATE(907), - [sym_declaration_command] = STATE(907), - [sym_unset_command] = STATE(907), - [sym_command] = STATE(907), + [sym_for_statement] = STATE(897), + [sym_while_statement] = STATE(897), + [sym_if_statement] = STATE(897), + [sym_case_statement] = STATE(897), + [sym_function_definition] = STATE(897), + [sym_subshell] = STATE(897), + [sym_pipeline] = STATE(897), + [sym_list] = STATE(897), + [sym_negated_command] = STATE(897), + [sym_test_command] = STATE(897), + [sym_declaration_command] = STATE(897), + [sym_unset_command] = STATE(897), + [sym_command] = STATE(897), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(908), + [sym_variable_assignment] = STATE(898), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -23526,14 +20091,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(653), }, [465] = { - [sym_concatenation] = STATE(909), + [sym_concatenation] = STATE(899), [sym_string] = STATE(459), [sym_simple_expansion] = STATE(459), [sym_string_expansion] = STATE(459), [sym_expansion] = STATE(459), [sym_command_substitution] = STATE(459), [sym_process_substitution] = STATE(459), - [aux_sym_unset_command_repeat1] = STATE(909), + [aux_sym_unset_command_repeat1] = STATE(899), [anon_sym_PIPE] = ACTIONS(657), [anon_sym_RPAREN] = ACTIONS(659), [anon_sym_PIPE_AMP] = ACTIONS(659), @@ -23553,26 +20118,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(843), }, [466] = { - [sym_string] = STATE(910), - [sym_simple_expansion] = STATE(910), - [sym_string_expansion] = STATE(910), - [sym_expansion] = STATE(910), - [sym_command_substitution] = STATE(910), - [sym_process_substitution] = STATE(910), - [sym__special_characters] = ACTIONS(1908), + [sym_string] = STATE(900), + [sym_simple_expansion] = STATE(900), + [sym_string_expansion] = STATE(900), + [sym_expansion] = STATE(900), + [sym_command_substitution] = STATE(900), + [sym_process_substitution] = STATE(900), + [sym__special_characters] = ACTIONS(1896), [anon_sym_DQUOTE] = ACTIONS(287), [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(1908), + [sym_raw_string] = ACTIONS(1896), [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), [anon_sym_BQUOTE] = ACTIONS(297), [anon_sym_LT_LPAREN] = ACTIONS(299), [anon_sym_GT_LPAREN] = ACTIONS(299), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1908), + [sym_word] = ACTIONS(1896), }, [467] = { - [aux_sym_concatenation_repeat1] = STATE(911), + [aux_sym_concatenation_repeat1] = STATE(901), [sym__simple_heredoc_body] = ACTIONS(693), [sym__heredoc_body_beginning] = ACTIONS(693), [sym_file_descriptor] = ACTIONS(693), @@ -23645,7 +20210,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1898), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -23757,32 +20322,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [473] = { [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(1912), + [anon_sym_EQ] = ACTIONS(1900), [sym_comment] = ACTIONS(53), }, [474] = { - [sym_concatenation] = STATE(916), + [sym_concatenation] = STATE(906), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(916), - [anon_sym_RBRACE] = ACTIONS(1914), - [anon_sym_EQ] = ACTIONS(1916), + [aux_sym_expansion_repeat1] = STATE(906), + [anon_sym_RBRACE] = ACTIONS(1902), + [anon_sym_EQ] = ACTIONS(1904), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1918), + [anon_sym_POUND] = ACTIONS(1906), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), + [aux_sym_SLASH] = ACTIONS(1908), + [anon_sym_COLON] = ACTIONS(1904), + [anon_sym_COLON_QMARK] = ACTIONS(1904), + [anon_sym_COLON_DASH] = ACTIONS(1904), + [anon_sym_PERCENT] = ACTIONS(1904), + [anon_sym_DASH] = ACTIONS(1904), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -23791,41 +20356,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [475] = { - [sym_subscript] = STATE(920), - [sym_variable_name] = ACTIONS(1922), - [anon_sym_DOLLAR] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1924), + [sym_subscript] = STATE(910), + [sym_variable_name] = ACTIONS(1910), + [anon_sym_DOLLAR] = ACTIONS(1912), + [anon_sym_DASH] = ACTIONS(1912), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1926), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AT] = ACTIONS(1924), - [anon_sym_QMARK] = ACTIONS(1924), - [anon_sym_0] = ACTIONS(1928), - [anon_sym__] = ACTIONS(1928), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1914), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AT] = ACTIONS(1912), + [anon_sym_QMARK] = ACTIONS(1912), + [anon_sym_0] = ACTIONS(1916), + [anon_sym__] = ACTIONS(1916), }, [476] = { - [sym_concatenation] = STATE(923), + [sym_concatenation] = STATE(913), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(923), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_EQ] = ACTIONS(1932), + [aux_sym_expansion_repeat1] = STATE(913), + [anon_sym_RBRACE] = ACTIONS(1918), + [anon_sym_EQ] = ACTIONS(1920), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1934), + [anon_sym_POUND] = ACTIONS(1922), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1936), - [anon_sym_COLON] = ACTIONS(1932), - [anon_sym_COLON_QMARK] = ACTIONS(1932), - [anon_sym_COLON_DASH] = ACTIONS(1932), - [anon_sym_PERCENT] = ACTIONS(1932), - [anon_sym_DASH] = ACTIONS(1932), + [aux_sym_SLASH] = ACTIONS(1924), + [anon_sym_COLON] = ACTIONS(1920), + [anon_sym_COLON_QMARK] = ACTIONS(1920), + [anon_sym_COLON_DASH] = ACTIONS(1920), + [anon_sym_PERCENT] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -23834,28 +20399,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [477] = { - [sym_concatenation] = STATE(926), + [sym_concatenation] = STATE(916), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(926), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_EQ] = ACTIONS(1940), + [aux_sym_expansion_repeat1] = STATE(916), + [anon_sym_RBRACE] = ACTIONS(1926), + [anon_sym_EQ] = ACTIONS(1928), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1942), + [anon_sym_POUND] = ACTIONS(1930), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1944), - [anon_sym_COLON] = ACTIONS(1940), - [anon_sym_COLON_QMARK] = ACTIONS(1940), - [anon_sym_COLON_DASH] = ACTIONS(1940), - [anon_sym_PERCENT] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1940), + [aux_sym_SLASH] = ACTIONS(1932), + [anon_sym_COLON] = ACTIONS(1928), + [anon_sym_COLON_QMARK] = ACTIONS(1928), + [anon_sym_COLON_DASH] = ACTIONS(1928), + [anon_sym_PERCENT] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -23865,7 +20430,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [478] = { [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1934), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -23875,7 +20440,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1934), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -23903,7 +20468,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(925), [anon_sym_AMP_AMP] = ACTIONS(927), [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_BQUOTE] = ACTIONS(1946), + [anon_sym_BQUOTE] = ACTIONS(1934), [sym_comment] = ACTIONS(53), }, [481] = { @@ -23926,7 +20491,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(369), [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(1946), + [anon_sym_BQUOTE] = ACTIONS(1934), [anon_sym_LT_LPAREN] = ACTIONS(369), [anon_sym_GT_LPAREN] = ACTIONS(369), [sym_comment] = ACTIONS(53), @@ -23934,7 +20499,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [482] = { [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1948), + [anon_sym_RPAREN] = ACTIONS(1936), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -23944,7 +20509,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1948), + [anon_sym_RPAREN] = ACTIONS(1936), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -23968,25 +20533,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(369), }, [484] = { - [anon_sym_RPAREN] = ACTIONS(1950), + [anon_sym_RPAREN] = ACTIONS(1938), [sym_comment] = ACTIONS(53), }, [485] = { - [sym_for_statement] = STATE(930), - [sym_while_statement] = STATE(930), - [sym_if_statement] = STATE(930), - [sym_case_statement] = STATE(930), - [sym_function_definition] = STATE(930), - [sym_subshell] = STATE(930), - [sym_pipeline] = STATE(930), - [sym_list] = STATE(930), - [sym_negated_command] = STATE(930), - [sym_test_command] = STATE(930), - [sym_declaration_command] = STATE(930), - [sym_unset_command] = STATE(930), - [sym_command] = STATE(930), + [sym_for_statement] = STATE(920), + [sym_while_statement] = STATE(920), + [sym_if_statement] = STATE(920), + [sym_case_statement] = STATE(920), + [sym_function_definition] = STATE(920), + [sym_subshell] = STATE(920), + [sym_pipeline] = STATE(920), + [sym_list] = STATE(920), + [sym_negated_command] = STATE(920), + [sym_test_command] = STATE(920), + [sym_declaration_command] = STATE(920), + [sym_unset_command] = STATE(920), + [sym_command] = STATE(920), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(931), + [sym_variable_assignment] = STATE(921), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -24035,59 +20600,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(301), }, [486] = { - [sym__simple_heredoc_body] = ACTIONS(1952), - [sym__heredoc_body_beginning] = ACTIONS(1952), - [sym_file_descriptor] = ACTIONS(1952), - [sym__concat] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_RPAREN] = ACTIONS(1954), - [anon_sym_SEMI_SEMI] = ACTIONS(1954), - [anon_sym_PIPE_AMP] = ACTIONS(1954), - [anon_sym_AMP_AMP] = ACTIONS(1954), - [anon_sym_PIPE_PIPE] = ACTIONS(1954), - [anon_sym_EQ_TILDE] = ACTIONS(1954), - [anon_sym_EQ_EQ] = ACTIONS(1954), - [anon_sym_LT] = ACTIONS(1954), - [anon_sym_GT] = ACTIONS(1954), - [anon_sym_GT_GT] = ACTIONS(1954), - [anon_sym_AMP_GT] = ACTIONS(1954), - [anon_sym_AMP_GT_GT] = ACTIONS(1954), - [anon_sym_LT_AMP] = ACTIONS(1954), - [anon_sym_GT_AMP] = ACTIONS(1954), - [anon_sym_LT_LT] = ACTIONS(1954), - [anon_sym_LT_LT_DASH] = ACTIONS(1954), - [anon_sym_LT_LT_LT] = ACTIONS(1954), - [sym__special_characters] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(1954), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1954), - [anon_sym_BQUOTE] = ACTIONS(1954), - [anon_sym_LT_LPAREN] = ACTIONS(1954), - [anon_sym_GT_LPAREN] = ACTIONS(1954), + [sym__simple_heredoc_body] = ACTIONS(1940), + [sym__heredoc_body_beginning] = ACTIONS(1940), + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(1940), + [anon_sym_esac] = ACTIONS(1942), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1942), + [anon_sym_PIPE_AMP] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1942), + [anon_sym_PIPE_PIPE] = ACTIONS(1942), + [anon_sym_EQ_TILDE] = ACTIONS(1942), + [anon_sym_EQ_EQ] = ACTIONS(1942), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_GT_GT] = ACTIONS(1942), + [anon_sym_AMP_GT] = ACTIONS(1942), + [anon_sym_AMP_GT_GT] = ACTIONS(1942), + [anon_sym_LT_AMP] = ACTIONS(1942), + [anon_sym_GT_AMP] = ACTIONS(1942), + [anon_sym_LT_LT] = ACTIONS(1942), + [anon_sym_LT_LT_DASH] = ACTIONS(1942), + [anon_sym_LT_LT_LT] = ACTIONS(1942), + [sym__special_characters] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [anon_sym_DOLLAR] = ACTIONS(1942), + [sym_raw_string] = ACTIONS(1942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1942), + [anon_sym_BQUOTE] = ACTIONS(1942), + [anon_sym_LT_LPAREN] = ACTIONS(1942), + [anon_sym_GT_LPAREN] = ACTIONS(1942), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1954), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_LF] = ACTIONS(1952), - [anon_sym_AMP] = ACTIONS(1954), + [sym_word] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1942), }, [487] = { - [sym_for_statement] = STATE(932), - [sym_while_statement] = STATE(932), - [sym_if_statement] = STATE(932), - [sym_case_statement] = STATE(932), - [sym_function_definition] = STATE(932), - [sym_subshell] = STATE(932), - [sym_pipeline] = STATE(932), - [sym_list] = STATE(932), - [sym_negated_command] = STATE(932), - [sym_test_command] = STATE(932), - [sym_declaration_command] = STATE(932), - [sym_unset_command] = STATE(932), - [sym_command] = STATE(932), + [sym_for_statement] = STATE(922), + [sym_while_statement] = STATE(922), + [sym_if_statement] = STATE(922), + [sym_case_statement] = STATE(922), + [sym_function_definition] = STATE(922), + [sym_subshell] = STATE(922), + [sym_pipeline] = STATE(922), + [sym_list] = STATE(922), + [sym_negated_command] = STATE(922), + [sym_test_command] = STATE(922), + [sym_declaration_command] = STATE(922), + [sym_unset_command] = STATE(922), + [sym_command] = STATE(922), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(933), + [sym_variable_assignment] = STATE(923), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -24145,89 +20711,89 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [489] = { - [sym_simple_expansion] = STATE(935), - [sym_expansion] = STATE(935), - [aux_sym_heredoc_body_repeat1] = STATE(935), - [sym__heredoc_body_middle] = ACTIONS(1956), - [sym__heredoc_body_end] = ACTIONS(1958), + [sym_simple_expansion] = STATE(925), + [sym_expansion] = STATE(925), + [aux_sym_heredoc_body_repeat1] = STATE(925), + [sym__heredoc_body_middle] = ACTIONS(1944), + [sym__heredoc_body_end] = ACTIONS(1946), [anon_sym_DOLLAR] = ACTIONS(963), [anon_sym_DOLLAR_LBRACE] = ACTIONS(965), [sym_comment] = ACTIONS(53), }, [490] = { - [anon_sym_LT] = ACTIONS(1960), - [anon_sym_GT] = ACTIONS(1960), - [anon_sym_GT_GT] = ACTIONS(1962), - [anon_sym_AMP_GT] = ACTIONS(1960), - [anon_sym_AMP_GT_GT] = ACTIONS(1962), - [anon_sym_LT_AMP] = ACTIONS(1962), - [anon_sym_GT_AMP] = ACTIONS(1962), + [anon_sym_LT] = ACTIONS(1948), + [anon_sym_GT] = ACTIONS(1948), + [anon_sym_GT_GT] = ACTIONS(1950), + [anon_sym_AMP_GT] = ACTIONS(1948), + [anon_sym_AMP_GT_GT] = ACTIONS(1950), + [anon_sym_LT_AMP] = ACTIONS(1950), + [anon_sym_GT_AMP] = ACTIONS(1950), [sym_comment] = ACTIONS(53), }, [491] = { - [sym_concatenation] = STATE(939), - [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(1964), - [anon_sym_DQUOTE] = ACTIONS(1966), + [sym_concatenation] = STATE(929), + [sym_string] = STATE(928), + [sym_simple_expansion] = STATE(928), + [sym_string_expansion] = STATE(928), + [sym_expansion] = STATE(928), + [sym_command_substitution] = STATE(928), + [sym_process_substitution] = STATE(928), + [sym__special_characters] = ACTIONS(1952), + [anon_sym_DQUOTE] = ACTIONS(1954), [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(1968), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), - [anon_sym_BQUOTE] = ACTIONS(1974), - [anon_sym_LT_LPAREN] = ACTIONS(1976), - [anon_sym_GT_LPAREN] = ACTIONS(1976), + [sym_raw_string] = ACTIONS(1956), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1968), - [sym_regex] = ACTIONS(1978), + [sym_word] = ACTIONS(1956), + [sym_regex] = ACTIONS(1966), }, [492] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(941), - [sym_simple_expansion] = STATE(941), - [sym_string_expansion] = STATE(941), - [sym_expansion] = STATE(941), - [sym_command_substitution] = STATE(941), - [sym_process_substitution] = STATE(941), - [sym__special_characters] = ACTIONS(1980), + [sym_concatenation] = STATE(932), + [sym_string] = STATE(931), + [sym_simple_expansion] = STATE(931), + [sym_string_expansion] = STATE(931), + [sym_expansion] = STATE(931), + [sym_command_substitution] = STATE(931), + [sym_process_substitution] = STATE(931), + [sym__special_characters] = ACTIONS(1968), [anon_sym_DQUOTE] = ACTIONS(287), [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(1982), + [sym_raw_string] = ACTIONS(1970), [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), [anon_sym_BQUOTE] = ACTIONS(297), [anon_sym_LT_LPAREN] = ACTIONS(299), [anon_sym_GT_LPAREN] = ACTIONS(299), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1982), + [sym_word] = ACTIONS(1970), }, [493] = { - [sym_heredoc_start] = ACTIONS(1984), + [sym_heredoc_start] = ACTIONS(1972), [sym_comment] = ACTIONS(53), }, [494] = { - [sym_concatenation] = STATE(946), - [sym_string] = STATE(945), - [sym_simple_expansion] = STATE(945), - [sym_string_expansion] = STATE(945), - [sym_expansion] = STATE(945), - [sym_command_substitution] = STATE(945), - [sym_process_substitution] = STATE(945), - [sym__special_characters] = ACTIONS(1986), + [sym_concatenation] = STATE(936), + [sym_string] = STATE(935), + [sym_simple_expansion] = STATE(935), + [sym_string_expansion] = STATE(935), + [sym_expansion] = STATE(935), + [sym_command_substitution] = STATE(935), + [sym_process_substitution] = STATE(935), + [sym__special_characters] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(287), [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1976), [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), [anon_sym_BQUOTE] = ACTIONS(297), [anon_sym_LT_LPAREN] = ACTIONS(299), [anon_sym_GT_LPAREN] = ACTIONS(299), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1988), + [sym_word] = ACTIONS(1976), }, [495] = { [aux_sym_concatenation_repeat1] = STATE(467), @@ -24309,11 +20875,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [498] = { - [sym_file_redirect] = STATE(948), - [sym_heredoc_redirect] = STATE(948), - [sym_heredoc_body] = STATE(947), - [sym_herestring_redirect] = STATE(948), - [aux_sym_while_statement_repeat1] = STATE(948), + [sym_file_redirect] = STATE(938), + [sym_heredoc_redirect] = STATE(938), + [sym_heredoc_body] = STATE(937), + [sym_herestring_redirect] = STATE(938), + [aux_sym_while_statement_repeat1] = STATE(938), [sym__simple_heredoc_body] = ACTIONS(877), [sym__heredoc_body_beginning] = ACTIONS(879), [sym_file_descriptor] = ACTIONS(881), @@ -24335,19 +20901,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [499] = { - [sym_file_redirect] = STATE(949), - [sym_heredoc_redirect] = STATE(949), - [sym_heredoc_body] = STATE(947), - [sym_herestring_redirect] = STATE(949), - [sym_concatenation] = STATE(950), + [sym_file_redirect] = STATE(939), + [sym_heredoc_redirect] = STATE(939), + [sym_heredoc_body] = STATE(937), + [sym_herestring_redirect] = STATE(939), + [sym_concatenation] = STATE(940), [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_while_statement_repeat1] = STATE(949), - [aux_sym_command_repeat2] = STATE(950), + [aux_sym_while_statement_repeat1] = STATE(939), + [aux_sym_command_repeat2] = STATE(940), [sym__simple_heredoc_body] = ACTIONS(877), [sym__heredoc_body_beginning] = ACTIONS(879), [sym_file_descriptor] = ACTIONS(881), @@ -24381,19 +20947,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(899), }, [500] = { - [sym_file_redirect] = STATE(949), - [sym_heredoc_redirect] = STATE(949), - [sym_heredoc_body] = STATE(947), - [sym_herestring_redirect] = STATE(949), - [sym_concatenation] = STATE(951), + [sym_file_redirect] = STATE(939), + [sym_heredoc_redirect] = STATE(939), + [sym_heredoc_body] = STATE(937), + [sym_herestring_redirect] = STATE(939), + [sym_concatenation] = STATE(941), [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_while_statement_repeat1] = STATE(949), - [aux_sym_command_repeat2] = STATE(951), + [aux_sym_while_statement_repeat1] = STATE(939), + [aux_sym_command_repeat2] = STATE(941), [sym__simple_heredoc_body] = ACTIONS(877), [sym__heredoc_body_beginning] = ACTIONS(879), [sym_file_descriptor] = ACTIONS(881), @@ -24427,43 +20993,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(899), }, [501] = { - [sym_concatenation] = STATE(672), - [sym_string] = STATE(953), - [sym_array] = STATE(672), - [sym_simple_expansion] = STATE(953), - [sym_string_expansion] = STATE(953), - [sym_expansion] = STATE(953), - [sym_command_substitution] = STATE(953), - [sym_process_substitution] = STATE(953), - [sym__empty_value] = ACTIONS(1291), - [anon_sym_LPAREN] = ACTIONS(1293), - [sym__special_characters] = ACTIONS(1990), + [sym_concatenation] = STATE(662), + [sym_string] = STATE(943), + [sym_array] = STATE(662), + [sym_simple_expansion] = STATE(943), + [sym_string_expansion] = STATE(943), + [sym_expansion] = STATE(943), + [sym_command_substitution] = STATE(943), + [sym_process_substitution] = STATE(943), + [sym__empty_value] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym__special_characters] = ACTIONS(1978), [anon_sym_DQUOTE] = ACTIONS(207), [anon_sym_DOLLAR] = ACTIONS(209), - [sym_raw_string] = ACTIONS(1992), + [sym_raw_string] = ACTIONS(1980), [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), [anon_sym_DOLLAR_LPAREN] = ACTIONS(215), [anon_sym_BQUOTE] = ACTIONS(217), [anon_sym_LT_LPAREN] = ACTIONS(219), [anon_sym_GT_LPAREN] = ACTIONS(219), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1992), + [sym_word] = ACTIONS(1980), }, [502] = { - [sym_do_group] = STATE(954), - [anon_sym_do] = ACTIONS(1834), + [sym_do_group] = STATE(944), + [anon_sym_do] = ACTIONS(1822), [sym_comment] = ACTIONS(53), }, [503] = { - [sym_compound_statement] = STATE(956), - [anon_sym_LPAREN] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1852), + [sym_compound_statement] = STATE(946), + [anon_sym_LPAREN] = ACTIONS(1982), + [anon_sym_LBRACE] = ACTIONS(1840), [sym_comment] = ACTIONS(53), }, [504] = { [anon_sym_AMP_AMP] = ACTIONS(543), [anon_sym_PIPE_PIPE] = ACTIONS(543), - [anon_sym_RBRACK] = ACTIONS(1996), + [anon_sym_RBRACK] = ACTIONS(1984), [anon_sym_EQ_TILDE] = ACTIONS(547), [anon_sym_EQ_EQ] = ACTIONS(547), [anon_sym_EQ] = ACTIONS(549), @@ -24476,7 +21042,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [505] = { [anon_sym_AMP_AMP] = ACTIONS(573), [anon_sym_PIPE_PIPE] = ACTIONS(573), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1996), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1984), [anon_sym_EQ_TILDE] = ACTIONS(575), [anon_sym_EQ_EQ] = ACTIONS(575), [anon_sym_EQ] = ACTIONS(577), @@ -24488,13 +21054,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [506] = { [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(1998), - [anon_sym_PLUS_EQ] = ACTIONS(1998), + [anon_sym_EQ] = ACTIONS(1986), + [anon_sym_PLUS_EQ] = ACTIONS(1986), [sym_comment] = ACTIONS(53), }, [507] = { - [aux_sym_concatenation_repeat1] = STATE(959), - [sym__concat] = ACTIONS(1864), + [aux_sym_concatenation_repeat1] = STATE(949), + [sym__concat] = ACTIONS(1852), [sym_variable_name] = ACTIONS(583), [anon_sym_PIPE] = ACTIONS(585), [anon_sym_PIPE_AMP] = ACTIONS(583), @@ -24514,8 +21080,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(585), }, [508] = { - [aux_sym_concatenation_repeat1] = STATE(959), - [sym__concat] = ACTIONS(1864), + [aux_sym_concatenation_repeat1] = STATE(949), + [sym__concat] = ACTIONS(1852), [sym_variable_name] = ACTIONS(599), [anon_sym_PIPE] = ACTIONS(601), [anon_sym_PIPE_AMP] = ACTIONS(599), @@ -24535,21 +21101,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(601), }, [509] = { - [anon_sym_EQ] = ACTIONS(1998), - [anon_sym_PLUS_EQ] = ACTIONS(1998), + [anon_sym_EQ] = ACTIONS(1986), + [anon_sym_PLUS_EQ] = ACTIONS(1986), [sym_comment] = ACTIONS(53), }, [510] = { - [sym_variable_assignment] = STATE(960), + [sym_variable_assignment] = STATE(950), [sym_subscript] = STATE(509), - [sym_concatenation] = STATE(960), + [sym_concatenation] = STATE(950), [sym_string] = STATE(508), [sym_simple_expansion] = STATE(508), [sym_string_expansion] = STATE(508), [sym_expansion] = STATE(508), [sym_command_substitution] = STATE(508), [sym_process_substitution] = STATE(508), - [aux_sym_declaration_command_repeat1] = STATE(960), + [aux_sym_declaration_command_repeat1] = STATE(950), [sym_variable_name] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(617), [anon_sym_PIPE_AMP] = ACTIONS(619), @@ -24569,8 +21135,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(913), }, [511] = { - [aux_sym_concatenation_repeat1] = STATE(961), - [sym__concat] = ACTIONS(1886), + [aux_sym_concatenation_repeat1] = STATE(951), + [sym__concat] = ACTIONS(1874), [anon_sym_PIPE] = ACTIONS(623), [anon_sym_PIPE_AMP] = ACTIONS(625), [anon_sym_AMP_AMP] = ACTIONS(625), @@ -24589,8 +21155,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(623), }, [512] = { - [aux_sym_concatenation_repeat1] = STATE(961), - [sym__concat] = ACTIONS(1886), + [aux_sym_concatenation_repeat1] = STATE(951), + [sym__concat] = ACTIONS(1874), [anon_sym_PIPE] = ACTIONS(639), [anon_sym_PIPE_AMP] = ACTIONS(641), [anon_sym_AMP_AMP] = ACTIONS(641), @@ -24609,14 +21175,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(639), }, [513] = { - [sym_concatenation] = STATE(962), + [sym_concatenation] = STATE(952), [sym_string] = STATE(512), [sym_simple_expansion] = STATE(512), [sym_string_expansion] = STATE(512), [sym_expansion] = STATE(512), [sym_command_substitution] = STATE(512), [sym_process_substitution] = STATE(512), - [aux_sym_unset_command_repeat1] = STATE(962), + [aux_sym_unset_command_repeat1] = STATE(952), [anon_sym_PIPE] = ACTIONS(657), [anon_sym_PIPE_AMP] = ACTIONS(659), [anon_sym_AMP_AMP] = ACTIONS(659), @@ -24635,7 +21201,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(919), }, [514] = { - [aux_sym_concatenation_repeat1] = STATE(963), + [aux_sym_concatenation_repeat1] = STATE(953), [sym__simple_heredoc_body] = ACTIONS(693), [sym__heredoc_body_beginning] = ACTIONS(693), [sym_file_descriptor] = ACTIONS(693), @@ -24669,25 +21235,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(695), }, [515] = { - [anon_sym_RPAREN] = ACTIONS(2000), + [anon_sym_RPAREN] = ACTIONS(1988), [sym_comment] = ACTIONS(53), }, [516] = { - [sym_for_statement] = STATE(930), - [sym_while_statement] = STATE(930), - [sym_if_statement] = STATE(930), - [sym_case_statement] = STATE(930), - [sym_function_definition] = STATE(930), - [sym_subshell] = STATE(930), - [sym_pipeline] = STATE(930), - [sym_list] = STATE(930), - [sym_negated_command] = STATE(930), - [sym_test_command] = STATE(930), - [sym_declaration_command] = STATE(930), - [sym_unset_command] = STATE(930), - [sym_command] = STATE(930), + [sym_for_statement] = STATE(920), + [sym_while_statement] = STATE(920), + [sym_if_statement] = STATE(920), + [sym_case_statement] = STATE(920), + [sym_function_definition] = STATE(920), + [sym_subshell] = STATE(920), + [sym_pipeline] = STATE(920), + [sym_list] = STATE(920), + [sym_negated_command] = STATE(920), + [sym_test_command] = STATE(920), + [sym_declaration_command] = STATE(920), + [sym_unset_command] = STATE(920), + [sym_command] = STATE(920), [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(965), + [sym_variable_assignment] = STATE(955), [sym_subscript] = STATE(183), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -24736,21 +21302,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(323), }, [517] = { - [sym_for_statement] = STATE(966), - [sym_while_statement] = STATE(966), - [sym_if_statement] = STATE(966), - [sym_case_statement] = STATE(966), - [sym_function_definition] = STATE(966), - [sym_subshell] = STATE(966), - [sym_pipeline] = STATE(966), - [sym_list] = STATE(966), - [sym_negated_command] = STATE(966), - [sym_test_command] = STATE(966), - [sym_declaration_command] = STATE(966), - [sym_unset_command] = STATE(966), - [sym_command] = STATE(966), + [sym_for_statement] = STATE(956), + [sym_while_statement] = STATE(956), + [sym_if_statement] = STATE(956), + [sym_case_statement] = STATE(956), + [sym_function_definition] = STATE(956), + [sym_subshell] = STATE(956), + [sym_pipeline] = STATE(956), + [sym_list] = STATE(956), + [sym_negated_command] = STATE(956), + [sym_test_command] = STATE(956), + [sym_declaration_command] = STATE(956), + [sym_unset_command] = STATE(956), + [sym_command] = STATE(956), [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(967), + [sym_variable_assignment] = STATE(957), [sym_subscript] = STATE(183), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -24799,75 +21365,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(323), }, [518] = { - [anon_sym_LT] = ACTIONS(2002), - [anon_sym_GT] = ACTIONS(2002), - [anon_sym_GT_GT] = ACTIONS(2004), - [anon_sym_AMP_GT] = ACTIONS(2002), - [anon_sym_AMP_GT_GT] = ACTIONS(2004), - [anon_sym_LT_AMP] = ACTIONS(2004), - [anon_sym_GT_AMP] = ACTIONS(2004), + [anon_sym_LT] = ACTIONS(1990), + [anon_sym_GT] = ACTIONS(1990), + [anon_sym_GT_GT] = ACTIONS(1992), + [anon_sym_AMP_GT] = ACTIONS(1990), + [anon_sym_AMP_GT_GT] = ACTIONS(1992), + [anon_sym_LT_AMP] = ACTIONS(1992), + [anon_sym_GT_AMP] = ACTIONS(1992), [sym_comment] = ACTIONS(53), }, [519] = { - [sym_concatenation] = STATE(939), - [sym_string] = STATE(970), - [sym_simple_expansion] = STATE(970), - [sym_string_expansion] = STATE(970), - [sym_expansion] = STATE(970), - [sym_command_substitution] = STATE(970), - [sym_process_substitution] = STATE(970), - [sym__special_characters] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(1966), + [sym_concatenation] = STATE(929), + [sym_string] = STATE(960), + [sym_simple_expansion] = STATE(960), + [sym_string_expansion] = STATE(960), + [sym_expansion] = STATE(960), + [sym_command_substitution] = STATE(960), + [sym_process_substitution] = STATE(960), + [sym__special_characters] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1954), [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(2008), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), - [anon_sym_BQUOTE] = ACTIONS(1974), - [anon_sym_LT_LPAREN] = ACTIONS(1976), - [anon_sym_GT_LPAREN] = ACTIONS(1976), + [sym_raw_string] = ACTIONS(1996), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_LT_LPAREN] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2008), - [sym_regex] = ACTIONS(1978), + [sym_word] = ACTIONS(1996), + [sym_regex] = ACTIONS(1966), }, [520] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(972), - [sym_simple_expansion] = STATE(972), - [sym_string_expansion] = STATE(972), - [sym_expansion] = STATE(972), - [sym_command_substitution] = STATE(972), - [sym_process_substitution] = STATE(972), - [sym__special_characters] = ACTIONS(2010), + [sym_concatenation] = STATE(932), + [sym_string] = STATE(962), + [sym_simple_expansion] = STATE(962), + [sym_string_expansion] = STATE(962), + [sym_expansion] = STATE(962), + [sym_command_substitution] = STATE(962), + [sym_process_substitution] = STATE(962), + [sym__special_characters] = ACTIONS(1998), [anon_sym_DQUOTE] = ACTIONS(287), [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(2012), + [sym_raw_string] = ACTIONS(2000), [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), [anon_sym_BQUOTE] = ACTIONS(297), [anon_sym_LT_LPAREN] = ACTIONS(299), [anon_sym_GT_LPAREN] = ACTIONS(299), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2012), + [sym_word] = ACTIONS(2000), }, [521] = { - [sym_concatenation] = STATE(946), - [sym_string] = STATE(974), - [sym_simple_expansion] = STATE(974), - [sym_string_expansion] = STATE(974), - [sym_expansion] = STATE(974), - [sym_command_substitution] = STATE(974), - [sym_process_substitution] = STATE(974), - [sym__special_characters] = ACTIONS(2014), + [sym_concatenation] = STATE(936), + [sym_string] = STATE(964), + [sym_simple_expansion] = STATE(964), + [sym_string_expansion] = STATE(964), + [sym_expansion] = STATE(964), + [sym_command_substitution] = STATE(964), + [sym_process_substitution] = STATE(964), + [sym__special_characters] = ACTIONS(2002), [anon_sym_DQUOTE] = ACTIONS(287), [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(2016), + [sym_raw_string] = ACTIONS(2004), [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), [anon_sym_BQUOTE] = ACTIONS(297), [anon_sym_LT_LPAREN] = ACTIONS(299), [anon_sym_GT_LPAREN] = ACTIONS(299), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2016), + [sym_word] = ACTIONS(2004), }, [522] = { [aux_sym_concatenation_repeat1] = STATE(514), @@ -24938,11 +21504,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(993), }, [524] = { - [sym_file_redirect] = STATE(975), - [sym_heredoc_redirect] = STATE(975), - [sym_heredoc_body] = STATE(947), - [sym_herestring_redirect] = STATE(975), - [aux_sym_while_statement_repeat1] = STATE(975), + [sym_file_redirect] = STATE(965), + [sym_heredoc_redirect] = STATE(965), + [sym_heredoc_body] = STATE(937), + [sym_herestring_redirect] = STATE(965), + [aux_sym_while_statement_repeat1] = STATE(965), [sym__simple_heredoc_body] = ACTIONS(877), [sym__heredoc_body_beginning] = ACTIONS(879), [sym_file_descriptor] = ACTIONS(929), @@ -24964,19 +21530,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [525] = { - [sym_file_redirect] = STATE(976), - [sym_heredoc_redirect] = STATE(976), - [sym_heredoc_body] = STATE(947), - [sym_herestring_redirect] = STATE(976), - [sym_concatenation] = STATE(977), + [sym_file_redirect] = STATE(966), + [sym_heredoc_redirect] = STATE(966), + [sym_heredoc_body] = STATE(937), + [sym_herestring_redirect] = STATE(966), + [sym_concatenation] = STATE(967), [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), - [aux_sym_while_statement_repeat1] = STATE(976), - [aux_sym_command_repeat2] = STATE(977), + [aux_sym_while_statement_repeat1] = STATE(966), + [aux_sym_command_repeat2] = STATE(967), [sym__simple_heredoc_body] = ACTIONS(877), [sym__heredoc_body_beginning] = ACTIONS(879), [sym_file_descriptor] = ACTIONS(929), @@ -25009,19 +21575,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(943), }, [526] = { - [sym_file_redirect] = STATE(976), - [sym_heredoc_redirect] = STATE(976), - [sym_heredoc_body] = STATE(947), - [sym_herestring_redirect] = STATE(976), - [sym_concatenation] = STATE(978), + [sym_file_redirect] = STATE(966), + [sym_heredoc_redirect] = STATE(966), + [sym_heredoc_body] = STATE(937), + [sym_herestring_redirect] = STATE(966), + [sym_concatenation] = STATE(968), [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), - [aux_sym_while_statement_repeat1] = STATE(976), - [aux_sym_command_repeat2] = STATE(978), + [aux_sym_while_statement_repeat1] = STATE(966), + [aux_sym_command_repeat2] = STATE(968), [sym__simple_heredoc_body] = ACTIONS(877), [sym__heredoc_body_beginning] = ACTIONS(879), [sym_file_descriptor] = ACTIONS(929), @@ -25054,70 +21620,72 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(943), }, [527] = { - [sym__simple_heredoc_body] = ACTIONS(2018), - [sym__heredoc_body_beginning] = ACTIONS(2018), - [sym_file_descriptor] = ACTIONS(2018), - [sym__concat] = ACTIONS(2018), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_RPAREN] = ACTIONS(2020), - [anon_sym_SEMI_SEMI] = ACTIONS(2020), - [anon_sym_PIPE_AMP] = ACTIONS(2020), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [anon_sym_EQ_TILDE] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT] = ACTIONS(2020), - [anon_sym_GT] = ACTIONS(2020), - [anon_sym_GT_GT] = ACTIONS(2020), - [anon_sym_AMP_GT] = ACTIONS(2020), - [anon_sym_AMP_GT_GT] = ACTIONS(2020), - [anon_sym_LT_AMP] = ACTIONS(2020), - [anon_sym_GT_AMP] = ACTIONS(2020), - [anon_sym_LT_LT] = ACTIONS(2020), - [anon_sym_LT_LT_DASH] = ACTIONS(2020), - [anon_sym_LT_LT_LT] = ACTIONS(2020), - [sym__special_characters] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym_DOLLAR] = ACTIONS(2020), - [sym_raw_string] = ACTIONS(2020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2020), - [anon_sym_BQUOTE] = ACTIONS(2020), - [anon_sym_LT_LPAREN] = ACTIONS(2020), - [anon_sym_GT_LPAREN] = ACTIONS(2020), + [sym__simple_heredoc_body] = ACTIONS(2006), + [sym__heredoc_body_beginning] = ACTIONS(2006), + [sym_file_descriptor] = ACTIONS(2006), + [sym__concat] = ACTIONS(2006), + [anon_sym_esac] = ACTIONS(2008), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2008), + [anon_sym_SEMI_SEMI] = ACTIONS(2008), + [anon_sym_PIPE_AMP] = ACTIONS(2008), + [anon_sym_AMP_AMP] = ACTIONS(2008), + [anon_sym_PIPE_PIPE] = ACTIONS(2008), + [anon_sym_EQ_TILDE] = ACTIONS(2008), + [anon_sym_EQ_EQ] = ACTIONS(2008), + [anon_sym_LT] = ACTIONS(2008), + [anon_sym_GT] = ACTIONS(2008), + [anon_sym_GT_GT] = ACTIONS(2008), + [anon_sym_AMP_GT] = ACTIONS(2008), + [anon_sym_AMP_GT_GT] = ACTIONS(2008), + [anon_sym_LT_AMP] = ACTIONS(2008), + [anon_sym_GT_AMP] = ACTIONS(2008), + [anon_sym_LT_LT] = ACTIONS(2008), + [anon_sym_LT_LT_DASH] = ACTIONS(2008), + [anon_sym_LT_LT_LT] = ACTIONS(2008), + [sym__special_characters] = ACTIONS(2008), + [anon_sym_DQUOTE] = ACTIONS(2008), + [anon_sym_DOLLAR] = ACTIONS(2008), + [sym_raw_string] = ACTIONS(2008), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2008), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2008), + [anon_sym_BQUOTE] = ACTIONS(2008), + [anon_sym_LT_LPAREN] = ACTIONS(2008), + [anon_sym_GT_LPAREN] = ACTIONS(2008), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2020), - [anon_sym_SEMI] = ACTIONS(2020), - [anon_sym_LF] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2020), + [sym_word] = ACTIONS(2008), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_LF] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2008), }, [528] = { - [sym_compound_statement] = STATE(979), + [sym_compound_statement] = STATE(969), [anon_sym_LBRACE] = ACTIONS(455), [sym_comment] = ACTIONS(53), }, [529] = { - [anon_sym_esac] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2022), - [anon_sym_RPAREN] = ACTIONS(2022), - [anon_sym_SEMI_SEMI] = ACTIONS(2022), - [anon_sym_PIPE_AMP] = ACTIONS(2022), - [anon_sym_AMP_AMP] = ACTIONS(2022), - [anon_sym_PIPE_PIPE] = ACTIONS(2022), + [anon_sym_esac] = ACTIONS(2010), + [anon_sym_PIPE] = ACTIONS(2010), + [anon_sym_RPAREN] = ACTIONS(2010), + [anon_sym_SEMI_SEMI] = ACTIONS(2010), + [anon_sym_PIPE_AMP] = ACTIONS(2010), + [anon_sym_AMP_AMP] = ACTIONS(2010), + [anon_sym_PIPE_PIPE] = ACTIONS(2010), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2022), - [anon_sym_LF] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2022), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym_LF] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2010), }, [530] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(2022), - [anon_sym_RPAREN] = ACTIONS(2022), - [anon_sym_SEMI_SEMI] = ACTIONS(2022), - [anon_sym_PIPE_AMP] = ACTIONS(2022), - [anon_sym_AMP_AMP] = ACTIONS(2022), - [anon_sym_PIPE_PIPE] = ACTIONS(2022), + [anon_sym_esac] = ACTIONS(2010), + [anon_sym_PIPE] = ACTIONS(2010), + [anon_sym_RPAREN] = ACTIONS(2010), + [anon_sym_SEMI_SEMI] = ACTIONS(2010), + [anon_sym_PIPE_AMP] = ACTIONS(2010), + [anon_sym_AMP_AMP] = ACTIONS(2010), + [anon_sym_PIPE_PIPE] = ACTIONS(2010), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(371), @@ -25136,29 +21704,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(371), [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(2022), - [anon_sym_LF] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2022), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym_LF] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2010), }, [531] = { [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(2026), + [anon_sym_SEMI_SEMI] = ACTIONS(2014), [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2014), + [anon_sym_PIPE_PIPE] = ACTIONS(2014), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2026), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_LF] = ACTIONS(2016), + [anon_sym_AMP] = ACTIONS(2014), }, [532] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(2026), + [anon_sym_SEMI_SEMI] = ACTIONS(2014), [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2014), + [anon_sym_PIPE_PIPE] = ACTIONS(2014), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(371), @@ -25177,194 +21745,195 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(371), [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(2026), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_LF] = ACTIONS(2016), + [anon_sym_AMP] = ACTIONS(2014), }, [533] = { - [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_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), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2030), - [anon_sym_LF] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_LF] = ACTIONS(2020), + [anon_sym_AMP] = ACTIONS(2018), }, [534] = { - [anon_sym_DOLLAR] = ACTIONS(2034), - [anon_sym_POUND] = ACTIONS(2034), - [anon_sym_DASH] = ACTIONS(2034), + [anon_sym_DOLLAR] = ACTIONS(2022), + [anon_sym_POUND] = ACTIONS(2022), + [anon_sym_DASH] = ACTIONS(2022), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2036), - [anon_sym_STAR] = ACTIONS(2034), - [anon_sym_AT] = ACTIONS(2034), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_0] = ACTIONS(2038), - [anon_sym__] = ACTIONS(2038), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2022), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_QMARK] = ACTIONS(2022), + [anon_sym_0] = ACTIONS(2026), + [anon_sym__] = ACTIONS(2026), }, [535] = { - [sym_subscript] = STATE(986), - [sym_variable_name] = ACTIONS(2040), - [anon_sym_DOLLAR] = ACTIONS(2042), - [anon_sym_POUND] = ACTIONS(2044), - [anon_sym_DASH] = ACTIONS(2042), + [sym_subscript] = STATE(976), + [sym_variable_name] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2030), + [anon_sym_POUND] = ACTIONS(2032), + [anon_sym_DASH] = ACTIONS(2030), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2042), - [anon_sym_AT] = ACTIONS(2042), - [anon_sym_QMARK] = ACTIONS(2042), - [anon_sym_0] = ACTIONS(2048), - [anon_sym__] = ACTIONS(2048), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2034), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_AT] = ACTIONS(2030), + [anon_sym_QMARK] = ACTIONS(2030), + [anon_sym_0] = ACTIONS(2036), + [anon_sym__] = ACTIONS(2036), }, [536] = { - [sym_simple_expansion] = STATE(988), - [sym_expansion] = STATE(988), - [aux_sym_heredoc_body_repeat1] = STATE(988), - [sym__heredoc_body_middle] = ACTIONS(2050), - [sym__heredoc_body_end] = ACTIONS(2052), + [sym_simple_expansion] = STATE(978), + [sym_expansion] = STATE(978), + [aux_sym_heredoc_body_repeat1] = STATE(978), + [sym__heredoc_body_middle] = ACTIONS(2038), + [sym__heredoc_body_end] = ACTIONS(2040), [anon_sym_DOLLAR] = ACTIONS(963), [anon_sym_DOLLAR_LBRACE] = ACTIONS(965), [sym_comment] = ACTIONS(53), }, [537] = { - [sym_concatenation] = STATE(991), - [sym_string] = STATE(990), - [sym_simple_expansion] = STATE(990), - [sym_string_expansion] = STATE(990), - [sym_expansion] = STATE(990), - [sym_command_substitution] = STATE(990), - [sym_process_substitution] = STATE(990), - [sym__special_characters] = ACTIONS(2054), + [sym_concatenation] = STATE(981), + [sym_string] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_string_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [sym__special_characters] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2056), + [sym_raw_string] = ACTIONS(2044), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2056), + [sym_word] = ACTIONS(2044), }, [538] = { [aux_sym_concatenation_repeat1] = STATE(126), - [sym__simple_heredoc_body] = ACTIONS(2058), - [sym__heredoc_body_beginning] = ACTIONS(2058), - [sym_file_descriptor] = ACTIONS(2058), + [sym__simple_heredoc_body] = ACTIONS(2046), + [sym__heredoc_body_beginning] = ACTIONS(2046), + [sym_file_descriptor] = ACTIONS(2046), [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_SEMI_SEMI] = ACTIONS(2060), - [anon_sym_PIPE_AMP] = ACTIONS(2060), - [anon_sym_AMP_AMP] = ACTIONS(2060), - [anon_sym_PIPE_PIPE] = ACTIONS(2060), - [anon_sym_EQ_TILDE] = ACTIONS(2060), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_GT] = ACTIONS(2060), - [anon_sym_AMP_GT] = ACTIONS(2060), - [anon_sym_AMP_GT_GT] = ACTIONS(2060), - [anon_sym_LT_AMP] = ACTIONS(2060), - [anon_sym_GT_AMP] = ACTIONS(2060), - [anon_sym_LT_LT] = ACTIONS(2060), - [anon_sym_LT_LT_DASH] = ACTIONS(2060), - [anon_sym_LT_LT_LT] = ACTIONS(2060), - [sym__special_characters] = ACTIONS(2060), - [anon_sym_DQUOTE] = ACTIONS(2060), - [anon_sym_DOLLAR] = ACTIONS(2060), - [sym_raw_string] = ACTIONS(2060), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2060), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2060), - [anon_sym_BQUOTE] = ACTIONS(2060), - [anon_sym_LT_LPAREN] = ACTIONS(2060), - [anon_sym_GT_LPAREN] = ACTIONS(2060), + [anon_sym_PIPE] = ACTIONS(2048), + [anon_sym_SEMI_SEMI] = ACTIONS(2048), + [anon_sym_PIPE_AMP] = ACTIONS(2048), + [anon_sym_AMP_AMP] = ACTIONS(2048), + [anon_sym_PIPE_PIPE] = ACTIONS(2048), + [anon_sym_EQ_TILDE] = ACTIONS(2048), + [anon_sym_EQ_EQ] = ACTIONS(2048), + [anon_sym_LT] = ACTIONS(2048), + [anon_sym_GT] = ACTIONS(2048), + [anon_sym_GT_GT] = ACTIONS(2048), + [anon_sym_AMP_GT] = ACTIONS(2048), + [anon_sym_AMP_GT_GT] = ACTIONS(2048), + [anon_sym_LT_AMP] = ACTIONS(2048), + [anon_sym_GT_AMP] = ACTIONS(2048), + [anon_sym_LT_LT] = ACTIONS(2048), + [anon_sym_LT_LT_DASH] = ACTIONS(2048), + [anon_sym_LT_LT_LT] = ACTIONS(2048), + [sym__special_characters] = ACTIONS(2048), + [anon_sym_DQUOTE] = ACTIONS(2048), + [anon_sym_DOLLAR] = ACTIONS(2048), + [sym_raw_string] = ACTIONS(2048), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2048), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2048), + [anon_sym_BQUOTE] = ACTIONS(2048), + [anon_sym_LT_LPAREN] = ACTIONS(2048), + [anon_sym_GT_LPAREN] = ACTIONS(2048), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_LF] = ACTIONS(2058), - [anon_sym_AMP] = ACTIONS(2060), + [sym_word] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_LF] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2048), }, [539] = { [aux_sym_concatenation_repeat1] = STATE(126), - [sym__simple_heredoc_body] = ACTIONS(2062), - [sym__heredoc_body_beginning] = ACTIONS(2062), - [sym_file_descriptor] = ACTIONS(2062), + [sym__simple_heredoc_body] = ACTIONS(2050), + [sym__heredoc_body_beginning] = ACTIONS(2050), + [sym_file_descriptor] = ACTIONS(2050), [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(2064), - [anon_sym_SEMI_SEMI] = ACTIONS(2064), - [anon_sym_PIPE_AMP] = ACTIONS(2064), - [anon_sym_AMP_AMP] = ACTIONS(2064), - [anon_sym_PIPE_PIPE] = ACTIONS(2064), - [anon_sym_EQ_TILDE] = ACTIONS(2064), - [anon_sym_EQ_EQ] = ACTIONS(2064), - [anon_sym_LT] = ACTIONS(2064), - [anon_sym_GT] = ACTIONS(2064), - [anon_sym_GT_GT] = ACTIONS(2064), - [anon_sym_AMP_GT] = ACTIONS(2064), - [anon_sym_AMP_GT_GT] = ACTIONS(2064), - [anon_sym_LT_AMP] = ACTIONS(2064), - [anon_sym_GT_AMP] = ACTIONS(2064), - [anon_sym_LT_LT] = ACTIONS(2064), - [anon_sym_LT_LT_DASH] = ACTIONS(2064), - [anon_sym_LT_LT_LT] = ACTIONS(2064), - [sym__special_characters] = ACTIONS(2064), - [anon_sym_DQUOTE] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2064), - [sym_raw_string] = ACTIONS(2064), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2064), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2064), - [anon_sym_BQUOTE] = ACTIONS(2064), - [anon_sym_LT_LPAREN] = ACTIONS(2064), - [anon_sym_GT_LPAREN] = ACTIONS(2064), + [anon_sym_PIPE] = ACTIONS(2052), + [anon_sym_SEMI_SEMI] = ACTIONS(2052), + [anon_sym_PIPE_AMP] = ACTIONS(2052), + [anon_sym_AMP_AMP] = ACTIONS(2052), + [anon_sym_PIPE_PIPE] = ACTIONS(2052), + [anon_sym_EQ_TILDE] = ACTIONS(2052), + [anon_sym_EQ_EQ] = ACTIONS(2052), + [anon_sym_LT] = ACTIONS(2052), + [anon_sym_GT] = ACTIONS(2052), + [anon_sym_GT_GT] = ACTIONS(2052), + [anon_sym_AMP_GT] = ACTIONS(2052), + [anon_sym_AMP_GT_GT] = ACTIONS(2052), + [anon_sym_LT_AMP] = ACTIONS(2052), + [anon_sym_GT_AMP] = ACTIONS(2052), + [anon_sym_LT_LT] = ACTIONS(2052), + [anon_sym_LT_LT_DASH] = ACTIONS(2052), + [anon_sym_LT_LT_LT] = ACTIONS(2052), + [sym__special_characters] = ACTIONS(2052), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_DOLLAR] = ACTIONS(2052), + [sym_raw_string] = ACTIONS(2052), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2052), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2052), + [anon_sym_BQUOTE] = ACTIONS(2052), + [anon_sym_LT_LPAREN] = ACTIONS(2052), + [anon_sym_GT_LPAREN] = ACTIONS(2052), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2064), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_LF] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2064), + [sym_word] = ACTIONS(2052), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_LF] = ACTIONS(2050), + [anon_sym_AMP] = ACTIONS(2052), }, [540] = { - [sym__simple_heredoc_body] = ACTIONS(2062), - [sym__heredoc_body_beginning] = ACTIONS(2062), - [sym_file_descriptor] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2064), - [anon_sym_RPAREN] = ACTIONS(2064), - [anon_sym_SEMI_SEMI] = ACTIONS(2064), - [anon_sym_PIPE_AMP] = ACTIONS(2064), - [anon_sym_AMP_AMP] = ACTIONS(2064), - [anon_sym_PIPE_PIPE] = ACTIONS(2064), - [anon_sym_EQ_TILDE] = ACTIONS(2064), - [anon_sym_EQ_EQ] = ACTIONS(2064), - [anon_sym_LT] = ACTIONS(2064), - [anon_sym_GT] = ACTIONS(2064), - [anon_sym_GT_GT] = ACTIONS(2064), - [anon_sym_AMP_GT] = ACTIONS(2064), - [anon_sym_AMP_GT_GT] = ACTIONS(2064), - [anon_sym_LT_AMP] = ACTIONS(2064), - [anon_sym_GT_AMP] = ACTIONS(2064), - [anon_sym_LT_LT] = ACTIONS(2064), - [anon_sym_LT_LT_DASH] = ACTIONS(2064), - [anon_sym_LT_LT_LT] = ACTIONS(2064), - [sym__special_characters] = ACTIONS(2064), - [anon_sym_DQUOTE] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2064), - [sym_raw_string] = ACTIONS(2064), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2064), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2064), - [anon_sym_BQUOTE] = ACTIONS(2064), - [anon_sym_LT_LPAREN] = ACTIONS(2064), - [anon_sym_GT_LPAREN] = ACTIONS(2064), + [sym__simple_heredoc_body] = ACTIONS(2050), + [sym__heredoc_body_beginning] = ACTIONS(2050), + [sym_file_descriptor] = ACTIONS(2050), + [anon_sym_esac] = ACTIONS(2052), + [anon_sym_PIPE] = ACTIONS(2052), + [anon_sym_RPAREN] = ACTIONS(2052), + [anon_sym_SEMI_SEMI] = ACTIONS(2052), + [anon_sym_PIPE_AMP] = ACTIONS(2052), + [anon_sym_AMP_AMP] = ACTIONS(2052), + [anon_sym_PIPE_PIPE] = ACTIONS(2052), + [anon_sym_EQ_TILDE] = ACTIONS(2052), + [anon_sym_EQ_EQ] = ACTIONS(2052), + [anon_sym_LT] = ACTIONS(2052), + [anon_sym_GT] = ACTIONS(2052), + [anon_sym_GT_GT] = ACTIONS(2052), + [anon_sym_AMP_GT] = ACTIONS(2052), + [anon_sym_AMP_GT_GT] = ACTIONS(2052), + [anon_sym_LT_AMP] = ACTIONS(2052), + [anon_sym_GT_AMP] = ACTIONS(2052), + [anon_sym_LT_LT] = ACTIONS(2052), + [anon_sym_LT_LT_DASH] = ACTIONS(2052), + [anon_sym_LT_LT_LT] = ACTIONS(2052), + [sym__special_characters] = ACTIONS(2052), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_DOLLAR] = ACTIONS(2052), + [sym_raw_string] = ACTIONS(2052), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2052), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2052), + [anon_sym_BQUOTE] = ACTIONS(2052), + [anon_sym_LT_LPAREN] = ACTIONS(2052), + [anon_sym_GT_LPAREN] = ACTIONS(2052), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2064), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_LF] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2064), + [sym_word] = ACTIONS(2052), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_LF] = ACTIONS(2050), + [anon_sym_AMP] = ACTIONS(2052), }, [541] = { - [aux_sym_concatenation_repeat1] = STATE(992), + [aux_sym_concatenation_repeat1] = STATE(982), [sym__simple_heredoc_body] = ACTIONS(661), [sym__heredoc_body_beginning] = ACTIONS(661), [sym_file_descriptor] = ACTIONS(661), @@ -25390,7 +21959,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(665), }, [542] = { - [aux_sym_concatenation_repeat1] = STATE(992), + [aux_sym_concatenation_repeat1] = STATE(982), [sym__simple_heredoc_body] = ACTIONS(677), [sym__heredoc_body_beginning] = ACTIONS(677), [sym_file_descriptor] = ACTIONS(677), @@ -25442,164 +22011,164 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(679), }, [544] = { - [sym__simple_heredoc_body] = ACTIONS(2066), - [sym__heredoc_body_beginning] = ACTIONS(2066), - [sym_file_descriptor] = ACTIONS(2066), - [anon_sym_esac] = ACTIONS(2068), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_RPAREN] = ACTIONS(2068), - [anon_sym_SEMI_SEMI] = ACTIONS(2068), - [anon_sym_PIPE_AMP] = ACTIONS(2068), - [anon_sym_AMP_AMP] = ACTIONS(2068), - [anon_sym_PIPE_PIPE] = ACTIONS(2068), - [anon_sym_LT] = ACTIONS(2068), - [anon_sym_GT] = ACTIONS(2068), - [anon_sym_GT_GT] = ACTIONS(2068), - [anon_sym_AMP_GT] = ACTIONS(2068), - [anon_sym_AMP_GT_GT] = ACTIONS(2068), - [anon_sym_LT_AMP] = ACTIONS(2068), - [anon_sym_GT_AMP] = ACTIONS(2068), - [anon_sym_LT_LT] = ACTIONS(2068), - [anon_sym_LT_LT_DASH] = ACTIONS(2068), - [anon_sym_LT_LT_LT] = ACTIONS(2068), + [sym__simple_heredoc_body] = ACTIONS(2054), + [sym__heredoc_body_beginning] = ACTIONS(2054), + [sym_file_descriptor] = ACTIONS(2054), + [anon_sym_esac] = ACTIONS(2056), + [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(2056), + [anon_sym_GT] = ACTIONS(2056), + [anon_sym_GT_GT] = ACTIONS(2056), + [anon_sym_AMP_GT] = ACTIONS(2056), + [anon_sym_AMP_GT_GT] = ACTIONS(2056), + [anon_sym_LT_AMP] = ACTIONS(2056), + [anon_sym_GT_AMP] = ACTIONS(2056), + [anon_sym_LT_LT] = ACTIONS(2056), + [anon_sym_LT_LT_DASH] = ACTIONS(2056), + [anon_sym_LT_LT_LT] = ACTIONS(2056), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_LF] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2056), + [anon_sym_LF] = ACTIONS(2054), + [anon_sym_AMP] = ACTIONS(2056), }, [545] = { - [aux_sym_concatenation_repeat1] = STATE(992), - [sym__simple_heredoc_body] = ACTIONS(2070), - [sym__heredoc_body_beginning] = ACTIONS(2070), - [sym_file_descriptor] = ACTIONS(2070), + [aux_sym_concatenation_repeat1] = STATE(982), + [sym__simple_heredoc_body] = ACTIONS(2058), + [sym__heredoc_body_beginning] = ACTIONS(2058), + [sym_file_descriptor] = ACTIONS(2058), [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_SEMI_SEMI] = ACTIONS(2072), - [anon_sym_PIPE_AMP] = ACTIONS(2072), - [anon_sym_AMP_AMP] = ACTIONS(2072), - [anon_sym_PIPE_PIPE] = ACTIONS(2072), - [anon_sym_LT] = ACTIONS(2072), - [anon_sym_GT] = ACTIONS(2072), - [anon_sym_GT_GT] = ACTIONS(2072), - [anon_sym_AMP_GT] = ACTIONS(2072), - [anon_sym_AMP_GT_GT] = ACTIONS(2072), - [anon_sym_LT_AMP] = ACTIONS(2072), - [anon_sym_GT_AMP] = ACTIONS(2072), - [anon_sym_LT_LT] = ACTIONS(2072), - [anon_sym_LT_LT_DASH] = ACTIONS(2072), - [anon_sym_LT_LT_LT] = ACTIONS(2072), + [anon_sym_PIPE] = ACTIONS(2060), + [anon_sym_SEMI_SEMI] = ACTIONS(2060), + [anon_sym_PIPE_AMP] = ACTIONS(2060), + [anon_sym_AMP_AMP] = ACTIONS(2060), + [anon_sym_PIPE_PIPE] = ACTIONS(2060), + [anon_sym_LT] = ACTIONS(2060), + [anon_sym_GT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2060), + [anon_sym_AMP_GT] = ACTIONS(2060), + [anon_sym_AMP_GT_GT] = ACTIONS(2060), + [anon_sym_LT_AMP] = ACTIONS(2060), + [anon_sym_GT_AMP] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_LT_LT_DASH] = ACTIONS(2060), + [anon_sym_LT_LT_LT] = ACTIONS(2060), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_LF] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_LF] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2060), }, [546] = { - [aux_sym_concatenation_repeat1] = STATE(992), - [sym__simple_heredoc_body] = ACTIONS(2074), - [sym__heredoc_body_beginning] = ACTIONS(2074), - [sym_file_descriptor] = ACTIONS(2074), + [aux_sym_concatenation_repeat1] = STATE(982), + [sym__simple_heredoc_body] = ACTIONS(2062), + [sym__heredoc_body_beginning] = ACTIONS(2062), + [sym_file_descriptor] = ACTIONS(2062), [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_SEMI_SEMI] = ACTIONS(2076), - [anon_sym_PIPE_AMP] = ACTIONS(2076), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_GT_GT] = ACTIONS(2076), - [anon_sym_AMP_GT] = ACTIONS(2076), - [anon_sym_AMP_GT_GT] = ACTIONS(2076), - [anon_sym_LT_AMP] = ACTIONS(2076), - [anon_sym_GT_AMP] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(2076), - [anon_sym_LT_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT_LT] = ACTIONS(2076), + [anon_sym_PIPE] = ACTIONS(2064), + [anon_sym_SEMI_SEMI] = ACTIONS(2064), + [anon_sym_PIPE_AMP] = ACTIONS(2064), + [anon_sym_AMP_AMP] = ACTIONS(2064), + [anon_sym_PIPE_PIPE] = ACTIONS(2064), + [anon_sym_LT] = ACTIONS(2064), + [anon_sym_GT] = ACTIONS(2064), + [anon_sym_GT_GT] = ACTIONS(2064), + [anon_sym_AMP_GT] = ACTIONS(2064), + [anon_sym_AMP_GT_GT] = ACTIONS(2064), + [anon_sym_LT_AMP] = ACTIONS(2064), + [anon_sym_GT_AMP] = ACTIONS(2064), + [anon_sym_LT_LT] = ACTIONS(2064), + [anon_sym_LT_LT_DASH] = ACTIONS(2064), + [anon_sym_LT_LT_LT] = ACTIONS(2064), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_SEMI] = ACTIONS(2064), + [anon_sym_LF] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2064), }, [547] = { - [sym__simple_heredoc_body] = ACTIONS(2074), - [sym__heredoc_body_beginning] = ACTIONS(2074), - [sym_file_descriptor] = ACTIONS(2074), - [anon_sym_esac] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2076), - [anon_sym_SEMI_SEMI] = ACTIONS(2076), - [anon_sym_PIPE_AMP] = ACTIONS(2076), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_GT_GT] = ACTIONS(2076), - [anon_sym_AMP_GT] = ACTIONS(2076), - [anon_sym_AMP_GT_GT] = ACTIONS(2076), - [anon_sym_LT_AMP] = ACTIONS(2076), - [anon_sym_GT_AMP] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(2076), - [anon_sym_LT_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT_LT] = ACTIONS(2076), + [sym__simple_heredoc_body] = ACTIONS(2062), + [sym__heredoc_body_beginning] = ACTIONS(2062), + [sym_file_descriptor] = ACTIONS(2062), + [anon_sym_esac] = ACTIONS(2064), + [anon_sym_PIPE] = ACTIONS(2064), + [anon_sym_RPAREN] = ACTIONS(2064), + [anon_sym_SEMI_SEMI] = ACTIONS(2064), + [anon_sym_PIPE_AMP] = ACTIONS(2064), + [anon_sym_AMP_AMP] = ACTIONS(2064), + [anon_sym_PIPE_PIPE] = ACTIONS(2064), + [anon_sym_LT] = ACTIONS(2064), + [anon_sym_GT] = ACTIONS(2064), + [anon_sym_GT_GT] = ACTIONS(2064), + [anon_sym_AMP_GT] = ACTIONS(2064), + [anon_sym_AMP_GT_GT] = ACTIONS(2064), + [anon_sym_LT_AMP] = ACTIONS(2064), + [anon_sym_GT_AMP] = ACTIONS(2064), + [anon_sym_LT_LT] = ACTIONS(2064), + [anon_sym_LT_LT_DASH] = ACTIONS(2064), + [anon_sym_LT_LT_LT] = ACTIONS(2064), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_SEMI] = ACTIONS(2064), + [anon_sym_LF] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2064), }, [548] = { - [anon_sym_esac] = ACTIONS(2078), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_RPAREN] = ACTIONS(2078), - [anon_sym_SEMI_SEMI] = ACTIONS(2078), - [anon_sym_PIPE_AMP] = ACTIONS(2078), - [anon_sym_AMP_AMP] = ACTIONS(2078), - [anon_sym_PIPE_PIPE] = ACTIONS(2078), + [anon_sym_esac] = ACTIONS(2066), + [anon_sym_PIPE] = ACTIONS(2066), + [anon_sym_RPAREN] = ACTIONS(2066), + [anon_sym_SEMI_SEMI] = ACTIONS(2066), + [anon_sym_PIPE_AMP] = ACTIONS(2066), + [anon_sym_AMP_AMP] = ACTIONS(2066), + [anon_sym_PIPE_PIPE] = ACTIONS(2066), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_LF] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2078), + [anon_sym_SEMI] = ACTIONS(2066), + [anon_sym_LF] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2066), }, [549] = { [sym_file_redirect] = STATE(549), [sym_heredoc_redirect] = STATE(549), [sym_herestring_redirect] = STATE(549), [aux_sym_while_statement_repeat1] = STATE(549), - [sym__simple_heredoc_body] = ACTIONS(2082), - [sym__heredoc_body_beginning] = ACTIONS(2082), - [sym_file_descriptor] = ACTIONS(2084), - [anon_sym_PIPE] = ACTIONS(2087), - [anon_sym_SEMI_SEMI] = ACTIONS(2087), - [anon_sym_PIPE_AMP] = ACTIONS(2087), - [anon_sym_AMP_AMP] = ACTIONS(2087), - [anon_sym_PIPE_PIPE] = ACTIONS(2087), - [anon_sym_LT] = ACTIONS(2089), - [anon_sym_GT] = ACTIONS(2089), - [anon_sym_GT_GT] = ACTIONS(2089), - [anon_sym_AMP_GT] = ACTIONS(2089), - [anon_sym_AMP_GT_GT] = ACTIONS(2089), - [anon_sym_LT_AMP] = ACTIONS(2089), - [anon_sym_GT_AMP] = ACTIONS(2089), - [anon_sym_LT_LT] = ACTIONS(2092), - [anon_sym_LT_LT_DASH] = ACTIONS(2092), - [anon_sym_LT_LT_LT] = ACTIONS(2095), + [sym__simple_heredoc_body] = ACTIONS(2070), + [sym__heredoc_body_beginning] = ACTIONS(2070), + [sym_file_descriptor] = ACTIONS(2072), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_SEMI_SEMI] = ACTIONS(2075), + [anon_sym_PIPE_AMP] = ACTIONS(2075), + [anon_sym_AMP_AMP] = ACTIONS(2075), + [anon_sym_PIPE_PIPE] = ACTIONS(2075), + [anon_sym_LT] = ACTIONS(2077), + [anon_sym_GT] = ACTIONS(2077), + [anon_sym_GT_GT] = ACTIONS(2077), + [anon_sym_AMP_GT] = ACTIONS(2077), + [anon_sym_AMP_GT_GT] = ACTIONS(2077), + [anon_sym_LT_AMP] = ACTIONS(2077), + [anon_sym_GT_AMP] = ACTIONS(2077), + [anon_sym_LT_LT] = ACTIONS(2080), + [anon_sym_LT_LT_DASH] = ACTIONS(2080), + [anon_sym_LT_LT_LT] = ACTIONS(2083), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym_LF] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2087), + [anon_sym_SEMI] = ACTIONS(2075), + [anon_sym_LF] = ACTIONS(2070), + [anon_sym_AMP] = ACTIONS(2075), }, [550] = { [sym_file_redirect] = STATE(549), [sym_heredoc_redirect] = STATE(549), - [sym_heredoc_body] = STATE(993), + [sym_heredoc_body] = STATE(983), [sym_herestring_redirect] = STATE(549), [aux_sym_while_statement_repeat1] = STATE(549), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), [sym_file_descriptor] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_SEMI_SEMI] = ACTIONS(2078), - [anon_sym_PIPE_AMP] = ACTIONS(2078), - [anon_sym_AMP_AMP] = ACTIONS(2078), - [anon_sym_PIPE_PIPE] = ACTIONS(2078), + [anon_sym_PIPE] = ACTIONS(2066), + [anon_sym_SEMI_SEMI] = ACTIONS(2066), + [anon_sym_PIPE_AMP] = ACTIONS(2066), + [anon_sym_AMP_AMP] = ACTIONS(2066), + [anon_sym_PIPE_PIPE] = ACTIONS(2066), [anon_sym_LT] = ACTIONS(347), [anon_sym_GT] = ACTIONS(347), [anon_sym_GT_GT] = ACTIONS(347), @@ -25611,9 +22180,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(349), [anon_sym_LT_LT_LT] = ACTIONS(351), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_LF] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2078), + [anon_sym_SEMI] = ACTIONS(2066), + [anon_sym_LF] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2066), }, [551] = { [sym_concatenation] = STATE(551), @@ -25624,46 +22193,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(199), [sym_process_substitution] = STATE(199), [aux_sym_command_repeat2] = STATE(551), - [sym__simple_heredoc_body] = ACTIONS(2062), - [sym__heredoc_body_beginning] = ACTIONS(2062), - [sym_file_descriptor] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2064), - [anon_sym_SEMI_SEMI] = ACTIONS(2064), - [anon_sym_PIPE_AMP] = ACTIONS(2064), - [anon_sym_AMP_AMP] = ACTIONS(2064), - [anon_sym_PIPE_PIPE] = ACTIONS(2064), - [anon_sym_EQ_TILDE] = ACTIONS(2098), - [anon_sym_EQ_EQ] = ACTIONS(2098), - [anon_sym_LT] = ACTIONS(2064), - [anon_sym_GT] = ACTIONS(2064), - [anon_sym_GT_GT] = ACTIONS(2064), - [anon_sym_AMP_GT] = ACTIONS(2064), - [anon_sym_AMP_GT_GT] = ACTIONS(2064), - [anon_sym_LT_AMP] = ACTIONS(2064), - [anon_sym_GT_AMP] = ACTIONS(2064), - [anon_sym_LT_LT] = ACTIONS(2064), - [anon_sym_LT_LT_DASH] = ACTIONS(2064), - [anon_sym_LT_LT_LT] = ACTIONS(2064), - [sym__special_characters] = ACTIONS(2101), - [anon_sym_DQUOTE] = ACTIONS(2104), - [anon_sym_DOLLAR] = ACTIONS(2107), - [sym_raw_string] = ACTIONS(2110), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2116), - [anon_sym_BQUOTE] = ACTIONS(2119), - [anon_sym_LT_LPAREN] = ACTIONS(2122), - [anon_sym_GT_LPAREN] = ACTIONS(2122), + [sym__simple_heredoc_body] = ACTIONS(2050), + [sym__heredoc_body_beginning] = ACTIONS(2050), + [sym_file_descriptor] = ACTIONS(2050), + [anon_sym_PIPE] = ACTIONS(2052), + [anon_sym_SEMI_SEMI] = ACTIONS(2052), + [anon_sym_PIPE_AMP] = ACTIONS(2052), + [anon_sym_AMP_AMP] = ACTIONS(2052), + [anon_sym_PIPE_PIPE] = ACTIONS(2052), + [anon_sym_EQ_TILDE] = ACTIONS(2086), + [anon_sym_EQ_EQ] = ACTIONS(2086), + [anon_sym_LT] = ACTIONS(2052), + [anon_sym_GT] = ACTIONS(2052), + [anon_sym_GT_GT] = ACTIONS(2052), + [anon_sym_AMP_GT] = ACTIONS(2052), + [anon_sym_AMP_GT_GT] = ACTIONS(2052), + [anon_sym_LT_AMP] = ACTIONS(2052), + [anon_sym_GT_AMP] = ACTIONS(2052), + [anon_sym_LT_LT] = ACTIONS(2052), + [anon_sym_LT_LT_DASH] = ACTIONS(2052), + [anon_sym_LT_LT_LT] = ACTIONS(2052), + [sym__special_characters] = ACTIONS(2089), + [anon_sym_DQUOTE] = ACTIONS(2092), + [anon_sym_DOLLAR] = ACTIONS(2095), + [sym_raw_string] = ACTIONS(2098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2101), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2104), + [anon_sym_BQUOTE] = ACTIONS(2107), + [anon_sym_LT_LPAREN] = ACTIONS(2110), + [anon_sym_GT_LPAREN] = ACTIONS(2110), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2110), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_LF] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2064), + [sym_word] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_LF] = ACTIONS(2050), + [anon_sym_AMP] = ACTIONS(2052), }, [552] = { - [sym_file_redirect] = STATE(994), - [sym_heredoc_redirect] = STATE(994), - [sym_heredoc_body] = STATE(993), - [sym_herestring_redirect] = STATE(994), + [sym_file_redirect] = STATE(984), + [sym_heredoc_redirect] = STATE(984), + [sym_heredoc_body] = STATE(983), + [sym_herestring_redirect] = STATE(984), [sym_concatenation] = STATE(551), [sym_string] = STATE(199), [sym_simple_expansion] = STATE(199), @@ -25671,16 +22240,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(199), [sym_command_substitution] = STATE(199), [sym_process_substitution] = STATE(199), - [aux_sym_while_statement_repeat1] = STATE(994), + [aux_sym_while_statement_repeat1] = STATE(984), [aux_sym_command_repeat2] = STATE(551), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), [sym_file_descriptor] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_SEMI_SEMI] = ACTIONS(2078), - [anon_sym_PIPE_AMP] = ACTIONS(2078), - [anon_sym_AMP_AMP] = ACTIONS(2078), - [anon_sym_PIPE_PIPE] = ACTIONS(2078), + [anon_sym_PIPE] = ACTIONS(2066), + [anon_sym_SEMI_SEMI] = ACTIONS(2066), + [anon_sym_PIPE_AMP] = ACTIONS(2066), + [anon_sym_AMP_AMP] = ACTIONS(2066), + [anon_sym_PIPE_PIPE] = ACTIONS(2066), [anon_sym_EQ_TILDE] = ACTIONS(345), [anon_sym_EQ_EQ] = ACTIONS(345), [anon_sym_LT] = ACTIONS(347), @@ -25704,125 +22273,126 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(365), [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(357), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_LF] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2078), + [anon_sym_SEMI] = ACTIONS(2066), + [anon_sym_LF] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2066), }, [553] = { - [sym_string] = STATE(681), - [sym_simple_expansion] = STATE(681), - [sym_string_expansion] = STATE(681), - [sym_expansion] = STATE(681), - [sym_command_substitution] = STATE(681), - [sym_process_substitution] = STATE(681), - [anon_sym_RBRACK] = ACTIONS(2125), - [sym__special_characters] = ACTIONS(2127), + [sym_string] = STATE(671), + [sym_simple_expansion] = STATE(671), + [sym_string_expansion] = STATE(671), + [sym_expansion] = STATE(671), + [sym_command_substitution] = STATE(671), + [sym_process_substitution] = STATE(671), + [anon_sym_RBRACK] = ACTIONS(2113), + [sym__special_characters] = ACTIONS(2115), [anon_sym_DQUOTE] = ACTIONS(115), [anon_sym_DOLLAR] = ACTIONS(117), - [sym_raw_string] = ACTIONS(1309), + [sym_raw_string] = ACTIONS(1297), [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), [anon_sym_BQUOTE] = ACTIONS(125), [anon_sym_LT_LPAREN] = ACTIONS(127), [anon_sym_GT_LPAREN] = ACTIONS(127), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1309), + [sym_word] = ACTIONS(1297), }, [554] = { - [sym__concat] = ACTIONS(2129), - [anon_sym_EQ] = ACTIONS(2131), - [anon_sym_PLUS_EQ] = ACTIONS(2131), + [sym__concat] = ACTIONS(2117), + [anon_sym_EQ] = ACTIONS(2119), + [anon_sym_PLUS_EQ] = ACTIONS(2119), [sym_comment] = ACTIONS(53), }, [555] = { - [aux_sym_concatenation_repeat1] = STATE(997), + [aux_sym_concatenation_repeat1] = STATE(987), [sym__concat] = ACTIONS(513), [anon_sym_RBRACK] = ACTIONS(693), [sym_comment] = ACTIONS(53), }, [556] = { - [sym_string] = STATE(681), - [sym_simple_expansion] = STATE(681), - [sym_string_expansion] = STATE(681), - [sym_expansion] = STATE(681), - [sym_command_substitution] = STATE(681), - [sym_process_substitution] = STATE(681), - [anon_sym_RBRACK] = ACTIONS(2133), - [sym__special_characters] = ACTIONS(2127), + [sym_string] = STATE(671), + [sym_simple_expansion] = STATE(671), + [sym_string_expansion] = STATE(671), + [sym_expansion] = STATE(671), + [sym_command_substitution] = STATE(671), + [sym_process_substitution] = STATE(671), + [anon_sym_RBRACK] = ACTIONS(2121), + [sym__special_characters] = ACTIONS(2115), [anon_sym_DQUOTE] = ACTIONS(115), [anon_sym_DOLLAR] = ACTIONS(117), - [sym_raw_string] = ACTIONS(1309), + [sym_raw_string] = ACTIONS(1297), [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), [anon_sym_BQUOTE] = ACTIONS(125), [anon_sym_LT_LPAREN] = ACTIONS(127), [anon_sym_GT_LPAREN] = ACTIONS(127), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1309), + [sym_word] = ACTIONS(1297), }, [557] = { - [sym__concat] = ACTIONS(2135), - [anon_sym_EQ] = ACTIONS(2137), - [anon_sym_PLUS_EQ] = ACTIONS(2137), + [sym__concat] = ACTIONS(2123), + [anon_sym_EQ] = ACTIONS(2125), + [anon_sym_PLUS_EQ] = ACTIONS(2125), [sym_comment] = ACTIONS(53), }, [558] = { - [anon_sym_RBRACK] = ACTIONS(2133), + [anon_sym_RBRACK] = ACTIONS(2121), [sym_comment] = ACTIONS(53), }, [559] = { - [sym_file_descriptor] = ACTIONS(2139), - [sym_variable_name] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(2141), - [anon_sym_RPAREN] = ACTIONS(2141), - [anon_sym_SEMI_SEMI] = ACTIONS(2141), - [anon_sym_PIPE_AMP] = ACTIONS(2141), - [anon_sym_AMP_AMP] = ACTIONS(2141), - [anon_sym_PIPE_PIPE] = ACTIONS(2141), - [anon_sym_LT] = ACTIONS(2141), - [anon_sym_GT] = ACTIONS(2141), - [anon_sym_GT_GT] = ACTIONS(2141), - [anon_sym_AMP_GT] = ACTIONS(2141), - [anon_sym_AMP_GT_GT] = ACTIONS(2141), - [anon_sym_LT_AMP] = ACTIONS(2141), - [anon_sym_GT_AMP] = ACTIONS(2141), - [sym__special_characters] = ACTIONS(2141), - [anon_sym_DQUOTE] = ACTIONS(2141), - [anon_sym_DOLLAR] = ACTIONS(2141), - [sym_raw_string] = ACTIONS(2141), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2141), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2141), - [anon_sym_BQUOTE] = ACTIONS(2141), - [anon_sym_LT_LPAREN] = ACTIONS(2141), - [anon_sym_GT_LPAREN] = ACTIONS(2141), + [sym_file_descriptor] = ACTIONS(2127), + [sym_variable_name] = ACTIONS(2127), + [anon_sym_esac] = ACTIONS(2129), + [anon_sym_PIPE] = ACTIONS(2129), + [anon_sym_RPAREN] = ACTIONS(2129), + [anon_sym_SEMI_SEMI] = ACTIONS(2129), + [anon_sym_PIPE_AMP] = ACTIONS(2129), + [anon_sym_AMP_AMP] = ACTIONS(2129), + [anon_sym_PIPE_PIPE] = ACTIONS(2129), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_GT] = ACTIONS(2129), + [anon_sym_GT_GT] = ACTIONS(2129), + [anon_sym_AMP_GT] = ACTIONS(2129), + [anon_sym_AMP_GT_GT] = ACTIONS(2129), + [anon_sym_LT_AMP] = ACTIONS(2129), + [anon_sym_GT_AMP] = ACTIONS(2129), + [sym__special_characters] = ACTIONS(2129), + [anon_sym_DQUOTE] = ACTIONS(2129), + [anon_sym_DOLLAR] = ACTIONS(2129), + [sym_raw_string] = ACTIONS(2129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2129), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2129), + [anon_sym_BQUOTE] = ACTIONS(2129), + [anon_sym_LT_LPAREN] = ACTIONS(2129), + [anon_sym_GT_LPAREN] = ACTIONS(2129), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2141), - [anon_sym_SEMI] = ACTIONS(2141), - [anon_sym_LF] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2141), + [sym_word] = ACTIONS(2129), + [anon_sym_SEMI] = ACTIONS(2129), + [anon_sym_LF] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2129), }, [560] = { - [aux_sym_concatenation_repeat1] = STATE(1001), - [sym__concat] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2145), - [sym__special_characters] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2147), - [sym_raw_string] = ACTIONS(2145), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2145), - [anon_sym_BQUOTE] = ACTIONS(2145), - [anon_sym_LT_LPAREN] = ACTIONS(2145), - [anon_sym_GT_LPAREN] = ACTIONS(2145), + [aux_sym_concatenation_repeat1] = STATE(991), + [sym__concat] = ACTIONS(2131), + [anon_sym_RPAREN] = ACTIONS(2133), + [sym__special_characters] = ACTIONS(2133), + [anon_sym_DQUOTE] = ACTIONS(2133), + [anon_sym_DOLLAR] = ACTIONS(2135), + [sym_raw_string] = ACTIONS(2133), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2133), + [anon_sym_BQUOTE] = ACTIONS(2133), + [anon_sym_LT_LPAREN] = ACTIONS(2133), + [anon_sym_GT_LPAREN] = ACTIONS(2133), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2145), + [sym_word] = ACTIONS(2133), }, [561] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(1003), - [anon_sym_DQUOTE] = ACTIONS(2149), + [aux_sym_string_repeat1] = STATE(993), + [anon_sym_DQUOTE] = ACTIONS(2137), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -25831,66 +22401,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), }, [562] = { - [sym_string] = STATE(1005), + [sym_string] = STATE(995), [anon_sym_DQUOTE] = ACTIONS(1115), - [anon_sym_DOLLAR] = ACTIONS(2151), - [sym_raw_string] = ACTIONS(2153), - [anon_sym_POUND] = ACTIONS(2151), - [anon_sym_DASH] = ACTIONS(2151), + [anon_sym_DOLLAR] = ACTIONS(2139), + [sym_raw_string] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_AT] = ACTIONS(2151), - [anon_sym_QMARK] = ACTIONS(2151), - [anon_sym_0] = ACTIONS(2157), - [anon_sym__] = ACTIONS(2157), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2143), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [anon_sym_QMARK] = ACTIONS(2139), + [anon_sym_0] = ACTIONS(2145), + [anon_sym__] = ACTIONS(2145), }, [563] = { - [aux_sym_concatenation_repeat1] = STATE(1001), - [sym__concat] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2159), - [sym__special_characters] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_DOLLAR] = ACTIONS(2161), - [sym_raw_string] = ACTIONS(2159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2159), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2159), - [anon_sym_BQUOTE] = ACTIONS(2159), - [anon_sym_LT_LPAREN] = ACTIONS(2159), - [anon_sym_GT_LPAREN] = ACTIONS(2159), + [aux_sym_concatenation_repeat1] = STATE(991), + [sym__concat] = ACTIONS(2131), + [anon_sym_RPAREN] = ACTIONS(2147), + [sym__special_characters] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2149), + [sym_raw_string] = ACTIONS(2147), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2147), + [anon_sym_BQUOTE] = ACTIONS(2147), + [anon_sym_LT_LPAREN] = ACTIONS(2147), + [anon_sym_GT_LPAREN] = ACTIONS(2147), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2159), + [sym_word] = ACTIONS(2147), }, [564] = { - [sym_subscript] = STATE(1011), - [sym_variable_name] = ACTIONS(2163), - [anon_sym_DOLLAR] = ACTIONS(2165), - [anon_sym_POUND] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2165), + [sym_subscript] = STATE(1001), + [sym_variable_name] = ACTIONS(2151), + [anon_sym_DOLLAR] = ACTIONS(2153), + [anon_sym_POUND] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2153), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2165), - [anon_sym_AT] = ACTIONS(2165), - [anon_sym_QMARK] = ACTIONS(2165), - [anon_sym_0] = ACTIONS(2171), - [anon_sym__] = ACTIONS(2171), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2157), + [anon_sym_STAR] = ACTIONS(2153), + [anon_sym_AT] = ACTIONS(2153), + [anon_sym_QMARK] = ACTIONS(2153), + [anon_sym_0] = ACTIONS(2159), + [anon_sym__] = ACTIONS(2159), }, [565] = { - [sym_for_statement] = STATE(1012), - [sym_while_statement] = STATE(1012), - [sym_if_statement] = STATE(1012), - [sym_case_statement] = STATE(1012), - [sym_function_definition] = STATE(1012), - [sym_subshell] = STATE(1012), - [sym_pipeline] = STATE(1012), - [sym_list] = STATE(1012), - [sym_negated_command] = STATE(1012), - [sym_test_command] = STATE(1012), - [sym_declaration_command] = STATE(1012), - [sym_unset_command] = STATE(1012), - [sym_command] = STATE(1012), + [sym_for_statement] = STATE(1002), + [sym_while_statement] = STATE(1002), + [sym_if_statement] = STATE(1002), + [sym_case_statement] = STATE(1002), + [sym_function_definition] = STATE(1002), + [sym_subshell] = STATE(1002), + [sym_pipeline] = STATE(1002), + [sym_list] = STATE(1002), + [sym_negated_command] = STATE(1002), + [sym_test_command] = STATE(1002), + [sym_declaration_command] = STATE(1002), + [sym_unset_command] = STATE(1002), + [sym_command] = STATE(1002), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(1013), + [sym_variable_assignment] = STATE(1003), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -25939,21 +22509,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(301), }, [566] = { - [sym_for_statement] = STATE(1014), - [sym_while_statement] = STATE(1014), - [sym_if_statement] = STATE(1014), - [sym_case_statement] = STATE(1014), - [sym_function_definition] = STATE(1014), - [sym_subshell] = STATE(1014), - [sym_pipeline] = STATE(1014), - [sym_list] = STATE(1014), - [sym_negated_command] = STATE(1014), - [sym_test_command] = STATE(1014), - [sym_declaration_command] = STATE(1014), - [sym_unset_command] = STATE(1014), - [sym_command] = STATE(1014), + [sym_for_statement] = STATE(1004), + [sym_while_statement] = STATE(1004), + [sym_if_statement] = STATE(1004), + [sym_case_statement] = STATE(1004), + [sym_function_definition] = STATE(1004), + [sym_subshell] = STATE(1004), + [sym_pipeline] = STATE(1004), + [sym_list] = STATE(1004), + [sym_negated_command] = STATE(1004), + [sym_test_command] = STATE(1004), + [sym_declaration_command] = STATE(1004), + [sym_unset_command] = STATE(1004), + [sym_command] = STATE(1004), [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(1015), + [sym_variable_assignment] = STATE(1005), [sym_subscript] = STATE(183), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -26002,21 +22572,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(323), }, [567] = { - [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_negated_command] = STATE(1016), - [sym_test_command] = STATE(1016), - [sym_declaration_command] = STATE(1016), - [sym_unset_command] = STATE(1016), - [sym_command] = STATE(1016), + [sym_for_statement] = STATE(1006), + [sym_while_statement] = STATE(1006), + [sym_if_statement] = STATE(1006), + [sym_case_statement] = STATE(1006), + [sym_function_definition] = STATE(1006), + [sym_subshell] = STATE(1006), + [sym_pipeline] = STATE(1006), + [sym_list] = STATE(1006), + [sym_negated_command] = STATE(1006), + [sym_test_command] = STATE(1006), + [sym_declaration_command] = STATE(1006), + [sym_unset_command] = STATE(1006), + [sym_command] = STATE(1006), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(1017), + [sym_variable_assignment] = STATE(1007), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -26065,15 +22635,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(301), }, [568] = { - [sym_concatenation] = STATE(1019), + [sym_concatenation] = STATE(1009), [sym_string] = STATE(563), [sym_simple_expansion] = STATE(563), [sym_string_expansion] = STATE(563), [sym_expansion] = STATE(563), [sym_command_substitution] = STATE(563), [sym_process_substitution] = STATE(563), - [aux_sym_for_statement_repeat1] = STATE(1019), - [anon_sym_RPAREN] = ACTIONS(2173), + [aux_sym_for_statement_repeat1] = STATE(1009), + [anon_sym_RPAREN] = ACTIONS(2161), [sym__special_characters] = ACTIONS(1113), [anon_sym_DQUOTE] = ACTIONS(1115), [anon_sym_DOLLAR] = ACTIONS(1117), @@ -26087,26 +22657,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(1119), }, [569] = { - [sym_string] = STATE(1020), - [sym_simple_expansion] = STATE(1020), - [sym_string_expansion] = STATE(1020), - [sym_expansion] = STATE(1020), - [sym_command_substitution] = STATE(1020), - [sym_process_substitution] = STATE(1020), - [sym__special_characters] = ACTIONS(2175), + [sym_string] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_string_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [sym__special_characters] = ACTIONS(2163), [anon_sym_DQUOTE] = ACTIONS(391), [anon_sym_DOLLAR] = ACTIONS(393), - [sym_raw_string] = ACTIONS(2175), + [sym_raw_string] = ACTIONS(2163), [anon_sym_DOLLAR_LBRACE] = ACTIONS(397), [anon_sym_DOLLAR_LPAREN] = ACTIONS(399), [anon_sym_BQUOTE] = ACTIONS(401), [anon_sym_LT_LPAREN] = ACTIONS(403), [anon_sym_GT_LPAREN] = ACTIONS(403), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2175), + [sym_word] = ACTIONS(2163), }, [570] = { - [aux_sym_concatenation_repeat1] = STATE(1021), + [aux_sym_concatenation_repeat1] = STATE(1011), [sym_file_descriptor] = ACTIONS(693), [sym__concat] = ACTIONS(1131), [sym_variable_name] = ACTIONS(693), @@ -26141,6 +22711,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(697), [sym__concat] = ACTIONS(697), [sym_variable_name] = ACTIONS(697), + [anon_sym_esac] = ACTIONS(699), [anon_sym_PIPE] = ACTIONS(699), [anon_sym_RPAREN] = ACTIONS(699), [anon_sym_SEMI_SEMI] = ACTIONS(699), @@ -26174,7 +22745,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2165), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -26186,6 +22757,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(727), [sym__concat] = ACTIONS(727), [sym_variable_name] = ACTIONS(727), + [anon_sym_esac] = ACTIONS(729), [anon_sym_PIPE] = ACTIONS(729), [anon_sym_RPAREN] = ACTIONS(729), [anon_sym_SEMI_SEMI] = ACTIONS(729), @@ -26218,6 +22790,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(731), [sym__concat] = ACTIONS(731), [sym_variable_name] = ACTIONS(731), + [anon_sym_esac] = ACTIONS(733), [anon_sym_PIPE] = ACTIONS(733), [anon_sym_RPAREN] = ACTIONS(733), [anon_sym_SEMI_SEMI] = ACTIONS(733), @@ -26250,6 +22823,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(735), [sym__concat] = ACTIONS(735), [sym_variable_name] = ACTIONS(735), + [anon_sym_esac] = ACTIONS(737), [anon_sym_PIPE] = ACTIONS(737), [anon_sym_RPAREN] = ACTIONS(737), [anon_sym_SEMI_SEMI] = ACTIONS(737), @@ -26280,32 +22854,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [576] = { [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(2179), + [anon_sym_EQ] = ACTIONS(2167), [sym_comment] = ACTIONS(53), }, [577] = { - [sym_concatenation] = STATE(1026), + [sym_concatenation] = STATE(1016), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1026), - [anon_sym_RBRACE] = ACTIONS(2181), - [anon_sym_EQ] = ACTIONS(2183), + [aux_sym_expansion_repeat1] = STATE(1016), + [anon_sym_RBRACE] = ACTIONS(2169), + [anon_sym_EQ] = ACTIONS(2171), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2173), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2187), - [anon_sym_COLON] = ACTIONS(2183), - [anon_sym_COLON_QMARK] = ACTIONS(2183), - [anon_sym_COLON_DASH] = ACTIONS(2183), - [anon_sym_PERCENT] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), + [aux_sym_SLASH] = ACTIONS(2175), + [anon_sym_COLON] = ACTIONS(2171), + [anon_sym_COLON_QMARK] = ACTIONS(2171), + [anon_sym_COLON_DASH] = ACTIONS(2171), + [anon_sym_PERCENT] = ACTIONS(2171), + [anon_sym_DASH] = ACTIONS(2171), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -26314,41 +22888,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [578] = { - [sym_subscript] = STATE(1030), - [sym_variable_name] = ACTIONS(2189), - [anon_sym_DOLLAR] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), + [sym_subscript] = STATE(1020), + [sym_variable_name] = ACTIONS(2177), + [anon_sym_DOLLAR] = ACTIONS(2179), + [anon_sym_DASH] = ACTIONS(2179), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2193), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_AT] = ACTIONS(2191), - [anon_sym_QMARK] = ACTIONS(2191), - [anon_sym_0] = ACTIONS(2195), - [anon_sym__] = ACTIONS(2195), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2181), + [anon_sym_STAR] = ACTIONS(2179), + [anon_sym_AT] = ACTIONS(2179), + [anon_sym_QMARK] = ACTIONS(2179), + [anon_sym_0] = ACTIONS(2183), + [anon_sym__] = ACTIONS(2183), }, [579] = { - [sym_concatenation] = STATE(1033), + [sym_concatenation] = STATE(1023), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1033), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_EQ] = ACTIONS(2199), + [aux_sym_expansion_repeat1] = STATE(1023), + [anon_sym_RBRACE] = ACTIONS(2185), + [anon_sym_EQ] = ACTIONS(2187), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(2189), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2203), - [anon_sym_COLON] = ACTIONS(2199), - [anon_sym_COLON_QMARK] = ACTIONS(2199), - [anon_sym_COLON_DASH] = ACTIONS(2199), - [anon_sym_PERCENT] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), + [aux_sym_SLASH] = ACTIONS(2191), + [anon_sym_COLON] = ACTIONS(2187), + [anon_sym_COLON_QMARK] = ACTIONS(2187), + [anon_sym_COLON_DASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -26357,28 +22931,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [580] = { - [sym_concatenation] = STATE(1036), + [sym_concatenation] = STATE(1026), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1036), - [anon_sym_RBRACE] = ACTIONS(2205), - [anon_sym_EQ] = ACTIONS(2207), + [aux_sym_expansion_repeat1] = STATE(1026), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_EQ] = ACTIONS(2195), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2209), + [anon_sym_POUND] = ACTIONS(2197), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2211), - [anon_sym_COLON] = ACTIONS(2207), - [anon_sym_COLON_QMARK] = ACTIONS(2207), - [anon_sym_COLON_DASH] = ACTIONS(2207), - [anon_sym_PERCENT] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), + [aux_sym_SLASH] = ACTIONS(2199), + [anon_sym_COLON] = ACTIONS(2195), + [anon_sym_COLON_QMARK] = ACTIONS(2195), + [anon_sym_COLON_DASH] = ACTIONS(2195), + [anon_sym_PERCENT] = ACTIONS(2195), + [anon_sym_DASH] = ACTIONS(2195), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -26388,7 +22962,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [581] = { [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(2213), + [anon_sym_RPAREN] = ACTIONS(2201), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -26398,7 +22972,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(2213), + [anon_sym_RPAREN] = ACTIONS(2201), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -26426,7 +23000,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(925), [anon_sym_AMP_AMP] = ACTIONS(927), [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_BQUOTE] = ACTIONS(2213), + [anon_sym_BQUOTE] = ACTIONS(2201), [sym_comment] = ACTIONS(53), }, [584] = { @@ -26449,7 +23023,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(369), [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(2213), + [anon_sym_BQUOTE] = ACTIONS(2201), [anon_sym_LT_LPAREN] = ACTIONS(369), [anon_sym_GT_LPAREN] = ACTIONS(369), [sym_comment] = ACTIONS(53), @@ -26457,7 +23031,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [585] = { [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(2215), + [anon_sym_RPAREN] = ACTIONS(2203), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -26467,7 +23041,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(2215), + [anon_sym_RPAREN] = ACTIONS(2203), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -26491,192 +23065,220 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(369), }, [587] = { - [aux_sym_concatenation_repeat1] = STATE(1040), - [sym__concat] = ACTIONS(2217), - [anon_sym_SEMI_SEMI] = ACTIONS(2147), - [sym__special_characters] = ACTIONS(2147), - [anon_sym_DQUOTE] = ACTIONS(2147), - [anon_sym_DOLLAR] = ACTIONS(2147), - [sym_raw_string] = ACTIONS(2147), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2147), - [anon_sym_BQUOTE] = ACTIONS(2147), - [anon_sym_LT_LPAREN] = ACTIONS(2147), - [anon_sym_GT_LPAREN] = ACTIONS(2147), + [aux_sym_concatenation_repeat1] = STATE(1029), + [sym__concat] = ACTIONS(419), + [anon_sym_SEMI_SEMI] = ACTIONS(2135), + [sym__special_characters] = ACTIONS(2135), + [anon_sym_DQUOTE] = ACTIONS(2135), + [anon_sym_DOLLAR] = ACTIONS(2135), + [sym_raw_string] = ACTIONS(2135), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2135), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2135), + [anon_sym_BQUOTE] = ACTIONS(2135), + [anon_sym_LT_LPAREN] = ACTIONS(2135), + [anon_sym_GT_LPAREN] = ACTIONS(2135), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2147), - [anon_sym_SEMI] = ACTIONS(2147), - [anon_sym_LF] = ACTIONS(2145), - [anon_sym_AMP] = ACTIONS(2147), + [sym_word] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2135), + [anon_sym_LF] = ACTIONS(2133), + [anon_sym_AMP] = ACTIONS(2135), }, [588] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(1042), - [anon_sym_DQUOTE] = ACTIONS(2219), - [anon_sym_DOLLAR] = ACTIONS(229), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), + [aux_sym_concatenation_repeat1] = STATE(1029), + [sym__concat] = ACTIONS(419), + [anon_sym_SEMI_SEMI] = ACTIONS(2149), + [sym__special_characters] = ACTIONS(2149), + [anon_sym_DQUOTE] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2149), + [sym_raw_string] = ACTIONS(2149), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2149), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2149), + [anon_sym_BQUOTE] = ACTIONS(2149), + [anon_sym_LT_LPAREN] = ACTIONS(2149), + [anon_sym_GT_LPAREN] = ACTIONS(2149), [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(2149), + [anon_sym_LF] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2149), }, [589] = { - [sym_string] = STATE(1044), - [anon_sym_DQUOTE] = ACTIONS(1157), - [anon_sym_DOLLAR] = ACTIONS(2221), - [sym_raw_string] = ACTIONS(2223), - [anon_sym_POUND] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), + [sym_concatenation] = STATE(1031), + [sym_string] = STATE(588), + [sym_simple_expansion] = STATE(588), + [sym_string_expansion] = STATE(588), + [sym_expansion] = STATE(588), + [sym_command_substitution] = STATE(588), + [sym_process_substitution] = STATE(588), + [aux_sym_for_statement_repeat1] = STATE(1031), + [anon_sym_SEMI_SEMI] = ACTIONS(2205), + [sym__special_characters] = ACTIONS(2207), + [anon_sym_DQUOTE] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(71), + [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(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2225), - [anon_sym_STAR] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2221), - [anon_sym_QMARK] = ACTIONS(2221), - [anon_sym_0] = ACTIONS(2227), - [anon_sym__] = ACTIONS(2227), + [sym_word] = ACTIONS(2211), + [anon_sym_SEMI] = ACTIONS(2205), + [anon_sym_LF] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2205), }, [590] = { - [aux_sym_concatenation_repeat1] = STATE(1040), - [sym__concat] = ACTIONS(2217), - [anon_sym_SEMI_SEMI] = ACTIONS(2161), - [sym__special_characters] = ACTIONS(2161), - [anon_sym_DQUOTE] = ACTIONS(2161), - [anon_sym_DOLLAR] = ACTIONS(2161), - [sym_raw_string] = ACTIONS(2161), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2161), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2161), - [anon_sym_BQUOTE] = ACTIONS(2161), - [anon_sym_LT_LPAREN] = ACTIONS(2161), - [anon_sym_GT_LPAREN] = ACTIONS(2161), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2161), - [anon_sym_SEMI] = ACTIONS(2161), - [anon_sym_LF] = ACTIONS(2159), - [anon_sym_AMP] = ACTIONS(2161), + [sym__terminated_statement] = STATE(1033), + [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_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1033), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_done] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), }, [591] = { - [sym_subscript] = STATE(1050), - [sym_variable_name] = ACTIONS(2229), - [anon_sym_DOLLAR] = ACTIONS(2231), - [anon_sym_POUND] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2231), + [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(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2235), - [anon_sym_STAR] = ACTIONS(2231), - [anon_sym_AT] = ACTIONS(2231), - [anon_sym_QMARK] = ACTIONS(2231), - [anon_sym_0] = ACTIONS(2237), - [anon_sym__] = ACTIONS(2237), + [anon_sym_SEMI] = ACTIONS(2225), + [anon_sym_LF] = ACTIONS(2227), + [anon_sym_AMP] = ACTIONS(2225), }, [592] = { - [sym_for_statement] = STATE(1051), - [sym_while_statement] = STATE(1051), - [sym_if_statement] = STATE(1051), - [sym_case_statement] = STATE(1051), - [sym_function_definition] = STATE(1051), - [sym_subshell] = STATE(1051), - [sym_pipeline] = STATE(1051), - [sym_list] = STATE(1051), - [sym_negated_command] = STATE(1051), - [sym_test_command] = STATE(1051), - [sym_declaration_command] = STATE(1051), - [sym_unset_command] = STATE(1051), - [sym_command] = STATE(1051), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(1052), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), + [sym__simple_heredoc_body] = ACTIONS(2229), + [sym__heredoc_body_beginning] = ACTIONS(2229), + [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(177), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_LF] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), }, [593] = { - [sym_for_statement] = STATE(1053), - [sym_while_statement] = STATE(1053), - [sym_if_statement] = STATE(1053), - [sym_case_statement] = STATE(1053), - [sym_function_definition] = STATE(1053), - [sym_subshell] = STATE(1053), - [sym_pipeline] = STATE(1053), - [sym_list] = STATE(1053), - [sym_negated_command] = STATE(1053), - [sym_test_command] = STATE(1053), - [sym_declaration_command] = STATE(1053), - [sym_unset_command] = STATE(1053), - [sym_command] = STATE(1053), - [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(1054), - [sym_subscript] = STATE(183), + [sym__terminated_statement] = STATE(1035), + [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_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1035), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(303), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(305), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_typeset] = ACTIONS(315), - [anon_sym_export] = ACTIONS(315), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_unset] = ACTIONS(317), - [anon_sym_unsetenv] = ACTIONS(317), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_done] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -26684,345 +23286,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), + [sym_word] = ACTIONS(55), }, [594] = { - [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_negated_command] = STATE(1055), - [sym_test_command] = STATE(1055), - [sym_declaration_command] = STATE(1055), - [sym_unset_command] = STATE(1055), - [sym_command] = STATE(1055), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(1056), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), + [anon_sym_esac] = ACTIONS(2235), + [anon_sym_PIPE] = ACTIONS(2235), + [anon_sym_RPAREN] = ACTIONS(2235), + [anon_sym_SEMI_SEMI] = ACTIONS(2235), + [anon_sym_PIPE_AMP] = ACTIONS(2235), + [anon_sym_AMP_AMP] = ACTIONS(2235), + [anon_sym_PIPE_PIPE] = ACTIONS(2235), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_LF] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(2235), }, [595] = { - [sym_concatenation] = STATE(1058), - [sym_string] = STATE(590), - [sym_simple_expansion] = STATE(590), - [sym_string_expansion] = STATE(590), - [sym_expansion] = STATE(590), - [sym_command_substitution] = STATE(590), - [sym_process_substitution] = STATE(590), - [aux_sym_for_statement_repeat1] = STATE(1058), - [anon_sym_SEMI_SEMI] = ACTIONS(2239), - [sym__special_characters] = ACTIONS(2241), - [anon_sym_DQUOTE] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(2245), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2249), - [anon_sym_BQUOTE] = ACTIONS(2251), - [anon_sym_LT_LPAREN] = ACTIONS(2253), - [anon_sym_GT_LPAREN] = ACTIONS(2253), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2239), - [anon_sym_LF] = ACTIONS(2255), - [anon_sym_AMP] = ACTIONS(2239), - }, - [596] = { - [sym__terminated_statement] = STATE(1060), - [sym_for_statement] = STATE(599), - [sym_while_statement] = STATE(599), - [sym_if_statement] = STATE(599), - [sym_case_statement] = STATE(599), - [sym_function_definition] = STATE(599), - [sym_subshell] = STATE(599), - [sym_pipeline] = STATE(599), - [sym_list] = STATE(599), - [sym_negated_command] = STATE(599), - [sym_test_command] = STATE(599), - [sym_declaration_command] = STATE(599), - [sym_unset_command] = STATE(599), - [sym_command] = STATE(599), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(600), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1060), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_done] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [597] = { - [anon_sym_esac] = ACTIONS(2259), - [anon_sym_PIPE] = ACTIONS(2259), - [anon_sym_RPAREN] = ACTIONS(2259), - [anon_sym_SEMI_SEMI] = ACTIONS(2259), - [anon_sym_PIPE_AMP] = ACTIONS(2259), - [anon_sym_AMP_AMP] = ACTIONS(2259), - [anon_sym_PIPE_PIPE] = ACTIONS(2259), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_LF] = ACTIONS(2261), - [anon_sym_AMP] = ACTIONS(2259), - }, - [598] = { - [sym__simple_heredoc_body] = ACTIONS(2263), - [sym__heredoc_body_beginning] = ACTIONS(2263), - [sym_file_descriptor] = ACTIONS(2263), - [anon_sym_esac] = ACTIONS(2265), - [anon_sym_PIPE] = ACTIONS(2265), - [anon_sym_RPAREN] = ACTIONS(2265), - [anon_sym_SEMI_SEMI] = ACTIONS(2265), - [anon_sym_PIPE_AMP] = ACTIONS(2265), - [anon_sym_AMP_AMP] = ACTIONS(2265), - [anon_sym_PIPE_PIPE] = ACTIONS(2265), - [anon_sym_LT] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(2265), - [anon_sym_GT_GT] = ACTIONS(2265), - [anon_sym_AMP_GT] = ACTIONS(2265), - [anon_sym_AMP_GT_GT] = ACTIONS(2265), - [anon_sym_LT_AMP] = ACTIONS(2265), - [anon_sym_GT_AMP] = ACTIONS(2265), - [anon_sym_LT_LT] = ACTIONS(2265), - [anon_sym_LT_LT_DASH] = ACTIONS(2265), - [anon_sym_LT_LT_LT] = ACTIONS(2265), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2265), - [anon_sym_LF] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2265), - }, - [599] = { - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(2267), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2267), - [anon_sym_LF] = ACTIONS(2269), - [anon_sym_AMP] = ACTIONS(2267), - }, - [600] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(2267), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(2267), - [anon_sym_LF] = ACTIONS(2269), - [anon_sym_AMP] = ACTIONS(2267), - }, - [601] = { - [sym__terminated_statement] = STATE(1063), - [sym_for_statement] = STATE(599), - [sym_while_statement] = STATE(599), - [sym_if_statement] = STATE(599), - [sym_case_statement] = STATE(599), - [sym_function_definition] = STATE(599), - [sym_subshell] = STATE(599), - [sym_pipeline] = STATE(599), - [sym_list] = STATE(599), - [sym_negated_command] = STATE(599), - [sym_test_command] = STATE(599), - [sym_declaration_command] = STATE(599), - [sym_unset_command] = STATE(599), - [sym_command] = STATE(599), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(600), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1063), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_done] = ACTIONS(2271), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [602] = { - [anon_sym_esac] = ACTIONS(2273), - [anon_sym_PIPE] = ACTIONS(2273), - [anon_sym_RPAREN] = ACTIONS(2273), - [anon_sym_SEMI_SEMI] = ACTIONS(2273), - [anon_sym_PIPE_AMP] = ACTIONS(2273), - [anon_sym_AMP_AMP] = ACTIONS(2273), - [anon_sym_PIPE_PIPE] = ACTIONS(2273), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2273), - [anon_sym_LF] = ACTIONS(2275), - [anon_sym_AMP] = ACTIONS(2273), - }, - [603] = { [sym_file_redirect] = STATE(549), [sym_heredoc_redirect] = STATE(549), - [sym_heredoc_body] = STATE(1064), + [sym_heredoc_body] = STATE(1036), [sym_herestring_redirect] = STATE(549), [aux_sym_while_statement_repeat1] = STATE(549), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), [sym_file_descriptor] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(2273), - [anon_sym_SEMI_SEMI] = ACTIONS(2273), - [anon_sym_PIPE_AMP] = ACTIONS(2273), - [anon_sym_AMP_AMP] = ACTIONS(2273), - [anon_sym_PIPE_PIPE] = ACTIONS(2273), + [anon_sym_PIPE] = ACTIONS(2235), + [anon_sym_SEMI_SEMI] = ACTIONS(2235), + [anon_sym_PIPE_AMP] = ACTIONS(2235), + [anon_sym_AMP_AMP] = ACTIONS(2235), + [anon_sym_PIPE_PIPE] = ACTIONS(2235), [anon_sym_LT] = ACTIONS(347), [anon_sym_GT] = ACTIONS(347), [anon_sym_GT_GT] = ACTIONS(347), @@ -27034,25 +23336,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(349), [anon_sym_LT_LT_LT] = ACTIONS(351), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2273), - [anon_sym_LF] = ACTIONS(2275), - [anon_sym_AMP] = ACTIONS(2273), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_LF] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(2235), }, - [604] = { - [anon_sym_esac] = ACTIONS(2277), - [anon_sym_PIPE] = ACTIONS(2277), - [anon_sym_RPAREN] = ACTIONS(2277), - [anon_sym_SEMI_SEMI] = ACTIONS(2277), - [anon_sym_PIPE_AMP] = ACTIONS(2277), - [anon_sym_AMP_AMP] = ACTIONS(2277), - [anon_sym_PIPE_PIPE] = ACTIONS(2277), + [596] = { + [anon_sym_esac] = ACTIONS(2239), + [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), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2277), - [anon_sym_LF] = ACTIONS(2279), - [anon_sym_AMP] = ACTIONS(2277), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_LF] = ACTIONS(2241), + [anon_sym_AMP] = ACTIONS(2239), }, - [605] = { - [sym__terminated_statement] = STATE(1065), + [597] = { + [sym__terminated_statement] = STATE(1037), [sym_for_statement] = STATE(39), [sym_while_statement] = STATE(39), [sym_if_statement] = STATE(39), @@ -27115,23 +23417,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [606] = { - [sym__terminated_statement] = STATE(1068), - [sym_for_statement] = STATE(1066), - [sym_while_statement] = STATE(1066), - [sym_if_statement] = STATE(1066), - [sym_case_statement] = STATE(1066), - [sym_function_definition] = STATE(1066), - [sym_subshell] = STATE(1066), - [sym_pipeline] = STATE(1066), - [sym_list] = STATE(1066), - [sym_negated_command] = STATE(1066), - [sym_test_command] = STATE(1066), - [sym_declaration_command] = STATE(1066), - [sym_unset_command] = STATE(1066), - [sym_command] = STATE(1066), + [598] = { + [sym__terminated_statement] = STATE(1038), + [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_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(1067), + [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -27141,14 +23443,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1068), + [aux_sym_program_repeat1] = STATE(1038), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), [anon_sym_while] = ACTIONS(13), [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(2281), + [anon_sym_fi] = ACTIONS(2243), [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), @@ -27181,283 +23483,471 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, + [599] = { + [anon_sym_fi] = ACTIONS(2245), + [anon_sym_elif] = ACTIONS(2245), + [anon_sym_else] = ACTIONS(2245), + [sym_comment] = ACTIONS(53), + }, + [600] = { + [anon_sym_fi] = ACTIONS(2247), + [sym_comment] = ACTIONS(53), + }, + [601] = { + [sym__terminated_statement] = STATE(1041), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_elif_clause] = STATE(599), + [sym_else_clause] = STATE(1040), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1041), + [aux_sym_if_statement_repeat1] = STATE(1042), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_fi] = ACTIONS(2249), + [anon_sym_elif] = ACTIONS(1169), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), + }, + [602] = { + [sym_elif_clause] = STATE(599), + [sym_else_clause] = STATE(1040), + [aux_sym_if_statement_repeat1] = STATE(1043), + [anon_sym_fi] = ACTIONS(2247), + [anon_sym_elif] = ACTIONS(2251), + [anon_sym_else] = ACTIONS(2253), + [sym_comment] = ACTIONS(53), + }, + [603] = { + [sym__concat] = ACTIONS(1642), + [anon_sym_in] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [sym__special_characters] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1644), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1644), + [anon_sym_LT_LPAREN] = ACTIONS(1644), + [anon_sym_GT_LPAREN] = ACTIONS(1644), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), + }, + [604] = { + [sym_case_item] = STATE(1049), + [sym_last_case_item] = STATE(1047), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(1046), + [sym_simple_expansion] = STATE(1046), + [sym_string_expansion] = STATE(1046), + [sym_expansion] = STATE(1046), + [sym_command_substitution] = STATE(1046), + [sym_process_substitution] = STATE(1046), + [aux_sym_case_statement_repeat1] = STATE(1049), + [anon_sym_esac] = ACTIONS(2255), + [sym__special_characters] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [sym_raw_string] = ACTIONS(2259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_LT_LPAREN] = ACTIONS(151), + [anon_sym_GT_LPAREN] = ACTIONS(151), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2261), + }, + [605] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2263), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_LF] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(2263), + }, + [606] = { + [aux_sym_concatenation_repeat1] = STATE(606), + [sym__concat] = ACTIONS(2267), + [anon_sym_in] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), + }, [607] = { - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(2283), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), + [sym__concat] = ACTIONS(1691), + [anon_sym_in] = ACTIONS(1693), + [anon_sym_SEMI_SEMI] = ACTIONS(1693), + [sym__special_characters] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1693), + [anon_sym_DOLLAR] = ACTIONS(1693), + [sym_raw_string] = ACTIONS(1693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1693), + [anon_sym_BQUOTE] = ACTIONS(1693), + [anon_sym_LT_LPAREN] = ACTIONS(1693), + [anon_sym_GT_LPAREN] = ACTIONS(1693), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2283), - [anon_sym_LF] = ACTIONS(2285), - [anon_sym_AMP] = ACTIONS(2283), + [sym_word] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_LF] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1693), }, [608] = { - [anon_sym_fi] = ACTIONS(2287), - [anon_sym_elif] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2287), + [sym_case_item] = STATE(1053), + [sym_last_case_item] = STATE(1052), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(1046), + [sym_simple_expansion] = STATE(1046), + [sym_string_expansion] = STATE(1046), + [sym_expansion] = STATE(1046), + [sym_command_substitution] = STATE(1046), + [sym_process_substitution] = STATE(1046), + [aux_sym_case_statement_repeat1] = STATE(1053), + [anon_sym_esac] = ACTIONS(2270), + [sym__special_characters] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [sym_raw_string] = ACTIONS(2259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_LT_LPAREN] = ACTIONS(151), + [anon_sym_GT_LPAREN] = ACTIONS(151), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2261), }, [609] = { - [anon_sym_fi] = ACTIONS(2289), - [sym_comment] = ACTIONS(53), + [anon_sym_SEMI_SEMI] = ACTIONS(2272), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_LF] = ACTIONS(2274), + [anon_sym_AMP] = ACTIONS(2272), }, [610] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(2283), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(2283), - [anon_sym_LF] = ACTIONS(2285), - [anon_sym_AMP] = ACTIONS(2283), + [sym_concatenation] = STATE(1058), + [sym_string] = STATE(1057), + [sym_simple_expansion] = STATE(1057), + [sym_string_expansion] = STATE(1057), + [sym_expansion] = STATE(1057), + [sym_command_substitution] = STATE(1057), + [sym_process_substitution] = STATE(1057), + [anon_sym_RBRACE] = ACTIONS(2276), + [sym__special_characters] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(2280), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2280), }, [611] = { - [sym__terminated_statement] = STATE(1072), - [sym_for_statement] = STATE(607), - [sym_while_statement] = STATE(607), - [sym_if_statement] = STATE(607), - [sym_elif_clause] = STATE(608), - [sym_else_clause] = STATE(1071), - [sym_case_statement] = STATE(607), - [sym_function_definition] = STATE(607), - [sym_subshell] = STATE(607), - [sym_pipeline] = STATE(607), - [sym_list] = STATE(607), - [sym_negated_command] = STATE(607), - [sym_test_command] = STATE(607), - [sym_declaration_command] = STATE(607), - [sym_unset_command] = STATE(607), - [sym_command] = STATE(607), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(610), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1072), - [aux_sym_if_statement_repeat1] = STATE(1073), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(2291), - [anon_sym_elif] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1183), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym__concat] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_SEMI_SEMI] = ACTIONS(1734), + [sym__special_characters] = ACTIONS(1734), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1734), + [sym_raw_string] = ACTIONS(1734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1734), + [anon_sym_BQUOTE] = ACTIONS(1734), + [anon_sym_LT_LPAREN] = ACTIONS(1734), + [anon_sym_GT_LPAREN] = ACTIONS(1734), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_LF] = ACTIONS(1732), + [anon_sym_AMP] = ACTIONS(1734), }, [612] = { - [sym_elif_clause] = STATE(608), - [sym_else_clause] = STATE(1071), - [aux_sym_if_statement_repeat1] = STATE(1074), - [anon_sym_fi] = ACTIONS(2289), - [anon_sym_elif] = ACTIONS(2293), - [anon_sym_else] = ACTIONS(2295), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2282), }, [613] = { - [sym__concat] = ACTIONS(1654), - [anon_sym_in] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), - }, - [614] = { - [sym_case_item] = STATE(1080), - [sym_last_case_item] = STATE(1078), - [sym_concatenation] = STATE(1079), - [sym_string] = STATE(1077), - [sym_simple_expansion] = STATE(1077), - [sym_string_expansion] = STATE(1077), - [sym_expansion] = STATE(1077), - [sym_command_substitution] = STATE(1077), - [sym_process_substitution] = STATE(1077), - [aux_sym_case_statement_repeat1] = STATE(1080), - [anon_sym_esac] = ACTIONS(2297), - [sym__special_characters] = ACTIONS(2299), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2303), - }, - [615] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2305), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2305), - [anon_sym_LF] = ACTIONS(2307), - [anon_sym_AMP] = ACTIONS(2305), - }, - [616] = { - [aux_sym_concatenation_repeat1] = STATE(616), - [sym__concat] = ACTIONS(2309), - [anon_sym_in] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), - }, - [617] = { - [sym__concat] = ACTIONS(1703), - [anon_sym_in] = ACTIONS(1705), - [anon_sym_SEMI_SEMI] = ACTIONS(1705), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_LF] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1705), - }, - [618] = { - [sym_case_item] = STATE(1084), - [sym_last_case_item] = STATE(1083), - [sym_concatenation] = STATE(1079), - [sym_string] = STATE(1077), - [sym_simple_expansion] = STATE(1077), - [sym_string_expansion] = STATE(1077), - [sym_expansion] = STATE(1077), - [sym_command_substitution] = STATE(1077), - [sym_process_substitution] = STATE(1077), - [aux_sym_case_statement_repeat1] = STATE(1084), - [anon_sym_esac] = ACTIONS(2312), - [sym__special_characters] = ACTIONS(2299), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2303), - }, - [619] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2314), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2314), - [anon_sym_LF] = ACTIONS(2316), - [anon_sym_AMP] = ACTIONS(2314), - }, - [620] = { - [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), - [anon_sym_RBRACE] = ACTIONS(2318), - [sym__special_characters] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(2322), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2322), - }, - [621] = { - [sym__concat] = ACTIONS(1744), - [anon_sym_in] = ACTIONS(1746), - [anon_sym_SEMI_SEMI] = ACTIONS(1746), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LF] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1746), - }, - [622] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2324), - }, - [623] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(2326), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [614] = { + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(2286), + [sym_comment] = ACTIONS(53), + }, + [615] = { + [sym_concatenation] = STATE(1064), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1064), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_EQ] = ACTIONS(2290), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(2294), + [anon_sym_COLON] = ACTIONS(2290), + [anon_sym_COLON_QMARK] = ACTIONS(2290), + [anon_sym_COLON_DASH] = ACTIONS(2290), + [anon_sym_PERCENT] = ACTIONS(2290), + [anon_sym_DASH] = ACTIONS(2290), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [616] = { + [sym_concatenation] = STATE(1067), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1067), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(2298), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(2302), + [anon_sym_COLON] = ACTIONS(2298), + [anon_sym_COLON_QMARK] = ACTIONS(2298), + [anon_sym_COLON_DASH] = ACTIONS(2298), + [anon_sym_PERCENT] = ACTIONS(2298), + [anon_sym_DASH] = ACTIONS(2298), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [617] = { + [sym_concatenation] = STATE(1069), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1069), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_EQ] = ACTIONS(2304), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [618] = { + [sym__concat] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1800), + [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(177), + [sym_word] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_LF] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1800), + }, + [619] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2310), + }, + [620] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(2312), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [621] = { + [sym__concat] = ACTIONS(1806), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_SEMI_SEMI] = ACTIONS(1808), + [sym__special_characters] = ACTIONS(1808), + [anon_sym_DQUOTE] = ACTIONS(1808), + [anon_sym_DOLLAR] = ACTIONS(1808), + [sym_raw_string] = ACTIONS(1808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1808), + [anon_sym_BQUOTE] = ACTIONS(1808), + [anon_sym_LT_LPAREN] = ACTIONS(1808), + [anon_sym_GT_LPAREN] = ACTIONS(1808), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1808), + [anon_sym_LF] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1808), + }, + [622] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2314), + }, + [623] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -27466,244 +23956,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [624] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(2328), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1942), + [sym__special_characters] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [anon_sym_DOLLAR] = ACTIONS(1942), + [sym_raw_string] = ACTIONS(1942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1942), + [anon_sym_BQUOTE] = ACTIONS(1942), + [anon_sym_LT_LPAREN] = ACTIONS(1942), + [anon_sym_GT_LPAREN] = ACTIONS(1942), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1942), }, [625] = { - [sym_concatenation] = STATE(1095), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1095), - [anon_sym_RBRACE] = ACTIONS(2330), - [anon_sym_EQ] = ACTIONS(2332), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2334), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2336), - [anon_sym_COLON] = ACTIONS(2332), - [anon_sym_COLON_QMARK] = ACTIONS(2332), - [anon_sym_COLON_DASH] = ACTIONS(2332), - [anon_sym_PERCENT] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym__concat] = ACTIONS(2006), + [anon_sym_in] = ACTIONS(2008), + [anon_sym_SEMI_SEMI] = ACTIONS(2008), + [sym__special_characters] = ACTIONS(2008), + [anon_sym_DQUOTE] = ACTIONS(2008), + [anon_sym_DOLLAR] = ACTIONS(2008), + [sym_raw_string] = ACTIONS(2008), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2008), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2008), + [anon_sym_BQUOTE] = ACTIONS(2008), + [anon_sym_LT_LPAREN] = ACTIONS(2008), + [anon_sym_GT_LPAREN] = ACTIONS(2008), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(2008), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_LF] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2008), }, [626] = { - [sym_concatenation] = STATE(1098), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1098), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_EQ] = ACTIONS(2340), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2344), - [anon_sym_COLON] = ACTIONS(2340), - [anon_sym_COLON_QMARK] = ACTIONS(2340), - [anon_sym_COLON_DASH] = ACTIONS(2340), - [anon_sym_PERCENT] = ACTIONS(2340), - [anon_sym_DASH] = ACTIONS(2340), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [627] = { - [sym_concatenation] = STATE(1100), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1100), - [anon_sym_RBRACE] = ACTIONS(2318), - [anon_sym_EQ] = ACTIONS(2346), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2348), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2350), - [anon_sym_COLON] = ACTIONS(2346), - [anon_sym_COLON_QMARK] = ACTIONS(2346), - [anon_sym_COLON_DASH] = ACTIONS(2346), - [anon_sym_PERCENT] = ACTIONS(2346), - [anon_sym_DASH] = ACTIONS(2346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [628] = { - [sym__concat] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1812), - [anon_sym_SEMI_SEMI] = ACTIONS(1812), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_LF] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1812), - }, - [629] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2352), - }, - [630] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(2354), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [631] = { - [sym__concat] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1820), - [anon_sym_SEMI_SEMI] = ACTIONS(1820), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_LF] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1820), - }, - [632] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2356), - }, - [633] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(2318), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [634] = { - [sym__concat] = ACTIONS(1952), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_SEMI_SEMI] = ACTIONS(1954), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_LF] = ACTIONS(1952), - [anon_sym_AMP] = ACTIONS(1954), - }, - [635] = { - [sym__concat] = ACTIONS(2018), - [anon_sym_in] = ACTIONS(2020), - [anon_sym_SEMI_SEMI] = ACTIONS(2020), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2020), - [anon_sym_LF] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2020), - }, - [636] = { - [sym_compound_statement] = STATE(1104), + [sym_compound_statement] = STATE(1073), [anon_sym_LBRACE] = ACTIONS(455), [sym_comment] = ACTIONS(53), }, - [637] = { - [sym_file_descriptor] = ACTIONS(2358), - [anon_sym_esac] = ACTIONS(2360), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_RPAREN] = ACTIONS(2360), - [anon_sym_SEMI_SEMI] = ACTIONS(2360), - [anon_sym_PIPE_AMP] = ACTIONS(2360), - [anon_sym_AMP_AMP] = ACTIONS(2360), - [anon_sym_PIPE_PIPE] = ACTIONS(2360), - [anon_sym_LT] = ACTIONS(2360), - [anon_sym_GT] = ACTIONS(2360), - [anon_sym_GT_GT] = ACTIONS(2360), - [anon_sym_AMP_GT] = ACTIONS(2360), - [anon_sym_AMP_GT_GT] = ACTIONS(2360), - [anon_sym_LT_AMP] = ACTIONS(2360), - [anon_sym_GT_AMP] = ACTIONS(2360), + [627] = { + [sym_file_descriptor] = ACTIONS(2316), + [anon_sym_esac] = ACTIONS(2318), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_RPAREN] = ACTIONS(2318), + [anon_sym_SEMI_SEMI] = ACTIONS(2318), + [anon_sym_PIPE_AMP] = ACTIONS(2318), + [anon_sym_AMP_AMP] = ACTIONS(2318), + [anon_sym_PIPE_PIPE] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_GT] = ACTIONS(2318), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_AMP_GT] = ACTIONS(2318), + [anon_sym_AMP_GT_GT] = ACTIONS(2318), + [anon_sym_LT_AMP] = ACTIONS(2318), + [anon_sym_GT_AMP] = ACTIONS(2318), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_LF] = ACTIONS(2358), - [anon_sym_AMP] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_LF] = ACTIONS(2316), + [anon_sym_AMP] = ACTIONS(2318), }, - [638] = { + [628] = { [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(2362), + [anon_sym_SEMI_SEMI] = ACTIONS(2320), [anon_sym_PIPE_AMP] = ACTIONS(329), [anon_sym_AMP_AMP] = ACTIONS(333), [anon_sym_PIPE_PIPE] = ACTIONS(333), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2362), - [anon_sym_LF] = ACTIONS(2364), - [anon_sym_AMP] = ACTIONS(2362), + [anon_sym_SEMI] = ACTIONS(2320), + [anon_sym_LF] = ACTIONS(2322), + [anon_sym_AMP] = ACTIONS(2320), }, - [639] = { + [629] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(2362), + [anon_sym_SEMI_SEMI] = ACTIONS(2320), [anon_sym_PIPE_AMP] = ACTIONS(329), [anon_sym_AMP_AMP] = ACTIONS(333), [anon_sym_PIPE_PIPE] = ACTIONS(333), @@ -27725,27 +24056,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(371), [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(2362), - [anon_sym_LF] = ACTIONS(2364), - [anon_sym_AMP] = ACTIONS(2362), + [anon_sym_SEMI] = ACTIONS(2320), + [anon_sym_LF] = ACTIONS(2322), + [anon_sym_AMP] = ACTIONS(2320), }, - [640] = { - [sym__terminated_statement] = STATE(1107), - [sym_for_statement] = STATE(638), - [sym_while_statement] = STATE(638), - [sym_if_statement] = STATE(638), - [sym_case_statement] = STATE(638), - [sym_function_definition] = STATE(638), - [sym_subshell] = STATE(638), - [sym_pipeline] = STATE(638), - [sym_list] = STATE(638), - [sym_negated_command] = STATE(638), - [sym_test_command] = STATE(638), - [sym_declaration_command] = STATE(638), - [sym_unset_command] = STATE(638), - [sym_command] = STATE(638), + [630] = { + [sym__terminated_statement] = STATE(1076), + [sym_for_statement] = STATE(628), + [sym_while_statement] = STATE(628), + [sym_if_statement] = STATE(628), + [sym_case_statement] = STATE(628), + [sym_function_definition] = STATE(628), + [sym_subshell] = STATE(628), + [sym_pipeline] = STATE(628), + [sym_list] = STATE(628), + [sym_negated_command] = STATE(628), + [sym_test_command] = STATE(628), + [sym_declaration_command] = STATE(628), + [sym_unset_command] = STATE(628), + [sym_command] = STATE(628), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(639), + [sym_variable_assignment] = STATE(629), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -27755,7 +24086,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1107), + [aux_sym_program_repeat1] = STATE(1076), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), @@ -27765,7 +24096,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2324), [anon_sym_BANG] = ACTIONS(23), [anon_sym_LBRACK] = ACTIONS(25), [anon_sym_LBRACK_LBRACK] = ACTIONS(27), @@ -27795,51 +24126,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [641] = { - [anon_sym_LT] = ACTIONS(2368), - [anon_sym_GT] = ACTIONS(2368), - [anon_sym_GT_GT] = ACTIONS(2370), - [anon_sym_AMP_GT] = ACTIONS(2368), - [anon_sym_AMP_GT_GT] = ACTIONS(2370), - [anon_sym_LT_AMP] = ACTIONS(2370), - [anon_sym_GT_AMP] = ACTIONS(2370), + [631] = { + [anon_sym_LT] = ACTIONS(2326), + [anon_sym_GT] = ACTIONS(2326), + [anon_sym_GT_GT] = ACTIONS(2328), + [anon_sym_AMP_GT] = ACTIONS(2326), + [anon_sym_AMP_GT_GT] = ACTIONS(2328), + [anon_sym_LT_AMP] = ACTIONS(2328), + [anon_sym_GT_AMP] = ACTIONS(2328), [sym_comment] = ACTIONS(53), }, - [642] = { - [sym_concatenation] = STATE(1111), - [sym_string] = STATE(1110), - [sym_simple_expansion] = STATE(1110), - [sym_string_expansion] = STATE(1110), - [sym_expansion] = STATE(1110), - [sym_command_substitution] = STATE(1110), - [sym_process_substitution] = STATE(1110), - [sym__special_characters] = ACTIONS(2372), + [632] = { + [sym_concatenation] = STATE(1080), + [sym_string] = STATE(1079), + [sym_simple_expansion] = STATE(1079), + [sym_string_expansion] = STATE(1079), + [sym_expansion] = STATE(1079), + [sym_command_substitution] = STATE(1079), + [sym_process_substitution] = STATE(1079), + [sym__special_characters] = ACTIONS(2330), [anon_sym_DQUOTE] = ACTIONS(629), [anon_sym_DOLLAR] = ACTIONS(189), - [sym_raw_string] = ACTIONS(2374), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1533), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1535), - [anon_sym_BQUOTE] = ACTIONS(1537), - [anon_sym_LT_LPAREN] = ACTIONS(1539), - [anon_sym_GT_LPAREN] = ACTIONS(1539), + [sym_raw_string] = ACTIONS(2332), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1521), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1523), + [anon_sym_BQUOTE] = ACTIONS(1525), + [anon_sym_LT_LPAREN] = ACTIONS(1527), + [anon_sym_GT_LPAREN] = ACTIONS(1527), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2374), + [sym_word] = ACTIONS(2332), }, - [643] = { - [anon_sym_esac] = ACTIONS(2376), - [anon_sym_PIPE] = ACTIONS(2376), - [anon_sym_RPAREN] = ACTIONS(2376), - [anon_sym_SEMI_SEMI] = ACTIONS(2376), - [anon_sym_PIPE_AMP] = ACTIONS(2376), - [anon_sym_AMP_AMP] = ACTIONS(2376), - [anon_sym_PIPE_PIPE] = ACTIONS(2376), + [633] = { + [anon_sym_esac] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2334), + [anon_sym_RPAREN] = ACTIONS(2334), + [anon_sym_SEMI_SEMI] = ACTIONS(2334), + [anon_sym_PIPE_AMP] = ACTIONS(2334), + [anon_sym_AMP_AMP] = ACTIONS(2334), + [anon_sym_PIPE_PIPE] = ACTIONS(2334), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2376), - [anon_sym_LF] = ACTIONS(2378), - [anon_sym_AMP] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2334), + [anon_sym_LF] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2334), }, - [644] = { - [aux_sym_concatenation_repeat1] = STATE(1112), + [634] = { + [aux_sym_concatenation_repeat1] = STATE(1081), [sym_file_descriptor] = ACTIONS(1129), [sym__concat] = ACTIONS(1131), [sym_variable_name] = ACTIONS(1129), @@ -27871,8 +24202,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(1133), }, - [645] = { - [aux_sym_concatenation_repeat1] = STATE(1112), + [635] = { + [aux_sym_concatenation_repeat1] = STATE(1081), [sym_file_descriptor] = ACTIONS(1107), [sym__concat] = ACTIONS(1131), [sym_variable_name] = ACTIONS(1107), @@ -27904,21 +24235,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1107), [anon_sym_AMP] = ACTIONS(1109), }, - [646] = { - [sym_file_redirect] = STATE(1113), - [sym_heredoc_redirect] = STATE(1113), - [sym_heredoc_body] = STATE(602), - [sym_herestring_redirect] = STATE(1113), - [aux_sym_while_statement_repeat1] = STATE(1113), + [636] = { + [sym_file_redirect] = STATE(1082), + [sym_heredoc_redirect] = STATE(1082), + [sym_heredoc_body] = STATE(594), + [sym_herestring_redirect] = STATE(1082), + [aux_sym_while_statement_repeat1] = STATE(1082), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), [sym_file_descriptor] = ACTIONS(483), - [anon_sym_PIPE] = ACTIONS(1175), - [anon_sym_RPAREN] = ACTIONS(1175), - [anon_sym_SEMI_SEMI] = ACTIONS(1175), - [anon_sym_PIPE_AMP] = ACTIONS(1175), - [anon_sym_AMP_AMP] = ACTIONS(1175), - [anon_sym_PIPE_PIPE] = ACTIONS(1175), + [anon_sym_PIPE] = ACTIONS(1163), + [anon_sym_RPAREN] = ACTIONS(1163), + [anon_sym_SEMI_SEMI] = ACTIONS(1163), + [anon_sym_PIPE_AMP] = ACTIONS(1163), + [anon_sym_AMP_AMP] = ACTIONS(1163), + [anon_sym_PIPE_PIPE] = ACTIONS(1163), [anon_sym_LT] = ACTIONS(487), [anon_sym_GT] = ACTIONS(487), [anon_sym_GT_GT] = ACTIONS(487), @@ -27930,87 +24261,87 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(349), [anon_sym_LT_LT_LT] = ACTIONS(489), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_LF] = ACTIONS(1177), - [anon_sym_AMP] = ACTIONS(1175), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym_LF] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1163), }, - [647] = { - [anon_sym_RPAREN] = ACTIONS(2380), + [637] = { + [anon_sym_RPAREN] = ACTIONS(2338), [sym_comment] = ACTIONS(53), }, - [648] = { - [sym_file_redirect] = STATE(643), - [sym_file_descriptor] = ACTIONS(2382), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_SEMI_SEMI] = ACTIONS(1245), - [anon_sym_PIPE_AMP] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_GT_GT] = ACTIONS(2384), - [anon_sym_AMP_GT] = ACTIONS(2384), - [anon_sym_AMP_GT_GT] = ACTIONS(2384), - [anon_sym_LT_AMP] = ACTIONS(2384), - [anon_sym_GT_AMP] = ACTIONS(2384), + [638] = { + [sym_file_redirect] = STATE(633), + [sym_file_descriptor] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(1233), + [anon_sym_RPAREN] = ACTIONS(1233), + [anon_sym_SEMI_SEMI] = ACTIONS(1233), + [anon_sym_PIPE_AMP] = ACTIONS(1233), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_LT] = ACTIONS(2342), + [anon_sym_GT] = ACTIONS(2342), + [anon_sym_GT_GT] = ACTIONS(2342), + [anon_sym_AMP_GT] = ACTIONS(2342), + [anon_sym_AMP_GT_GT] = ACTIONS(2342), + [anon_sym_LT_AMP] = ACTIONS(2342), + [anon_sym_GT_AMP] = ACTIONS(2342), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_LF] = ACTIONS(1249), - [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_LF] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(1233), }, - [649] = { - [sym_file_redirect] = STATE(1120), - [sym_heredoc_redirect] = STATE(1120), - [sym_herestring_redirect] = STATE(1120), - [aux_sym_while_statement_repeat1] = STATE(1120), - [sym_file_descriptor] = ACTIONS(2386), - [anon_sym_PIPE] = ACTIONS(1353), - [anon_sym_RPAREN] = ACTIONS(1353), - [anon_sym_SEMI_SEMI] = ACTIONS(1353), - [anon_sym_PIPE_AMP] = ACTIONS(1353), - [anon_sym_AMP_AMP] = ACTIONS(1353), - [anon_sym_PIPE_PIPE] = ACTIONS(1353), - [anon_sym_LT] = ACTIONS(2388), - [anon_sym_GT] = ACTIONS(2388), - [anon_sym_GT_GT] = ACTIONS(2388), - [anon_sym_AMP_GT] = ACTIONS(2388), - [anon_sym_AMP_GT_GT] = ACTIONS(2388), - [anon_sym_LT_AMP] = ACTIONS(2388), - [anon_sym_GT_AMP] = ACTIONS(2388), - [anon_sym_LT_LT] = ACTIONS(1357), - [anon_sym_LT_LT_DASH] = ACTIONS(1357), - [anon_sym_LT_LT_LT] = ACTIONS(2390), + [639] = { + [sym_file_redirect] = STATE(1089), + [sym_heredoc_redirect] = STATE(1089), + [sym_herestring_redirect] = STATE(1089), + [aux_sym_while_statement_repeat1] = STATE(1089), + [sym_file_descriptor] = ACTIONS(2344), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_RPAREN] = ACTIONS(1341), + [anon_sym_SEMI_SEMI] = ACTIONS(1341), + [anon_sym_PIPE_AMP] = ACTIONS(1341), + [anon_sym_AMP_AMP] = ACTIONS(1341), + [anon_sym_PIPE_PIPE] = ACTIONS(1341), + [anon_sym_LT] = ACTIONS(2346), + [anon_sym_GT] = ACTIONS(2346), + [anon_sym_GT_GT] = ACTIONS(2346), + [anon_sym_AMP_GT] = ACTIONS(2346), + [anon_sym_AMP_GT_GT] = ACTIONS(2346), + [anon_sym_LT_AMP] = ACTIONS(2346), + [anon_sym_GT_AMP] = ACTIONS(2346), + [anon_sym_LT_LT] = ACTIONS(1345), + [anon_sym_LT_LT_DASH] = ACTIONS(1345), + [anon_sym_LT_LT_LT] = ACTIONS(2348), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_LF] = ACTIONS(1361), - [anon_sym_AMP] = ACTIONS(1353), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_LF] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1341), }, - [650] = { - [sym_concatenation] = STATE(729), - [sym_string] = STATE(1122), - [sym_array] = STATE(729), - [sym_simple_expansion] = STATE(1122), - [sym_string_expansion] = STATE(1122), - [sym_expansion] = STATE(1122), - [sym_command_substitution] = STATE(1122), - [sym_process_substitution] = STATE(1122), - [sym__empty_value] = ACTIONS(1439), - [anon_sym_LPAREN] = ACTIONS(1441), - [sym__special_characters] = ACTIONS(2392), + [640] = { + [sym_concatenation] = STATE(719), + [sym_string] = STATE(1091), + [sym_array] = STATE(719), + [sym_simple_expansion] = STATE(1091), + [sym_string_expansion] = STATE(1091), + [sym_expansion] = STATE(1091), + [sym_command_substitution] = STATE(1091), + [sym_process_substitution] = STATE(1091), + [sym__empty_value] = ACTIONS(1427), + [anon_sym_LPAREN] = ACTIONS(1429), + [sym__special_characters] = ACTIONS(2350), [anon_sym_DQUOTE] = ACTIONS(589), [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(2394), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1447), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1449), - [anon_sym_BQUOTE] = ACTIONS(1451), - [anon_sym_LT_LPAREN] = ACTIONS(1453), - [anon_sym_GT_LPAREN] = ACTIONS(1453), + [sym_raw_string] = ACTIONS(2352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1435), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1437), + [anon_sym_BQUOTE] = ACTIONS(1439), + [anon_sym_LT_LPAREN] = ACTIONS(1441), + [anon_sym_GT_LPAREN] = ACTIONS(1441), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2394), + [sym_word] = ACTIONS(2352), }, - [651] = { - [aux_sym_concatenation_repeat1] = STATE(1123), + [641] = { + [aux_sym_concatenation_repeat1] = STATE(1092), [sym__concat] = ACTIONS(581), [sym_variable_name] = ACTIONS(693), [anon_sym_PIPE] = ACTIONS(695), @@ -28035,42 +24366,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(693), [anon_sym_AMP] = ACTIONS(695), }, - [652] = { - [sym_variable_assignment] = STATE(652), + [642] = { + [sym_variable_assignment] = STATE(642), [sym_subscript] = STATE(261), - [sym_concatenation] = STATE(652), + [sym_concatenation] = STATE(642), [sym_string] = STATE(260), [sym_simple_expansion] = STATE(260), [sym_string_expansion] = STATE(260), [sym_expansion] = STATE(260), [sym_command_substitution] = STATE(260), [sym_process_substitution] = STATE(260), - [aux_sym_declaration_command_repeat1] = STATE(652), - [sym_variable_name] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(1500), - [anon_sym_RPAREN] = ACTIONS(1500), - [anon_sym_SEMI_SEMI] = ACTIONS(1500), - [anon_sym_PIPE_AMP] = ACTIONS(1500), - [anon_sym_AMP_AMP] = ACTIONS(1500), - [anon_sym_PIPE_PIPE] = ACTIONS(1500), - [sym__special_characters] = ACTIONS(2399), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_DOLLAR] = ACTIONS(1508), - [sym_raw_string] = ACTIONS(2402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1514), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1517), - [anon_sym_BQUOTE] = ACTIONS(1520), - [anon_sym_LT_LPAREN] = ACTIONS(1523), - [anon_sym_GT_LPAREN] = ACTIONS(1523), + [aux_sym_declaration_command_repeat1] = STATE(642), + [sym_variable_name] = ACTIONS(2354), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1488), + [anon_sym_SEMI_SEMI] = ACTIONS(1488), + [anon_sym_PIPE_AMP] = ACTIONS(1488), + [anon_sym_AMP_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1488), + [sym__special_characters] = ACTIONS(2357), + [anon_sym_DQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR] = ACTIONS(1496), + [sym_raw_string] = ACTIONS(2360), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1502), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1505), + [anon_sym_BQUOTE] = ACTIONS(1508), + [anon_sym_LT_LPAREN] = ACTIONS(1511), + [anon_sym_GT_LPAREN] = ACTIONS(1511), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1526), - [sym_word] = ACTIONS(2402), - [anon_sym_SEMI] = ACTIONS(1500), - [anon_sym_LF] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1500), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1514), + [sym_word] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym_LF] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(1488), }, - [653] = { - [aux_sym_concatenation_repeat1] = STATE(1124), + [643] = { + [aux_sym_concatenation_repeat1] = STATE(1093), [sym__concat] = ACTIONS(621), [anon_sym_PIPE] = ACTIONS(695), [anon_sym_RPAREN] = ACTIONS(695), @@ -28094,115 +24425,115 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(693), [anon_sym_AMP] = ACTIONS(695), }, - [654] = { - [sym_concatenation] = STATE(654), + [644] = { + [sym_concatenation] = STATE(644), [sym_string] = STATE(264), [sym_simple_expansion] = STATE(264), [sym_string_expansion] = STATE(264), [sym_expansion] = STATE(264), [sym_command_substitution] = STATE(264), [sym_process_substitution] = STATE(264), - [aux_sym_unset_command_repeat1] = STATE(654), - [anon_sym_PIPE] = ACTIONS(1581), - [anon_sym_RPAREN] = ACTIONS(1581), - [anon_sym_SEMI_SEMI] = ACTIONS(1581), - [anon_sym_PIPE_AMP] = ACTIONS(1581), - [anon_sym_AMP_AMP] = ACTIONS(1581), - [anon_sym_PIPE_PIPE] = ACTIONS(1581), - [sym__special_characters] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(1586), - [anon_sym_DOLLAR] = ACTIONS(1589), - [sym_raw_string] = ACTIONS(2408), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1595), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1598), - [anon_sym_BQUOTE] = ACTIONS(1601), - [anon_sym_LT_LPAREN] = ACTIONS(1604), - [anon_sym_GT_LPAREN] = ACTIONS(1604), + [aux_sym_unset_command_repeat1] = STATE(644), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_RPAREN] = ACTIONS(1569), + [anon_sym_SEMI_SEMI] = ACTIONS(1569), + [anon_sym_PIPE_AMP] = ACTIONS(1569), + [anon_sym_AMP_AMP] = ACTIONS(1569), + [anon_sym_PIPE_PIPE] = ACTIONS(1569), + [sym__special_characters] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR] = ACTIONS(1577), + [sym_raw_string] = ACTIONS(2366), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1583), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1586), + [anon_sym_BQUOTE] = ACTIONS(1589), + [anon_sym_LT_LPAREN] = ACTIONS(1592), + [anon_sym_GT_LPAREN] = ACTIONS(1592), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1607), - [sym_word] = ACTIONS(2408), - [anon_sym_SEMI] = ACTIONS(1581), - [anon_sym_LF] = ACTIONS(1610), - [anon_sym_AMP] = ACTIONS(1581), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1595), + [sym_word] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(1569), + [anon_sym_LF] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1569), }, - [655] = { - [aux_sym_concatenation_repeat1] = STATE(655), - [sym__simple_heredoc_body] = ACTIONS(1654), - [sym__heredoc_body_beginning] = ACTIONS(1654), - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(1658), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [anon_sym_EQ_TILDE] = ACTIONS(1656), - [anon_sym_EQ_EQ] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1656), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1656), - [anon_sym_LT_AMP] = ACTIONS(1656), - [anon_sym_GT_AMP] = ACTIONS(1656), - [anon_sym_LT_LT] = ACTIONS(1656), - [anon_sym_LT_LT_DASH] = ACTIONS(1656), - [anon_sym_LT_LT_LT] = ACTIONS(1656), - [sym__special_characters] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1656), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1656), - [anon_sym_BQUOTE] = ACTIONS(1656), - [anon_sym_LT_LPAREN] = ACTIONS(1656), - [anon_sym_GT_LPAREN] = ACTIONS(1656), + [645] = { + [aux_sym_concatenation_repeat1] = STATE(645), + [sym__simple_heredoc_body] = ACTIONS(1642), + [sym__heredoc_body_beginning] = ACTIONS(1642), + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(1646), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [anon_sym_EQ_TILDE] = ACTIONS(1644), + [anon_sym_EQ_EQ] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1644), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1644), + [anon_sym_LT_AMP] = ACTIONS(1644), + [anon_sym_GT_AMP] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1644), + [anon_sym_LT_LT_DASH] = ACTIONS(1644), + [anon_sym_LT_LT_LT] = ACTIONS(1644), + [sym__special_characters] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1644), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1644), + [anon_sym_LT_LPAREN] = ACTIONS(1644), + [anon_sym_GT_LPAREN] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), + [sym_word] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, - [656] = { - [sym_compound_statement] = STATE(1125), + [646] = { + [sym_compound_statement] = STATE(1094), [anon_sym_LBRACE] = ACTIONS(455), [sym_comment] = ACTIONS(53), }, - [657] = { - [anon_sym_esac] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_SEMI_SEMI] = ACTIONS(2411), - [anon_sym_PIPE_AMP] = ACTIONS(2411), - [anon_sym_AMP_AMP] = ACTIONS(2411), - [anon_sym_PIPE_PIPE] = ACTIONS(2411), + [647] = { + [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(177), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_LF] = ACTIONS(2413), - [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2369), + [anon_sym_LF] = ACTIONS(2371), + [anon_sym_AMP] = ACTIONS(2369), }, - [658] = { + [648] = { [anon_sym_PIPE] = ACTIONS(473), - [anon_sym_RPAREN] = ACTIONS(2026), - [anon_sym_SEMI_SEMI] = ACTIONS(2026), + [anon_sym_RPAREN] = ACTIONS(2014), + [anon_sym_SEMI_SEMI] = ACTIONS(2014), [anon_sym_PIPE_AMP] = ACTIONS(473), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2014), + [anon_sym_PIPE_PIPE] = ACTIONS(2014), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2026), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_LF] = ACTIONS(2016), + [anon_sym_AMP] = ACTIONS(2014), }, - [659] = { + [649] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(473), - [anon_sym_RPAREN] = ACTIONS(2026), - [anon_sym_SEMI_SEMI] = ACTIONS(2026), + [anon_sym_RPAREN] = ACTIONS(2014), + [anon_sym_SEMI_SEMI] = ACTIONS(2014), [anon_sym_PIPE_AMP] = ACTIONS(473), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2014), + [anon_sym_PIPE_PIPE] = ACTIONS(2014), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(371), @@ -28221,110 +24552,110 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(371), [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(2026), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_LF] = ACTIONS(2016), + [anon_sym_AMP] = ACTIONS(2014), }, - [660] = { - [sym_concatenation] = STATE(991), - [sym_string] = STATE(1127), - [sym_simple_expansion] = STATE(1127), - [sym_string_expansion] = STATE(1127), - [sym_expansion] = STATE(1127), - [sym_command_substitution] = STATE(1127), - [sym_process_substitution] = STATE(1127), - [sym__special_characters] = ACTIONS(2415), + [650] = { + [sym_concatenation] = STATE(981), + [sym_string] = STATE(1096), + [sym_simple_expansion] = STATE(1096), + [sym_string_expansion] = STATE(1096), + [sym_expansion] = STATE(1096), + [sym_command_substitution] = STATE(1096), + [sym_process_substitution] = STATE(1096), + [sym__special_characters] = ACTIONS(2373), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2417), + [sym_raw_string] = ACTIONS(2375), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2417), + [sym_word] = ACTIONS(2375), }, - [661] = { + [651] = { [aux_sym_concatenation_repeat1] = STATE(266), - [sym__simple_heredoc_body] = ACTIONS(2058), - [sym__heredoc_body_beginning] = ACTIONS(2058), - [sym_file_descriptor] = ACTIONS(2058), + [sym__simple_heredoc_body] = ACTIONS(2046), + [sym__heredoc_body_beginning] = ACTIONS(2046), + [sym_file_descriptor] = ACTIONS(2046), [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_RPAREN] = ACTIONS(2060), - [anon_sym_SEMI_SEMI] = ACTIONS(2060), - [anon_sym_PIPE_AMP] = ACTIONS(2060), - [anon_sym_AMP_AMP] = ACTIONS(2060), - [anon_sym_PIPE_PIPE] = ACTIONS(2060), - [anon_sym_EQ_TILDE] = ACTIONS(2060), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_GT] = ACTIONS(2060), - [anon_sym_AMP_GT] = ACTIONS(2060), - [anon_sym_AMP_GT_GT] = ACTIONS(2060), - [anon_sym_LT_AMP] = ACTIONS(2060), - [anon_sym_GT_AMP] = ACTIONS(2060), - [anon_sym_LT_LT] = ACTIONS(2060), - [anon_sym_LT_LT_DASH] = ACTIONS(2060), - [anon_sym_LT_LT_LT] = ACTIONS(2060), - [sym__special_characters] = ACTIONS(2060), - [anon_sym_DQUOTE] = ACTIONS(2060), - [anon_sym_DOLLAR] = ACTIONS(2060), - [sym_raw_string] = ACTIONS(2060), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2060), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2060), - [anon_sym_BQUOTE] = ACTIONS(2060), - [anon_sym_LT_LPAREN] = ACTIONS(2060), - [anon_sym_GT_LPAREN] = ACTIONS(2060), + [anon_sym_PIPE] = ACTIONS(2048), + [anon_sym_RPAREN] = ACTIONS(2048), + [anon_sym_SEMI_SEMI] = ACTIONS(2048), + [anon_sym_PIPE_AMP] = ACTIONS(2048), + [anon_sym_AMP_AMP] = ACTIONS(2048), + [anon_sym_PIPE_PIPE] = ACTIONS(2048), + [anon_sym_EQ_TILDE] = ACTIONS(2048), + [anon_sym_EQ_EQ] = ACTIONS(2048), + [anon_sym_LT] = ACTIONS(2048), + [anon_sym_GT] = ACTIONS(2048), + [anon_sym_GT_GT] = ACTIONS(2048), + [anon_sym_AMP_GT] = ACTIONS(2048), + [anon_sym_AMP_GT_GT] = ACTIONS(2048), + [anon_sym_LT_AMP] = ACTIONS(2048), + [anon_sym_GT_AMP] = ACTIONS(2048), + [anon_sym_LT_LT] = ACTIONS(2048), + [anon_sym_LT_LT_DASH] = ACTIONS(2048), + [anon_sym_LT_LT_LT] = ACTIONS(2048), + [sym__special_characters] = ACTIONS(2048), + [anon_sym_DQUOTE] = ACTIONS(2048), + [anon_sym_DOLLAR] = ACTIONS(2048), + [sym_raw_string] = ACTIONS(2048), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2048), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2048), + [anon_sym_BQUOTE] = ACTIONS(2048), + [anon_sym_LT_LPAREN] = ACTIONS(2048), + [anon_sym_GT_LPAREN] = ACTIONS(2048), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_LF] = ACTIONS(2058), - [anon_sym_AMP] = ACTIONS(2060), + [sym_word] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_LF] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2048), }, - [662] = { + [652] = { [aux_sym_concatenation_repeat1] = STATE(266), - [sym__simple_heredoc_body] = ACTIONS(2062), - [sym__heredoc_body_beginning] = ACTIONS(2062), - [sym_file_descriptor] = ACTIONS(2062), + [sym__simple_heredoc_body] = ACTIONS(2050), + [sym__heredoc_body_beginning] = ACTIONS(2050), + [sym_file_descriptor] = ACTIONS(2050), [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(2064), - [anon_sym_RPAREN] = ACTIONS(2064), - [anon_sym_SEMI_SEMI] = ACTIONS(2064), - [anon_sym_PIPE_AMP] = ACTIONS(2064), - [anon_sym_AMP_AMP] = ACTIONS(2064), - [anon_sym_PIPE_PIPE] = ACTIONS(2064), - [anon_sym_EQ_TILDE] = ACTIONS(2064), - [anon_sym_EQ_EQ] = ACTIONS(2064), - [anon_sym_LT] = ACTIONS(2064), - [anon_sym_GT] = ACTIONS(2064), - [anon_sym_GT_GT] = ACTIONS(2064), - [anon_sym_AMP_GT] = ACTIONS(2064), - [anon_sym_AMP_GT_GT] = ACTIONS(2064), - [anon_sym_LT_AMP] = ACTIONS(2064), - [anon_sym_GT_AMP] = ACTIONS(2064), - [anon_sym_LT_LT] = ACTIONS(2064), - [anon_sym_LT_LT_DASH] = ACTIONS(2064), - [anon_sym_LT_LT_LT] = ACTIONS(2064), - [sym__special_characters] = ACTIONS(2064), - [anon_sym_DQUOTE] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2064), - [sym_raw_string] = ACTIONS(2064), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2064), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2064), - [anon_sym_BQUOTE] = ACTIONS(2064), - [anon_sym_LT_LPAREN] = ACTIONS(2064), - [anon_sym_GT_LPAREN] = ACTIONS(2064), + [anon_sym_PIPE] = ACTIONS(2052), + [anon_sym_RPAREN] = ACTIONS(2052), + [anon_sym_SEMI_SEMI] = ACTIONS(2052), + [anon_sym_PIPE_AMP] = ACTIONS(2052), + [anon_sym_AMP_AMP] = ACTIONS(2052), + [anon_sym_PIPE_PIPE] = ACTIONS(2052), + [anon_sym_EQ_TILDE] = ACTIONS(2052), + [anon_sym_EQ_EQ] = ACTIONS(2052), + [anon_sym_LT] = ACTIONS(2052), + [anon_sym_GT] = ACTIONS(2052), + [anon_sym_GT_GT] = ACTIONS(2052), + [anon_sym_AMP_GT] = ACTIONS(2052), + [anon_sym_AMP_GT_GT] = ACTIONS(2052), + [anon_sym_LT_AMP] = ACTIONS(2052), + [anon_sym_GT_AMP] = ACTIONS(2052), + [anon_sym_LT_LT] = ACTIONS(2052), + [anon_sym_LT_LT_DASH] = ACTIONS(2052), + [anon_sym_LT_LT_LT] = ACTIONS(2052), + [sym__special_characters] = ACTIONS(2052), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_DOLLAR] = ACTIONS(2052), + [sym_raw_string] = ACTIONS(2052), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2052), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2052), + [anon_sym_BQUOTE] = ACTIONS(2052), + [anon_sym_LT_LPAREN] = ACTIONS(2052), + [anon_sym_GT_LPAREN] = ACTIONS(2052), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2064), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_LF] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2064), + [sym_word] = ACTIONS(2052), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_LF] = ACTIONS(2050), + [anon_sym_AMP] = ACTIONS(2052), }, - [663] = { - [aux_sym_concatenation_repeat1] = STATE(1128), + [653] = { + [aux_sym_concatenation_repeat1] = STATE(1097), [sym__simple_heredoc_body] = ACTIONS(661), [sym__heredoc_body_beginning] = ACTIONS(661), [sym_file_descriptor] = ACTIONS(661), @@ -28350,8 +24681,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(661), [anon_sym_AMP] = ACTIONS(665), }, - [664] = { - [aux_sym_concatenation_repeat1] = STATE(1128), + [654] = { + [aux_sym_concatenation_repeat1] = STATE(1097), [sym__simple_heredoc_body] = ACTIONS(677), [sym__heredoc_body_beginning] = ACTIONS(677), [sym_file_descriptor] = ACTIONS(677), @@ -28377,104 +24708,104 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(677), [anon_sym_AMP] = ACTIONS(679), }, - [665] = { - [aux_sym_concatenation_repeat1] = STATE(1128), + [655] = { + [aux_sym_concatenation_repeat1] = STATE(1097), + [sym__simple_heredoc_body] = ACTIONS(2058), + [sym__heredoc_body_beginning] = ACTIONS(2058), + [sym_file_descriptor] = ACTIONS(2058), + [sym__concat] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(2060), + [anon_sym_RPAREN] = ACTIONS(2060), + [anon_sym_SEMI_SEMI] = ACTIONS(2060), + [anon_sym_PIPE_AMP] = ACTIONS(2060), + [anon_sym_AMP_AMP] = ACTIONS(2060), + [anon_sym_PIPE_PIPE] = ACTIONS(2060), + [anon_sym_LT] = ACTIONS(2060), + [anon_sym_GT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2060), + [anon_sym_AMP_GT] = ACTIONS(2060), + [anon_sym_AMP_GT_GT] = ACTIONS(2060), + [anon_sym_LT_AMP] = ACTIONS(2060), + [anon_sym_GT_AMP] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_LT_LT_DASH] = ACTIONS(2060), + [anon_sym_LT_LT_LT] = ACTIONS(2060), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_LF] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2060), + }, + [656] = { + [aux_sym_concatenation_repeat1] = STATE(1097), + [sym__simple_heredoc_body] = ACTIONS(2062), + [sym__heredoc_body_beginning] = ACTIONS(2062), + [sym_file_descriptor] = ACTIONS(2062), + [sym__concat] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(2064), + [anon_sym_RPAREN] = ACTIONS(2064), + [anon_sym_SEMI_SEMI] = ACTIONS(2064), + [anon_sym_PIPE_AMP] = ACTIONS(2064), + [anon_sym_AMP_AMP] = ACTIONS(2064), + [anon_sym_PIPE_PIPE] = ACTIONS(2064), + [anon_sym_LT] = ACTIONS(2064), + [anon_sym_GT] = ACTIONS(2064), + [anon_sym_GT_GT] = ACTIONS(2064), + [anon_sym_AMP_GT] = ACTIONS(2064), + [anon_sym_AMP_GT_GT] = ACTIONS(2064), + [anon_sym_LT_AMP] = ACTIONS(2064), + [anon_sym_GT_AMP] = ACTIONS(2064), + [anon_sym_LT_LT] = ACTIONS(2064), + [anon_sym_LT_LT_DASH] = ACTIONS(2064), + [anon_sym_LT_LT_LT] = ACTIONS(2064), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2064), + [anon_sym_LF] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2064), + }, + [657] = { + [sym_file_redirect] = STATE(657), + [sym_heredoc_redirect] = STATE(657), + [sym_herestring_redirect] = STATE(657), + [aux_sym_while_statement_repeat1] = STATE(657), [sym__simple_heredoc_body] = ACTIONS(2070), [sym__heredoc_body_beginning] = ACTIONS(2070), - [sym_file_descriptor] = ACTIONS(2070), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_RPAREN] = ACTIONS(2072), - [anon_sym_SEMI_SEMI] = ACTIONS(2072), - [anon_sym_PIPE_AMP] = ACTIONS(2072), - [anon_sym_AMP_AMP] = ACTIONS(2072), - [anon_sym_PIPE_PIPE] = ACTIONS(2072), - [anon_sym_LT] = ACTIONS(2072), - [anon_sym_GT] = ACTIONS(2072), - [anon_sym_GT_GT] = ACTIONS(2072), - [anon_sym_AMP_GT] = ACTIONS(2072), - [anon_sym_AMP_GT_GT] = ACTIONS(2072), - [anon_sym_LT_AMP] = ACTIONS(2072), - [anon_sym_GT_AMP] = ACTIONS(2072), - [anon_sym_LT_LT] = ACTIONS(2072), - [anon_sym_LT_LT_DASH] = ACTIONS(2072), - [anon_sym_LT_LT_LT] = ACTIONS(2072), + [sym_file_descriptor] = ACTIONS(2377), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_RPAREN] = ACTIONS(2075), + [anon_sym_SEMI_SEMI] = ACTIONS(2075), + [anon_sym_PIPE_AMP] = ACTIONS(2075), + [anon_sym_AMP_AMP] = ACTIONS(2075), + [anon_sym_PIPE_PIPE] = ACTIONS(2075), + [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(2080), + [anon_sym_LT_LT_DASH] = ACTIONS(2080), + [anon_sym_LT_LT_LT] = ACTIONS(2383), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2075), [anon_sym_LF] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(2072), + [anon_sym_AMP] = ACTIONS(2075), }, - [666] = { - [aux_sym_concatenation_repeat1] = STATE(1128), - [sym__simple_heredoc_body] = ACTIONS(2074), - [sym__heredoc_body_beginning] = ACTIONS(2074), - [sym_file_descriptor] = ACTIONS(2074), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2076), - [anon_sym_SEMI_SEMI] = ACTIONS(2076), - [anon_sym_PIPE_AMP] = ACTIONS(2076), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_GT_GT] = ACTIONS(2076), - [anon_sym_AMP_GT] = ACTIONS(2076), - [anon_sym_AMP_GT_GT] = ACTIONS(2076), - [anon_sym_LT_AMP] = ACTIONS(2076), - [anon_sym_GT_AMP] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(2076), - [anon_sym_LT_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT_LT] = ACTIONS(2076), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2076), - }, - [667] = { - [sym_file_redirect] = STATE(667), - [sym_heredoc_redirect] = STATE(667), - [sym_herestring_redirect] = STATE(667), - [aux_sym_while_statement_repeat1] = STATE(667), - [sym__simple_heredoc_body] = ACTIONS(2082), - [sym__heredoc_body_beginning] = ACTIONS(2082), - [sym_file_descriptor] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2087), - [anon_sym_RPAREN] = ACTIONS(2087), - [anon_sym_SEMI_SEMI] = ACTIONS(2087), - [anon_sym_PIPE_AMP] = ACTIONS(2087), - [anon_sym_AMP_AMP] = ACTIONS(2087), - [anon_sym_PIPE_PIPE] = ACTIONS(2087), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_GT_GT] = ACTIONS(2422), - [anon_sym_AMP_GT] = ACTIONS(2422), - [anon_sym_AMP_GT_GT] = ACTIONS(2422), - [anon_sym_LT_AMP] = ACTIONS(2422), - [anon_sym_GT_AMP] = ACTIONS(2422), - [anon_sym_LT_LT] = ACTIONS(2092), - [anon_sym_LT_LT_DASH] = ACTIONS(2092), - [anon_sym_LT_LT_LT] = ACTIONS(2425), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym_LF] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2087), - }, - [668] = { - [sym_file_redirect] = STATE(667), - [sym_heredoc_redirect] = STATE(667), - [sym_heredoc_body] = STATE(993), - [sym_herestring_redirect] = STATE(667), - [aux_sym_while_statement_repeat1] = STATE(667), + [658] = { + [sym_file_redirect] = STATE(657), + [sym_heredoc_redirect] = STATE(657), + [sym_heredoc_body] = STATE(983), + [sym_herestring_redirect] = STATE(657), + [aux_sym_while_statement_repeat1] = STATE(657), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), [sym_file_descriptor] = ACTIONS(483), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_RPAREN] = ACTIONS(2078), - [anon_sym_SEMI_SEMI] = ACTIONS(2078), - [anon_sym_PIPE_AMP] = ACTIONS(2078), - [anon_sym_AMP_AMP] = ACTIONS(2078), - [anon_sym_PIPE_PIPE] = ACTIONS(2078), + [anon_sym_PIPE] = ACTIONS(2066), + [anon_sym_RPAREN] = ACTIONS(2066), + [anon_sym_SEMI_SEMI] = ACTIONS(2066), + [anon_sym_PIPE_AMP] = ACTIONS(2066), + [anon_sym_AMP_AMP] = ACTIONS(2066), + [anon_sym_PIPE_PIPE] = ACTIONS(2066), [anon_sym_LT] = ACTIONS(487), [anon_sym_GT] = ACTIONS(487), [anon_sym_GT_GT] = ACTIONS(487), @@ -28486,63 +24817,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(349), [anon_sym_LT_LT_LT] = ACTIONS(489), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_LF] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2078), + [anon_sym_SEMI] = ACTIONS(2066), + [anon_sym_LF] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2066), }, - [669] = { - [sym_concatenation] = STATE(669), + [659] = { + [sym_concatenation] = STATE(659), [sym_string] = STATE(277), [sym_simple_expansion] = STATE(277), [sym_string_expansion] = STATE(277), [sym_expansion] = STATE(277), [sym_command_substitution] = STATE(277), [sym_process_substitution] = STATE(277), - [aux_sym_command_repeat2] = STATE(669), - [sym__simple_heredoc_body] = ACTIONS(2062), - [sym__heredoc_body_beginning] = ACTIONS(2062), - [sym_file_descriptor] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2064), - [anon_sym_RPAREN] = ACTIONS(2064), - [anon_sym_SEMI_SEMI] = ACTIONS(2064), - [anon_sym_PIPE_AMP] = ACTIONS(2064), - [anon_sym_AMP_AMP] = ACTIONS(2064), - [anon_sym_PIPE_PIPE] = ACTIONS(2064), - [anon_sym_EQ_TILDE] = ACTIONS(2428), - [anon_sym_EQ_EQ] = ACTIONS(2428), - [anon_sym_LT] = ACTIONS(2064), - [anon_sym_GT] = ACTIONS(2064), - [anon_sym_GT_GT] = ACTIONS(2064), - [anon_sym_AMP_GT] = ACTIONS(2064), - [anon_sym_AMP_GT_GT] = ACTIONS(2064), - [anon_sym_LT_AMP] = ACTIONS(2064), - [anon_sym_GT_AMP] = ACTIONS(2064), - [anon_sym_LT_LT] = ACTIONS(2064), - [anon_sym_LT_LT_DASH] = ACTIONS(2064), - [anon_sym_LT_LT_LT] = ACTIONS(2064), - [sym__special_characters] = ACTIONS(2431), - [anon_sym_DQUOTE] = ACTIONS(2104), - [anon_sym_DOLLAR] = ACTIONS(2107), - [sym_raw_string] = ACTIONS(2434), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2116), - [anon_sym_BQUOTE] = ACTIONS(2119), - [anon_sym_LT_LPAREN] = ACTIONS(2122), - [anon_sym_GT_LPAREN] = ACTIONS(2122), + [aux_sym_command_repeat2] = STATE(659), + [sym__simple_heredoc_body] = ACTIONS(2050), + [sym__heredoc_body_beginning] = ACTIONS(2050), + [sym_file_descriptor] = ACTIONS(2050), + [anon_sym_PIPE] = ACTIONS(2052), + [anon_sym_RPAREN] = ACTIONS(2052), + [anon_sym_SEMI_SEMI] = ACTIONS(2052), + [anon_sym_PIPE_AMP] = ACTIONS(2052), + [anon_sym_AMP_AMP] = ACTIONS(2052), + [anon_sym_PIPE_PIPE] = ACTIONS(2052), + [anon_sym_EQ_TILDE] = ACTIONS(2386), + [anon_sym_EQ_EQ] = ACTIONS(2386), + [anon_sym_LT] = ACTIONS(2052), + [anon_sym_GT] = ACTIONS(2052), + [anon_sym_GT_GT] = ACTIONS(2052), + [anon_sym_AMP_GT] = ACTIONS(2052), + [anon_sym_AMP_GT_GT] = ACTIONS(2052), + [anon_sym_LT_AMP] = ACTIONS(2052), + [anon_sym_GT_AMP] = ACTIONS(2052), + [anon_sym_LT_LT] = ACTIONS(2052), + [anon_sym_LT_LT_DASH] = ACTIONS(2052), + [anon_sym_LT_LT_LT] = ACTIONS(2052), + [sym__special_characters] = ACTIONS(2389), + [anon_sym_DQUOTE] = ACTIONS(2092), + [anon_sym_DOLLAR] = ACTIONS(2095), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2101), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2104), + [anon_sym_BQUOTE] = ACTIONS(2107), + [anon_sym_LT_LPAREN] = ACTIONS(2110), + [anon_sym_GT_LPAREN] = ACTIONS(2110), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2434), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_LF] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2064), + [sym_word] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_LF] = ACTIONS(2050), + [anon_sym_AMP] = ACTIONS(2052), }, - [670] = { + [660] = { [sym_file_descriptor] = ACTIONS(951), [sym_variable_name] = ACTIONS(951), [anon_sym_for] = ACTIONS(953), [anon_sym_while] = ACTIONS(953), [anon_sym_if] = ACTIONS(953), [anon_sym_case] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(2437), + [anon_sym_RPAREN] = ACTIONS(2395), [anon_sym_function] = ACTIONS(953), [anon_sym_LPAREN] = ACTIONS(951), [anon_sym_BANG] = ACTIONS(953), @@ -28574,29 +24905,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(953), }, - [671] = { - [sym_file_redirect] = STATE(1130), - [sym_heredoc_redirect] = STATE(1130), - [sym_heredoc_body] = STATE(993), - [sym_herestring_redirect] = STATE(1130), - [sym_concatenation] = STATE(669), + [661] = { + [sym_file_redirect] = STATE(1099), + [sym_heredoc_redirect] = STATE(1099), + [sym_heredoc_body] = STATE(983), + [sym_herestring_redirect] = STATE(1099), + [sym_concatenation] = STATE(659), [sym_string] = STATE(277), [sym_simple_expansion] = STATE(277), [sym_string_expansion] = STATE(277), [sym_expansion] = STATE(277), [sym_command_substitution] = STATE(277), [sym_process_substitution] = STATE(277), - [aux_sym_while_statement_repeat1] = STATE(1130), - [aux_sym_command_repeat2] = STATE(669), + [aux_sym_while_statement_repeat1] = STATE(1099), + [aux_sym_command_repeat2] = STATE(659), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), [sym_file_descriptor] = ACTIONS(483), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_RPAREN] = ACTIONS(2078), - [anon_sym_SEMI_SEMI] = ACTIONS(2078), - [anon_sym_PIPE_AMP] = ACTIONS(2078), - [anon_sym_AMP_AMP] = ACTIONS(2078), - [anon_sym_PIPE_PIPE] = ACTIONS(2078), + [anon_sym_PIPE] = ACTIONS(2066), + [anon_sym_RPAREN] = ACTIONS(2066), + [anon_sym_SEMI_SEMI] = ACTIONS(2066), + [anon_sym_PIPE_AMP] = ACTIONS(2066), + [anon_sym_AMP_AMP] = ACTIONS(2066), + [anon_sym_PIPE_PIPE] = ACTIONS(2066), [anon_sym_EQ_TILDE] = ACTIONS(485), [anon_sym_EQ_EQ] = ACTIONS(485), [anon_sym_LT] = ACTIONS(487), @@ -28620,11 +24951,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(365), [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_LF] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2078), + [anon_sym_SEMI] = ACTIONS(2066), + [anon_sym_LF] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2066), }, - [672] = { + [662] = { [sym_file_descriptor] = ACTIONS(1107), [sym_variable_name] = ACTIONS(1107), [anon_sym_PIPE] = ACTIONS(1109), @@ -28651,16 +24982,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(1107), }, - [673] = { - [sym_concatenation] = STATE(1132), + [663] = { + [sym_concatenation] = STATE(1101), [sym_string] = STATE(563), [sym_simple_expansion] = STATE(563), [sym_string_expansion] = STATE(563), [sym_expansion] = STATE(563), [sym_command_substitution] = STATE(563), [sym_process_substitution] = STATE(563), - [aux_sym_for_statement_repeat1] = STATE(1132), - [anon_sym_RPAREN] = ACTIONS(2439), + [aux_sym_for_statement_repeat1] = STATE(1101), + [anon_sym_RPAREN] = ACTIONS(2397), [sym__special_characters] = ACTIONS(1113), [anon_sym_DQUOTE] = ACTIONS(1115), [anon_sym_DOLLAR] = ACTIONS(1117), @@ -28673,7 +25004,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(1119), }, - [674] = { + [664] = { [aux_sym_concatenation_repeat1] = STATE(373), [sym_file_descriptor] = ACTIONS(1129), [sym__concat] = ACTIONS(663), @@ -28697,7 +25028,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(1129), }, - [675] = { + [665] = { [aux_sym_concatenation_repeat1] = STATE(373), [sym_file_descriptor] = ACTIONS(1107), [sym__concat] = ACTIONS(663), @@ -28721,21 +25052,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(1107), }, - [676] = { - [anon_sym_RPAREN] = ACTIONS(1307), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [anon_sym_EQ_TILDE] = ACTIONS(1303), - [anon_sym_EQ_EQ] = ACTIONS(1303), - [anon_sym_EQ] = ACTIONS(1305), - [anon_sym_LT] = ACTIONS(1301), - [anon_sym_GT] = ACTIONS(1301), - [anon_sym_BANG_EQ] = ACTIONS(1301), + [666] = { + [anon_sym_RPAREN] = ACTIONS(1295), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [anon_sym_PIPE_PIPE] = ACTIONS(1289), + [anon_sym_EQ_TILDE] = ACTIONS(1291), + [anon_sym_EQ_EQ] = ACTIONS(1291), + [anon_sym_EQ] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(1289), + [anon_sym_GT] = ACTIONS(1289), + [anon_sym_BANG_EQ] = ACTIONS(1289), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1301), + [sym_test_operator] = ACTIONS(1289), }, - [677] = { - [aux_sym_concatenation_repeat1] = STATE(1133), + [667] = { + [aux_sym_concatenation_repeat1] = STATE(1102), [sym__concat] = ACTIONS(551), [anon_sym_RPAREN] = ACTIONS(693), [anon_sym_AMP_AMP] = ACTIONS(693), @@ -28749,25 +25080,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_test_operator] = ACTIONS(693), }, - [678] = { - [anon_sym_AMP_AMP] = ACTIONS(2441), - [anon_sym_PIPE_PIPE] = ACTIONS(2441), - [anon_sym_RBRACK] = ACTIONS(2441), - [anon_sym_EQ_TILDE] = ACTIONS(2441), - [anon_sym_EQ_EQ] = ACTIONS(2441), - [anon_sym_EQ] = ACTIONS(2443), - [anon_sym_LT] = ACTIONS(2441), - [anon_sym_GT] = ACTIONS(2441), - [anon_sym_BANG_EQ] = ACTIONS(2441), + [668] = { + [anon_sym_AMP_AMP] = ACTIONS(2399), + [anon_sym_PIPE_PIPE] = ACTIONS(2399), + [anon_sym_RBRACK] = ACTIONS(2399), + [anon_sym_EQ_TILDE] = ACTIONS(2399), + [anon_sym_EQ_EQ] = ACTIONS(2399), + [anon_sym_EQ] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2399), + [anon_sym_GT] = ACTIONS(2399), + [anon_sym_BANG_EQ] = ACTIONS(2399), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2441), + [sym_test_operator] = ACTIONS(2399), }, - [679] = { - [sym__expression] = STATE(727), - [sym_binary_expression] = STATE(727), - [sym_unary_expression] = STATE(727), - [sym_parenthesized_expression] = STATE(727), - [sym_concatenation] = STATE(727), + [669] = { + [sym__expression] = STATE(717), + [sym_binary_expression] = STATE(717), + [sym_unary_expression] = STATE(717), + [sym_parenthesized_expression] = STATE(717), + [sym_concatenation] = STATE(717), [sym_string] = STATE(287), [sym_simple_expansion] = STATE(287), [sym_string_expansion] = STATE(287), @@ -28789,138 +25120,327 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(509), [sym_test_operator] = ACTIONS(511), }, - [680] = { - [sym__expression] = STATE(727), - [sym_binary_expression] = STATE(727), - [sym_unary_expression] = STATE(727), - [sym_parenthesized_expression] = STATE(727), - [sym_concatenation] = STATE(727), + [670] = { + [sym__expression] = STATE(717), + [sym_binary_expression] = STATE(717), + [sym_unary_expression] = STATE(717), + [sym_parenthesized_expression] = STATE(717), + [sym_concatenation] = STATE(717), [sym_string] = STATE(287), [sym_simple_expansion] = STATE(287), [sym_string_expansion] = STATE(287), [sym_expansion] = STATE(287), [sym_command_substitution] = STATE(287), [sym_process_substitution] = STATE(287), - [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(1411), [anon_sym_BANG] = ACTIONS(503), - [sym__special_characters] = ACTIONS(2445), - [anon_sym_DQUOTE] = ACTIONS(1427), + [sym__special_characters] = ACTIONS(2403), + [anon_sym_DQUOTE] = ACTIONS(1415), [anon_sym_DOLLAR] = ACTIONS(141), [sym_raw_string] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1431), - [anon_sym_BQUOTE] = ACTIONS(1433), - [anon_sym_LT_LPAREN] = ACTIONS(1435), - [anon_sym_GT_LPAREN] = ACTIONS(1435), + [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(177), [sym_word] = ACTIONS(509), [sym_test_operator] = ACTIONS(503), - [sym_regex] = ACTIONS(1437), + [sym_regex] = ACTIONS(1425), }, - [681] = { - [sym__concat] = ACTIONS(1654), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_PIPE_PIPE] = ACTIONS(1654), - [anon_sym_RBRACK] = ACTIONS(1654), - [anon_sym_EQ_TILDE] = ACTIONS(1654), - [anon_sym_EQ_EQ] = ACTIONS(1654), - [anon_sym_EQ] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1654), - [anon_sym_GT] = ACTIONS(1654), - [anon_sym_BANG_EQ] = ACTIONS(1654), + [671] = { + [sym__concat] = ACTIONS(1642), + [anon_sym_AMP_AMP] = ACTIONS(1642), + [anon_sym_PIPE_PIPE] = ACTIONS(1642), + [anon_sym_RBRACK] = ACTIONS(1642), + [anon_sym_EQ_TILDE] = ACTIONS(1642), + [anon_sym_EQ_EQ] = ACTIONS(1642), + [anon_sym_EQ] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_BANG_EQ] = ACTIONS(1642), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1654), + [sym_test_operator] = ACTIONS(1642), }, - [682] = { - [aux_sym_concatenation_repeat1] = STATE(682), - [sym__concat] = ACTIONS(2447), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_PIPE_PIPE] = ACTIONS(1654), - [anon_sym_RBRACK] = ACTIONS(1654), - [anon_sym_EQ_TILDE] = ACTIONS(1654), - [anon_sym_EQ_EQ] = ACTIONS(1654), - [anon_sym_EQ] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1654), - [anon_sym_GT] = ACTIONS(1654), - [anon_sym_BANG_EQ] = ACTIONS(1654), + [672] = { + [aux_sym_concatenation_repeat1] = STATE(672), + [sym__concat] = ACTIONS(2405), + [anon_sym_AMP_AMP] = ACTIONS(1642), + [anon_sym_PIPE_PIPE] = ACTIONS(1642), + [anon_sym_RBRACK] = ACTIONS(1642), + [anon_sym_EQ_TILDE] = ACTIONS(1642), + [anon_sym_EQ_EQ] = ACTIONS(1642), + [anon_sym_EQ] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_BANG_EQ] = ACTIONS(1642), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1654), + [sym_test_operator] = ACTIONS(1642), }, - [683] = { - [sym__concat] = ACTIONS(1703), - [anon_sym_AMP_AMP] = ACTIONS(1703), - [anon_sym_PIPE_PIPE] = ACTIONS(1703), - [anon_sym_RBRACK] = ACTIONS(1703), - [anon_sym_EQ_TILDE] = ACTIONS(1703), - [anon_sym_EQ_EQ] = ACTIONS(1703), - [anon_sym_EQ] = ACTIONS(1705), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_GT] = ACTIONS(1703), - [anon_sym_BANG_EQ] = ACTIONS(1703), + [673] = { + [sym__concat] = ACTIONS(1691), + [anon_sym_AMP_AMP] = ACTIONS(1691), + [anon_sym_PIPE_PIPE] = ACTIONS(1691), + [anon_sym_RBRACK] = ACTIONS(1691), + [anon_sym_EQ_TILDE] = ACTIONS(1691), + [anon_sym_EQ_EQ] = ACTIONS(1691), + [anon_sym_EQ] = ACTIONS(1693), + [anon_sym_LT] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1691), + [anon_sym_BANG_EQ] = ACTIONS(1691), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1703), + [sym_test_operator] = ACTIONS(1691), }, - [684] = { - [sym_concatenation] = STATE(1137), - [sym_string] = STATE(1136), - [sym_simple_expansion] = STATE(1136), - [sym_string_expansion] = STATE(1136), - [sym_expansion] = STATE(1136), - [sym_command_substitution] = STATE(1136), - [sym_process_substitution] = STATE(1136), - [anon_sym_RBRACE] = ACTIONS(2450), - [sym__special_characters] = ACTIONS(2452), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(2454), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), + [674] = { + [sym_concatenation] = STATE(1106), + [sym_string] = STATE(1105), + [sym_simple_expansion] = STATE(1105), + [sym_string_expansion] = STATE(1105), + [sym_expansion] = STATE(1105), + [sym_command_substitution] = STATE(1105), + [sym_process_substitution] = STATE(1105), + [anon_sym_RBRACE] = ACTIONS(2408), + [sym__special_characters] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(2412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2454), + [sym_word] = ACTIONS(2412), }, - [685] = { - [sym__concat] = ACTIONS(1744), - [anon_sym_AMP_AMP] = ACTIONS(1744), - [anon_sym_PIPE_PIPE] = ACTIONS(1744), - [anon_sym_RBRACK] = ACTIONS(1744), - [anon_sym_EQ_TILDE] = ACTIONS(1744), - [anon_sym_EQ_EQ] = ACTIONS(1744), - [anon_sym_EQ] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1744), - [anon_sym_GT] = ACTIONS(1744), - [anon_sym_BANG_EQ] = ACTIONS(1744), + [675] = { + [sym__concat] = ACTIONS(1732), + [anon_sym_AMP_AMP] = ACTIONS(1732), + [anon_sym_PIPE_PIPE] = ACTIONS(1732), + [anon_sym_RBRACK] = ACTIONS(1732), + [anon_sym_EQ_TILDE] = ACTIONS(1732), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_BANG_EQ] = ACTIONS(1732), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1744), + [sym_test_operator] = ACTIONS(1732), }, - [686] = { + [676] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2456), + [sym_regex_without_right_brace] = ACTIONS(2414), }, - [687] = { - [sym_concatenation] = STATE(839), + [677] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(2458), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(2416), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [678] = { + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(2418), + [sym_comment] = ACTIONS(53), + }, + [679] = { + [sym_concatenation] = STATE(1112), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1112), + [anon_sym_RBRACE] = ACTIONS(2420), + [anon_sym_EQ] = ACTIONS(2422), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2424), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [680] = { + [sym_concatenation] = STATE(1115), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1115), + [anon_sym_RBRACE] = ACTIONS(2428), + [anon_sym_EQ] = ACTIONS(2430), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2432), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(2434), + [anon_sym_COLON] = ACTIONS(2430), + [anon_sym_COLON_QMARK] = ACTIONS(2430), + [anon_sym_COLON_DASH] = ACTIONS(2430), + [anon_sym_PERCENT] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2430), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [681] = { + [sym_concatenation] = STATE(1117), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1117), + [anon_sym_RBRACE] = ACTIONS(2408), + [anon_sym_EQ] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(2440), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [682] = { + [sym__concat] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_EQ_TILDE] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ] = ACTIONS(1800), + [anon_sym_LT] = ACTIONS(1798), + [anon_sym_GT] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1798), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1798), + }, + [683] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2442), + }, + [684] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(2444), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [685] = { + [sym__concat] = ACTIONS(1806), + [anon_sym_AMP_AMP] = ACTIONS(1806), + [anon_sym_PIPE_PIPE] = ACTIONS(1806), + [anon_sym_RBRACK] = ACTIONS(1806), + [anon_sym_EQ_TILDE] = ACTIONS(1806), + [anon_sym_EQ_EQ] = ACTIONS(1806), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LT] = ACTIONS(1806), + [anon_sym_GT] = ACTIONS(1806), + [anon_sym_BANG_EQ] = ACTIONS(1806), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1806), + }, + [686] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2446), + }, + [687] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(2408), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -28929,63 +25449,263 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [688] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(2460), + [sym__concat] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_RBRACK] = ACTIONS(1940), + [anon_sym_EQ_TILDE] = ACTIONS(1940), + [anon_sym_EQ_EQ] = ACTIONS(1940), + [anon_sym_EQ] = ACTIONS(1942), + [anon_sym_LT] = ACTIONS(1940), + [anon_sym_GT] = ACTIONS(1940), + [anon_sym_BANG_EQ] = ACTIONS(1940), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1940), }, [689] = { - [sym_concatenation] = STATE(1143), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1143), - [anon_sym_RBRACE] = ACTIONS(2462), - [anon_sym_EQ] = ACTIONS(2464), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2466), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2468), - [anon_sym_COLON] = ACTIONS(2464), - [anon_sym_COLON_QMARK] = ACTIONS(2464), - [anon_sym_COLON_DASH] = ACTIONS(2464), - [anon_sym_PERCENT] = ACTIONS(2464), - [anon_sym_DASH] = ACTIONS(2464), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(2006), + [anon_sym_AMP_AMP] = ACTIONS(2006), + [anon_sym_PIPE_PIPE] = ACTIONS(2006), + [anon_sym_RBRACK] = ACTIONS(2006), + [anon_sym_EQ_TILDE] = ACTIONS(2006), + [anon_sym_EQ_EQ] = ACTIONS(2006), + [anon_sym_EQ] = ACTIONS(2008), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_GT] = ACTIONS(2006), + [anon_sym_BANG_EQ] = ACTIONS(2006), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2006), }, [690] = { - [sym_concatenation] = STATE(1146), + [anon_sym_AMP_AMP] = ACTIONS(2448), + [anon_sym_PIPE_PIPE] = ACTIONS(2448), + [anon_sym_RBRACK] = ACTIONS(2448), + [anon_sym_EQ_TILDE] = ACTIONS(2448), + [anon_sym_EQ_EQ] = ACTIONS(2448), + [anon_sym_EQ] = ACTIONS(2450), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_BANG_EQ] = ACTIONS(2448), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2448), + }, + [691] = { + [anon_sym_LT] = ACTIONS(2452), + [anon_sym_GT] = ACTIONS(2452), + [anon_sym_GT_GT] = ACTIONS(2454), + [anon_sym_AMP_GT] = ACTIONS(2452), + [anon_sym_AMP_GT_GT] = ACTIONS(2454), + [anon_sym_LT_AMP] = ACTIONS(2454), + [anon_sym_GT_AMP] = ACTIONS(2454), + [sym_comment] = ACTIONS(53), + }, + [692] = { + [sym_concatenation] = STATE(1130), + [sym_string] = STATE(1125), + [sym_simple_expansion] = STATE(1125), + [sym_string_expansion] = STATE(1125), + [sym_expansion] = STATE(1125), + [sym_command_substitution] = STATE(1125), + [sym_process_substitution] = STATE(1125), + [sym__special_characters] = ACTIONS(2456), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_DOLLAR] = ACTIONS(2460), + [sym_raw_string] = ACTIONS(2462), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2466), + [anon_sym_BQUOTE] = ACTIONS(2468), + [anon_sym_LT_LPAREN] = ACTIONS(2470), + [anon_sym_GT_LPAREN] = ACTIONS(2470), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2462), + }, + [693] = { + [sym_heredoc_start] = ACTIONS(2472), + [sym_comment] = ACTIONS(53), + }, + [694] = { + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(1133), + [sym_simple_expansion] = STATE(1133), + [sym_string_expansion] = STATE(1133), + [sym_expansion] = STATE(1133), + [sym_command_substitution] = STATE(1133), + [sym_process_substitution] = STATE(1133), + [sym__special_characters] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_DOLLAR] = ACTIONS(2460), + [sym_raw_string] = ACTIONS(2476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2466), + [anon_sym_BQUOTE] = ACTIONS(2468), + [anon_sym_LT_LPAREN] = ACTIONS(2470), + [anon_sym_GT_LPAREN] = ACTIONS(2470), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2476), + }, + [695] = { + [sym_file_redirect] = STATE(1135), + [sym_heredoc_redirect] = STATE(1135), + [sym_herestring_redirect] = STATE(1135), + [aux_sym_while_statement_repeat1] = STATE(1135), + [sym_file_descriptor] = ACTIONS(1339), + [anon_sym_PIPE] = ACTIONS(2478), + [anon_sym_SEMI_SEMI] = ACTIONS(2478), + [anon_sym_PIPE_AMP] = ACTIONS(2478), + [anon_sym_AMP_AMP] = ACTIONS(2478), + [anon_sym_PIPE_PIPE] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(1343), + [anon_sym_GT] = ACTIONS(1343), + [anon_sym_GT_GT] = ACTIONS(1343), + [anon_sym_AMP_GT] = ACTIONS(1343), + [anon_sym_AMP_GT_GT] = ACTIONS(1343), + [anon_sym_LT_AMP] = ACTIONS(1343), + [anon_sym_GT_AMP] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(1345), + [anon_sym_LT_LT_DASH] = ACTIONS(1345), + [anon_sym_LT_LT_LT] = ACTIONS(1347), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_LF] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2478), + }, + [696] = { + [anon_sym_AMP_AMP] = ACTIONS(2448), + [anon_sym_PIPE_PIPE] = ACTIONS(2448), + [anon_sym_RBRACK] = ACTIONS(2448), + [anon_sym_EQ_TILDE] = ACTIONS(2448), + [anon_sym_EQ_EQ] = ACTIONS(2448), + [anon_sym_EQ] = ACTIONS(2450), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_BANG_EQ] = ACTIONS(2448), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2448), + }, + [697] = { + [anon_sym_RPAREN] = ACTIONS(2399), + [anon_sym_AMP_AMP] = ACTIONS(2399), + [anon_sym_PIPE_PIPE] = ACTIONS(2399), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2399), + [anon_sym_EQ_TILDE] = ACTIONS(2399), + [anon_sym_EQ_EQ] = ACTIONS(2399), + [anon_sym_EQ] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2399), + [anon_sym_GT] = ACTIONS(2399), + [anon_sym_BANG_EQ] = ACTIONS(2399), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2399), + }, + [698] = { + [sym__concat] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_AMP_AMP] = ACTIONS(1642), + [anon_sym_PIPE_PIPE] = ACTIONS(1642), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1642), + [anon_sym_EQ_TILDE] = ACTIONS(1642), + [anon_sym_EQ_EQ] = ACTIONS(1642), + [anon_sym_EQ] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_BANG_EQ] = ACTIONS(1642), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1642), + }, + [699] = { + [aux_sym_concatenation_repeat1] = STATE(699), + [sym__concat] = ACTIONS(2482), + [anon_sym_AMP_AMP] = ACTIONS(1642), + [anon_sym_PIPE_PIPE] = ACTIONS(1642), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1642), + [anon_sym_EQ_TILDE] = ACTIONS(1642), + [anon_sym_EQ_EQ] = ACTIONS(1642), + [anon_sym_EQ] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_BANG_EQ] = ACTIONS(1642), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1642), + }, + [700] = { + [sym__concat] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1693), + [anon_sym_RPAREN] = ACTIONS(1691), + [anon_sym_AMP_AMP] = ACTIONS(1691), + [anon_sym_PIPE_PIPE] = ACTIONS(1691), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1691), + [anon_sym_EQ_TILDE] = ACTIONS(1691), + [anon_sym_EQ_EQ] = ACTIONS(1691), + [anon_sym_EQ] = ACTIONS(1693), + [anon_sym_LT] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1691), + [anon_sym_BANG_EQ] = ACTIONS(1691), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1691), + }, + [701] = { + [sym_concatenation] = STATE(1139), + [sym_string] = STATE(1138), + [sym_simple_expansion] = STATE(1138), + [sym_string_expansion] = STATE(1138), + [sym_expansion] = STATE(1138), + [sym_command_substitution] = STATE(1138), + [sym_process_substitution] = STATE(1138), + [anon_sym_RBRACE] = ACTIONS(2485), + [sym__special_characters] = ACTIONS(2487), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(2489), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2489), + }, + [702] = { + [sym__concat] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1732), + [anon_sym_AMP_AMP] = ACTIONS(1732), + [anon_sym_PIPE_PIPE] = ACTIONS(1732), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1732), + [anon_sym_EQ_TILDE] = ACTIONS(1732), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1732), + }, + [703] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2491), + }, + [704] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1146), - [anon_sym_RBRACE] = ACTIONS(2470), - [anon_sym_EQ] = ACTIONS(2472), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(2493), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2474), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2476), - [anon_sym_COLON] = ACTIONS(2472), - [anon_sym_COLON_QMARK] = ACTIONS(2472), - [anon_sym_COLON_DASH] = ACTIONS(2472), - [anon_sym_PERCENT] = ACTIONS(2472), - [anon_sym_DASH] = ACTIONS(2472), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -28993,7 +25713,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [691] = { + [705] = { + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(2495), + [sym_comment] = ACTIONS(53), + }, + [706] = { + [sym_concatenation] = STATE(1145), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1145), + [anon_sym_RBRACE] = ACTIONS(2497), + [anon_sym_EQ] = ACTIONS(2499), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2501), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(2503), + [anon_sym_COLON] = ACTIONS(2499), + [anon_sym_COLON_QMARK] = ACTIONS(2499), + [anon_sym_COLON_DASH] = ACTIONS(2499), + [anon_sym_PERCENT] = ACTIONS(2499), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [707] = { [sym_concatenation] = STATE(1148), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), @@ -29002,20 +25757,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), [aux_sym_expansion_repeat1] = STATE(1148), - [anon_sym_RBRACE] = ACTIONS(2450), - [anon_sym_EQ] = ACTIONS(2478), + [anon_sym_RBRACE] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(2507), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2480), + [anon_sym_POUND] = ACTIONS(2509), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2482), - [anon_sym_COLON] = ACTIONS(2478), - [anon_sym_COLON_QMARK] = ACTIONS(2478), - [anon_sym_COLON_DASH] = ACTIONS(2478), - [anon_sym_PERCENT] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), + [aux_sym_SLASH] = ACTIONS(2511), + [anon_sym_COLON] = ACTIONS(2507), + [anon_sym_COLON_QMARK] = ACTIONS(2507), + [anon_sym_COLON_DASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), + [anon_sym_DASH] = ACTIONS(2507), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -29023,358 +25778,127 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [692] = { - [sym__concat] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_EQ_TILDE] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_LT] = ACTIONS(1810), - [anon_sym_GT] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1810), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1810), - }, - [693] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2484), - }, - [694] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(2486), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [695] = { - [sym__concat] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_EQ_TILDE] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ] = ACTIONS(1820), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_GT] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1818), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1818), - }, - [696] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2488), - }, - [697] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(2450), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [698] = { - [sym__concat] = ACTIONS(1952), - [anon_sym_AMP_AMP] = ACTIONS(1952), - [anon_sym_PIPE_PIPE] = ACTIONS(1952), - [anon_sym_RBRACK] = ACTIONS(1952), - [anon_sym_EQ_TILDE] = ACTIONS(1952), - [anon_sym_EQ_EQ] = ACTIONS(1952), - [anon_sym_EQ] = ACTIONS(1954), - [anon_sym_LT] = ACTIONS(1952), - [anon_sym_GT] = ACTIONS(1952), - [anon_sym_BANG_EQ] = ACTIONS(1952), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1952), - }, - [699] = { - [sym__concat] = ACTIONS(2018), - [anon_sym_AMP_AMP] = ACTIONS(2018), - [anon_sym_PIPE_PIPE] = ACTIONS(2018), - [anon_sym_RBRACK] = ACTIONS(2018), - [anon_sym_EQ_TILDE] = ACTIONS(2018), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ] = ACTIONS(2020), - [anon_sym_LT] = ACTIONS(2018), - [anon_sym_GT] = ACTIONS(2018), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2018), - }, - [700] = { - [anon_sym_AMP_AMP] = ACTIONS(2490), - [anon_sym_PIPE_PIPE] = ACTIONS(2490), - [anon_sym_RBRACK] = ACTIONS(2490), - [anon_sym_EQ_TILDE] = ACTIONS(2490), - [anon_sym_EQ_EQ] = ACTIONS(2490), - [anon_sym_EQ] = ACTIONS(2492), - [anon_sym_LT] = ACTIONS(2490), - [anon_sym_GT] = ACTIONS(2490), - [anon_sym_BANG_EQ] = ACTIONS(2490), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2490), - }, - [701] = { - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_GT] = ACTIONS(2494), - [anon_sym_GT_GT] = ACTIONS(2496), - [anon_sym_AMP_GT] = ACTIONS(2494), - [anon_sym_AMP_GT_GT] = ACTIONS(2496), - [anon_sym_LT_AMP] = ACTIONS(2496), - [anon_sym_GT_AMP] = ACTIONS(2496), - [sym_comment] = ACTIONS(53), - }, - [702] = { - [sym_concatenation] = STATE(1161), - [sym_string] = STATE(1156), - [sym_simple_expansion] = STATE(1156), - [sym_string_expansion] = STATE(1156), - [sym_expansion] = STATE(1156), - [sym_command_substitution] = STATE(1156), - [sym_process_substitution] = STATE(1156), - [sym__special_characters] = ACTIONS(2498), - [anon_sym_DQUOTE] = ACTIONS(2500), - [anon_sym_DOLLAR] = ACTIONS(2502), - [sym_raw_string] = ACTIONS(2504), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2506), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2508), - [anon_sym_BQUOTE] = ACTIONS(2510), - [anon_sym_LT_LPAREN] = ACTIONS(2512), - [anon_sym_GT_LPAREN] = ACTIONS(2512), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2504), - }, - [703] = { - [sym_heredoc_start] = ACTIONS(2514), - [sym_comment] = ACTIONS(53), - }, - [704] = { - [sym_concatenation] = STATE(1165), - [sym_string] = STATE(1164), - [sym_simple_expansion] = STATE(1164), - [sym_string_expansion] = STATE(1164), - [sym_expansion] = STATE(1164), - [sym_command_substitution] = STATE(1164), - [sym_process_substitution] = STATE(1164), - [sym__special_characters] = ACTIONS(2516), - [anon_sym_DQUOTE] = ACTIONS(2500), - [anon_sym_DOLLAR] = ACTIONS(2502), - [sym_raw_string] = ACTIONS(2518), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2506), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2508), - [anon_sym_BQUOTE] = ACTIONS(2510), - [anon_sym_LT_LPAREN] = ACTIONS(2512), - [anon_sym_GT_LPAREN] = ACTIONS(2512), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2518), - }, - [705] = { - [sym_file_redirect] = STATE(1166), - [sym_heredoc_redirect] = STATE(1166), - [sym_herestring_redirect] = STATE(1166), - [aux_sym_while_statement_repeat1] = STATE(1166), - [sym_file_descriptor] = ACTIONS(1351), - [anon_sym_PIPE] = ACTIONS(2520), - [anon_sym_SEMI_SEMI] = ACTIONS(2520), - [anon_sym_PIPE_AMP] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_LT] = ACTIONS(1355), - [anon_sym_GT] = ACTIONS(1355), - [anon_sym_GT_GT] = ACTIONS(1355), - [anon_sym_AMP_GT] = ACTIONS(1355), - [anon_sym_AMP_GT_GT] = ACTIONS(1355), - [anon_sym_LT_AMP] = ACTIONS(1355), - [anon_sym_GT_AMP] = ACTIONS(1355), - [anon_sym_LT_LT] = ACTIONS(1357), - [anon_sym_LT_LT_DASH] = ACTIONS(1357), - [anon_sym_LT_LT_LT] = ACTIONS(1359), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_LF] = ACTIONS(2522), - [anon_sym_AMP] = ACTIONS(2520), - }, - [706] = { - [anon_sym_AMP_AMP] = ACTIONS(2490), - [anon_sym_PIPE_PIPE] = ACTIONS(2490), - [anon_sym_RBRACK] = ACTIONS(2490), - [anon_sym_EQ_TILDE] = ACTIONS(2490), - [anon_sym_EQ_EQ] = ACTIONS(2490), - [anon_sym_EQ] = ACTIONS(2492), - [anon_sym_LT] = ACTIONS(2490), - [anon_sym_GT] = ACTIONS(2490), - [anon_sym_BANG_EQ] = ACTIONS(2490), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2490), - }, - [707] = { - [anon_sym_RPAREN] = ACTIONS(2441), - [anon_sym_AMP_AMP] = ACTIONS(2441), - [anon_sym_PIPE_PIPE] = ACTIONS(2441), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2441), - [anon_sym_EQ_TILDE] = ACTIONS(2441), - [anon_sym_EQ_EQ] = ACTIONS(2441), - [anon_sym_EQ] = ACTIONS(2443), - [anon_sym_LT] = ACTIONS(2441), - [anon_sym_GT] = ACTIONS(2441), - [anon_sym_BANG_EQ] = ACTIONS(2441), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2441), - }, [708] = { - [sym__concat] = ACTIONS(1654), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1654), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_PIPE_PIPE] = ACTIONS(1654), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1654), - [anon_sym_EQ_TILDE] = ACTIONS(1654), - [anon_sym_EQ_EQ] = ACTIONS(1654), - [anon_sym_EQ] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1654), - [anon_sym_GT] = ACTIONS(1654), - [anon_sym_BANG_EQ] = ACTIONS(1654), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1654), + [sym_concatenation] = STATE(1150), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1150), + [anon_sym_RBRACE] = ACTIONS(2485), + [anon_sym_EQ] = ACTIONS(2513), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2515), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(2517), + [anon_sym_COLON] = ACTIONS(2513), + [anon_sym_COLON_QMARK] = ACTIONS(2513), + [anon_sym_COLON_DASH] = ACTIONS(2513), + [anon_sym_PERCENT] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [709] = { - [aux_sym_concatenation_repeat1] = STATE(709), - [sym__concat] = ACTIONS(2524), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_PIPE_PIPE] = ACTIONS(1654), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1654), - [anon_sym_EQ_TILDE] = ACTIONS(1654), - [anon_sym_EQ_EQ] = ACTIONS(1654), - [anon_sym_EQ] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1654), - [anon_sym_GT] = ACTIONS(1654), - [anon_sym_BANG_EQ] = ACTIONS(1654), + [sym__concat] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1798), + [anon_sym_EQ_TILDE] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ] = ACTIONS(1800), + [anon_sym_LT] = ACTIONS(1798), + [anon_sym_GT] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1798), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1654), + [sym_test_operator] = ACTIONS(1798), }, [710] = { - [sym__concat] = ACTIONS(1703), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_RPAREN] = ACTIONS(1703), - [anon_sym_AMP_AMP] = ACTIONS(1703), - [anon_sym_PIPE_PIPE] = ACTIONS(1703), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1703), - [anon_sym_EQ_TILDE] = ACTIONS(1703), - [anon_sym_EQ_EQ] = ACTIONS(1703), - [anon_sym_EQ] = ACTIONS(1705), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_GT] = ACTIONS(1703), - [anon_sym_BANG_EQ] = ACTIONS(1703), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1703), + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2519), }, [711] = { - [sym_concatenation] = STATE(1170), - [sym_string] = STATE(1169), - [sym_simple_expansion] = STATE(1169), - [sym_string_expansion] = STATE(1169), - [sym_expansion] = STATE(1169), - [sym_command_substitution] = STATE(1169), - [sym_process_substitution] = STATE(1169), - [anon_sym_RBRACE] = ACTIONS(2527), - [sym__special_characters] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(2531), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2531), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(2521), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [712] = { - [sym__concat] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1744), - [anon_sym_AMP_AMP] = ACTIONS(1744), - [anon_sym_PIPE_PIPE] = ACTIONS(1744), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1744), - [anon_sym_EQ_TILDE] = ACTIONS(1744), - [anon_sym_EQ_EQ] = ACTIONS(1744), - [anon_sym_EQ] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1744), - [anon_sym_GT] = ACTIONS(1744), - [anon_sym_BANG_EQ] = ACTIONS(1744), + [sym__concat] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1808), + [anon_sym_RPAREN] = ACTIONS(1806), + [anon_sym_AMP_AMP] = ACTIONS(1806), + [anon_sym_PIPE_PIPE] = ACTIONS(1806), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1806), + [anon_sym_EQ_TILDE] = ACTIONS(1806), + [anon_sym_EQ_EQ] = ACTIONS(1806), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LT] = ACTIONS(1806), + [anon_sym_GT] = ACTIONS(1806), + [anon_sym_BANG_EQ] = ACTIONS(1806), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1744), + [sym_test_operator] = ACTIONS(1806), }, [713] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2533), + [sym_regex_without_right_brace] = ACTIONS(2523), }, [714] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(2535), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(2485), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -29383,259 +25907,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [715] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(2537), + [sym__concat] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1940), + [anon_sym_EQ_TILDE] = ACTIONS(1940), + [anon_sym_EQ_EQ] = ACTIONS(1940), + [anon_sym_EQ] = ACTIONS(1942), + [anon_sym_LT] = ACTIONS(1940), + [anon_sym_GT] = ACTIONS(1940), + [anon_sym_BANG_EQ] = ACTIONS(1940), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1940), }, [716] = { - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1176), - [anon_sym_RBRACE] = ACTIONS(2539), - [anon_sym_EQ] = ACTIONS(2541), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2543), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2545), - [anon_sym_COLON] = ACTIONS(2541), - [anon_sym_COLON_QMARK] = ACTIONS(2541), - [anon_sym_COLON_DASH] = ACTIONS(2541), - [anon_sym_PERCENT] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(2006), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2006), + [anon_sym_AMP_AMP] = ACTIONS(2006), + [anon_sym_PIPE_PIPE] = ACTIONS(2006), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2006), + [anon_sym_EQ_TILDE] = ACTIONS(2006), + [anon_sym_EQ_EQ] = ACTIONS(2006), + [anon_sym_EQ] = ACTIONS(2008), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_GT] = ACTIONS(2006), + [anon_sym_BANG_EQ] = ACTIONS(2006), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2006), }, [717] = { - [sym_concatenation] = STATE(1179), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1179), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_EQ] = ACTIONS(2549), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2551), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_RPAREN] = ACTIONS(2448), + [anon_sym_AMP_AMP] = ACTIONS(2448), + [anon_sym_PIPE_PIPE] = ACTIONS(2448), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2448), + [anon_sym_EQ_TILDE] = ACTIONS(2448), + [anon_sym_EQ_EQ] = ACTIONS(2448), + [anon_sym_EQ] = ACTIONS(2450), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_BANG_EQ] = ACTIONS(2448), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2448), }, [718] = { - [sym_concatenation] = STATE(1181), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1181), - [anon_sym_RBRACE] = ACTIONS(2527), - [anon_sym_EQ] = ACTIONS(2555), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2557), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2559), - [anon_sym_COLON] = ACTIONS(2555), - [anon_sym_COLON_QMARK] = ACTIONS(2555), - [anon_sym_COLON_DASH] = ACTIONS(2555), - [anon_sym_PERCENT] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_RPAREN] = ACTIONS(2448), + [anon_sym_AMP_AMP] = ACTIONS(2448), + [anon_sym_PIPE_PIPE] = ACTIONS(2448), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2448), + [anon_sym_EQ_TILDE] = ACTIONS(2448), + [anon_sym_EQ_EQ] = ACTIONS(2448), + [anon_sym_EQ] = ACTIONS(2450), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_BANG_EQ] = ACTIONS(2448), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2448), }, [719] = { - [sym__concat] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1810), - [anon_sym_EQ_TILDE] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_LT] = ACTIONS(1810), - [anon_sym_GT] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1810), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1810), - }, - [720] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2561), - }, - [721] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(2563), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [722] = { - [sym__concat] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1818), - [anon_sym_EQ_TILDE] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ] = ACTIONS(1820), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_GT] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1818), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1818), - }, - [723] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2565), - }, - [724] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(2527), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [725] = { - [sym__concat] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_RPAREN] = ACTIONS(1952), - [anon_sym_AMP_AMP] = ACTIONS(1952), - [anon_sym_PIPE_PIPE] = ACTIONS(1952), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1952), - [anon_sym_EQ_TILDE] = ACTIONS(1952), - [anon_sym_EQ_EQ] = ACTIONS(1952), - [anon_sym_EQ] = ACTIONS(1954), - [anon_sym_LT] = ACTIONS(1952), - [anon_sym_GT] = ACTIONS(1952), - [anon_sym_BANG_EQ] = ACTIONS(1952), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1952), - }, - [726] = { - [sym__concat] = ACTIONS(2018), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_RPAREN] = ACTIONS(2018), - [anon_sym_AMP_AMP] = ACTIONS(2018), - [anon_sym_PIPE_PIPE] = ACTIONS(2018), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2018), - [anon_sym_EQ_TILDE] = ACTIONS(2018), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ] = ACTIONS(2020), - [anon_sym_LT] = ACTIONS(2018), - [anon_sym_GT] = ACTIONS(2018), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2018), - }, - [727] = { - [anon_sym_RPAREN] = ACTIONS(2490), - [anon_sym_AMP_AMP] = ACTIONS(2490), - [anon_sym_PIPE_PIPE] = ACTIONS(2490), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2490), - [anon_sym_EQ_TILDE] = ACTIONS(2490), - [anon_sym_EQ_EQ] = ACTIONS(2490), - [anon_sym_EQ] = ACTIONS(2492), - [anon_sym_LT] = ACTIONS(2490), - [anon_sym_GT] = ACTIONS(2490), - [anon_sym_BANG_EQ] = ACTIONS(2490), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2490), - }, - [728] = { - [anon_sym_RPAREN] = ACTIONS(2490), - [anon_sym_AMP_AMP] = ACTIONS(2490), - [anon_sym_PIPE_PIPE] = ACTIONS(2490), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2490), - [anon_sym_EQ_TILDE] = ACTIONS(2490), - [anon_sym_EQ_EQ] = ACTIONS(2490), - [anon_sym_EQ] = ACTIONS(2492), - [anon_sym_LT] = ACTIONS(2490), - [anon_sym_GT] = ACTIONS(2490), - [anon_sym_BANG_EQ] = ACTIONS(2490), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2490), - }, - [729] = { [sym_variable_name] = ACTIONS(1107), [anon_sym_PIPE] = ACTIONS(1109), [anon_sym_RPAREN] = ACTIONS(1109), @@ -29659,16 +25990,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1107), [anon_sym_AMP] = ACTIONS(1109), }, - [730] = { - [sym_concatenation] = STATE(1186), + [720] = { + [sym_concatenation] = STATE(1155), [sym_string] = STATE(563), [sym_simple_expansion] = STATE(563), [sym_string_expansion] = STATE(563), [sym_expansion] = STATE(563), [sym_command_substitution] = STATE(563), [sym_process_substitution] = STATE(563), - [aux_sym_for_statement_repeat1] = STATE(1186), - [anon_sym_RPAREN] = ACTIONS(2567), + [aux_sym_for_statement_repeat1] = STATE(1155), + [anon_sym_RPAREN] = ACTIONS(2525), [sym__special_characters] = ACTIONS(1113), [anon_sym_DQUOTE] = ACTIONS(1115), [anon_sym_DOLLAR] = ACTIONS(1117), @@ -29681,7 +26012,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(1119), }, - [731] = { + [721] = { [aux_sym_concatenation_repeat1] = STATE(335), [sym__concat] = ACTIONS(581), [sym_variable_name] = ACTIONS(1129), @@ -29706,7 +26037,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(1133), }, - [732] = { + [722] = { [aux_sym_concatenation_repeat1] = STATE(335), [sym__concat] = ACTIONS(581), [sym_variable_name] = ACTIONS(1107), @@ -29731,153 +26062,364 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1107), [anon_sym_AMP] = ACTIONS(1109), }, - [733] = { - [sym__concat] = ACTIONS(1654), - [sym_variable_name] = ACTIONS(1654), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [sym__special_characters] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1656), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1656), - [anon_sym_BQUOTE] = ACTIONS(1656), - [anon_sym_LT_LPAREN] = ACTIONS(1656), - [anon_sym_GT_LPAREN] = ACTIONS(1656), + [723] = { + [sym__concat] = ACTIONS(1642), + [sym_variable_name] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [sym__special_characters] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1644), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1644), + [anon_sym_LT_LPAREN] = ACTIONS(1644), + [anon_sym_GT_LPAREN] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1656), - [sym_word] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1644), + [sym_word] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, - [734] = { - [aux_sym_concatenation_repeat1] = STATE(734), - [sym__concat] = ACTIONS(2569), - [sym_variable_name] = ACTIONS(1654), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [sym__special_characters] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1656), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1656), - [anon_sym_BQUOTE] = ACTIONS(1656), - [anon_sym_LT_LPAREN] = ACTIONS(1656), - [anon_sym_GT_LPAREN] = ACTIONS(1656), + [724] = { + [aux_sym_concatenation_repeat1] = STATE(724), + [sym__concat] = ACTIONS(2527), + [sym_variable_name] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [sym__special_characters] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1644), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1644), + [anon_sym_LT_LPAREN] = ACTIONS(1644), + [anon_sym_GT_LPAREN] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1656), - [sym_word] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1644), + [sym_word] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, - [735] = { - [sym__concat] = ACTIONS(1703), - [sym_variable_name] = ACTIONS(1703), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_RPAREN] = ACTIONS(1705), - [anon_sym_SEMI_SEMI] = ACTIONS(1705), - [anon_sym_PIPE_AMP] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1705), - [anon_sym_PIPE_PIPE] = ACTIONS(1705), - [sym__special_characters] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1705), - [sym_raw_string] = ACTIONS(1705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1705), - [anon_sym_BQUOTE] = ACTIONS(1705), - [anon_sym_LT_LPAREN] = ACTIONS(1705), - [anon_sym_GT_LPAREN] = ACTIONS(1705), + [725] = { + [sym__concat] = ACTIONS(1691), + [sym_variable_name] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1693), + [anon_sym_RPAREN] = ACTIONS(1693), + [anon_sym_SEMI_SEMI] = ACTIONS(1693), + [anon_sym_PIPE_AMP] = ACTIONS(1693), + [anon_sym_AMP_AMP] = ACTIONS(1693), + [anon_sym_PIPE_PIPE] = ACTIONS(1693), + [sym__special_characters] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1693), + [anon_sym_DOLLAR] = ACTIONS(1693), + [sym_raw_string] = ACTIONS(1693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1693), + [anon_sym_BQUOTE] = ACTIONS(1693), + [anon_sym_LT_LPAREN] = ACTIONS(1693), + [anon_sym_GT_LPAREN] = ACTIONS(1693), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1705), - [sym_word] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_LF] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1705), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1693), + [sym_word] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_LF] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1693), }, - [736] = { - [sym_concatenation] = STATE(1190), - [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), - [anon_sym_RBRACE] = ACTIONS(2572), - [sym__special_characters] = ACTIONS(2574), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(2576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), + [726] = { + [sym_concatenation] = STATE(1159), + [sym_string] = STATE(1158), + [sym_simple_expansion] = STATE(1158), + [sym_string_expansion] = STATE(1158), + [sym_expansion] = STATE(1158), + [sym_command_substitution] = STATE(1158), + [sym_process_substitution] = STATE(1158), + [anon_sym_RBRACE] = ACTIONS(2530), + [sym__special_characters] = ACTIONS(2532), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(2534), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2576), + [sym_word] = ACTIONS(2534), }, - [737] = { - [sym__concat] = ACTIONS(1744), - [sym_variable_name] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_SEMI_SEMI] = ACTIONS(1746), - [anon_sym_PIPE_AMP] = ACTIONS(1746), - [anon_sym_AMP_AMP] = ACTIONS(1746), - [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [sym__special_characters] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1746), - [sym_raw_string] = ACTIONS(1746), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1746), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_LT_LPAREN] = ACTIONS(1746), - [anon_sym_GT_LPAREN] = ACTIONS(1746), + [727] = { + [sym__concat] = ACTIONS(1732), + [sym_variable_name] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_SEMI_SEMI] = ACTIONS(1734), + [anon_sym_PIPE_AMP] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [sym__special_characters] = ACTIONS(1734), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1734), + [sym_raw_string] = ACTIONS(1734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1734), + [anon_sym_BQUOTE] = ACTIONS(1734), + [anon_sym_LT_LPAREN] = ACTIONS(1734), + [anon_sym_GT_LPAREN] = ACTIONS(1734), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1746), - [sym_word] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LF] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1746), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1734), + [sym_word] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_LF] = ACTIONS(1732), + [anon_sym_AMP] = ACTIONS(1734), }, - [738] = { + [728] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2578), + [sym_regex_without_right_brace] = ACTIONS(2536), }, - [739] = { - [sym_concatenation] = STATE(839), + [729] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(2580), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(2538), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [730] = { + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(2540), + [sym_comment] = ACTIONS(53), + }, + [731] = { + [sym_concatenation] = STATE(1165), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1165), + [anon_sym_RBRACE] = ACTIONS(2542), + [anon_sym_EQ] = ACTIONS(2544), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2546), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(2548), + [anon_sym_COLON] = ACTIONS(2544), + [anon_sym_COLON_QMARK] = ACTIONS(2544), + [anon_sym_COLON_DASH] = ACTIONS(2544), + [anon_sym_PERCENT] = ACTIONS(2544), + [anon_sym_DASH] = ACTIONS(2544), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [732] = { + [sym_concatenation] = STATE(1168), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1168), + [anon_sym_RBRACE] = ACTIONS(2550), + [anon_sym_EQ] = ACTIONS(2552), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2554), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(2556), + [anon_sym_COLON] = ACTIONS(2552), + [anon_sym_COLON_QMARK] = ACTIONS(2552), + [anon_sym_COLON_DASH] = ACTIONS(2552), + [anon_sym_PERCENT] = ACTIONS(2552), + [anon_sym_DASH] = ACTIONS(2552), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [733] = { + [sym_concatenation] = STATE(1170), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1170), + [anon_sym_RBRACE] = ACTIONS(2530), + [anon_sym_EQ] = ACTIONS(2558), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2560), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(2562), + [anon_sym_COLON] = ACTIONS(2558), + [anon_sym_COLON_QMARK] = ACTIONS(2558), + [anon_sym_COLON_DASH] = ACTIONS(2558), + [anon_sym_PERCENT] = ACTIONS(2558), + [anon_sym_DASH] = ACTIONS(2558), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [734] = { + [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(177), + [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), + }, + [735] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2564), + }, + [736] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [737] = { + [sym__concat] = ACTIONS(1806), + [sym_variable_name] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1808), + [anon_sym_RPAREN] = ACTIONS(1808), + [anon_sym_SEMI_SEMI] = ACTIONS(1808), + [anon_sym_PIPE_AMP] = ACTIONS(1808), + [anon_sym_AMP_AMP] = ACTIONS(1808), + [anon_sym_PIPE_PIPE] = ACTIONS(1808), + [sym__special_characters] = ACTIONS(1808), + [anon_sym_DQUOTE] = ACTIONS(1808), + [anon_sym_DOLLAR] = ACTIONS(1808), + [sym_raw_string] = ACTIONS(1808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1808), + [anon_sym_BQUOTE] = ACTIONS(1808), + [anon_sym_LT_LPAREN] = ACTIONS(1808), + [anon_sym_GT_LPAREN] = ACTIONS(1808), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1808), + [sym_word] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1808), + [anon_sym_LF] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1808), + }, + [738] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2568), + }, + [739] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(2530), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -29886,209 +26428,198 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [740] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(2582), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1940), + [sym_variable_name] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1942), + [anon_sym_PIPE_AMP] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1942), + [anon_sym_PIPE_PIPE] = ACTIONS(1942), + [sym__special_characters] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [anon_sym_DOLLAR] = ACTIONS(1942), + [sym_raw_string] = ACTIONS(1942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1942), + [anon_sym_BQUOTE] = ACTIONS(1942), + [anon_sym_LT_LPAREN] = ACTIONS(1942), + [anon_sym_GT_LPAREN] = ACTIONS(1942), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1942), + [sym_word] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1942), }, [741] = { - [sym_concatenation] = STATE(1196), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1196), - [anon_sym_RBRACE] = ACTIONS(2584), - [anon_sym_EQ] = ACTIONS(2586), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2588), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2590), - [anon_sym_COLON] = ACTIONS(2586), - [anon_sym_COLON_QMARK] = ACTIONS(2586), - [anon_sym_COLON_DASH] = ACTIONS(2586), - [anon_sym_PERCENT] = ACTIONS(2586), - [anon_sym_DASH] = ACTIONS(2586), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym__concat] = ACTIONS(2006), + [sym_variable_name] = ACTIONS(2006), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2008), + [anon_sym_SEMI_SEMI] = ACTIONS(2008), + [anon_sym_PIPE_AMP] = ACTIONS(2008), + [anon_sym_AMP_AMP] = ACTIONS(2008), + [anon_sym_PIPE_PIPE] = ACTIONS(2008), + [sym__special_characters] = ACTIONS(2008), + [anon_sym_DQUOTE] = ACTIONS(2008), + [anon_sym_DOLLAR] = ACTIONS(2008), + [sym_raw_string] = ACTIONS(2008), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2008), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2008), + [anon_sym_BQUOTE] = ACTIONS(2008), + [anon_sym_LT_LPAREN] = ACTIONS(2008), + [anon_sym_GT_LPAREN] = ACTIONS(2008), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2008), + [sym_word] = ACTIONS(2008), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_LF] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2008), }, [742] = { - [sym_concatenation] = STATE(1199), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1199), - [anon_sym_RBRACE] = ACTIONS(2592), - [anon_sym_EQ] = ACTIONS(2594), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2596), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2598), - [anon_sym_COLON] = ACTIONS(2594), - [anon_sym_COLON_QMARK] = ACTIONS(2594), - [anon_sym_COLON_DASH] = ACTIONS(2594), - [anon_sym_PERCENT] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym__concat] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [sym__special_characters] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1644), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1644), + [anon_sym_LT_LPAREN] = ACTIONS(1644), + [anon_sym_GT_LPAREN] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1644), + [sym_word] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, [743] = { - [sym_concatenation] = STATE(1201), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1201), - [anon_sym_RBRACE] = ACTIONS(2572), - [anon_sym_EQ] = ACTIONS(2600), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [aux_sym_concatenation_repeat1] = STATE(743), + [sym__concat] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [sym__special_characters] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1644), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1644), + [anon_sym_LT_LPAREN] = ACTIONS(1644), + [anon_sym_GT_LPAREN] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1644), + [sym_word] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, [744] = { - [sym__concat] = ACTIONS(1810), - [sym_variable_name] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_SEMI_SEMI] = ACTIONS(1812), - [anon_sym_PIPE_AMP] = ACTIONS(1812), - [anon_sym_AMP_AMP] = ACTIONS(1812), - [anon_sym_PIPE_PIPE] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(1812), - [anon_sym_DQUOTE] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1812), - [sym_raw_string] = ACTIONS(1812), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1812), - [anon_sym_GT_LPAREN] = ACTIONS(1812), + [sym__concat] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1693), + [anon_sym_RPAREN] = ACTIONS(1693), + [anon_sym_SEMI_SEMI] = ACTIONS(1693), + [anon_sym_PIPE_AMP] = ACTIONS(1693), + [anon_sym_AMP_AMP] = ACTIONS(1693), + [anon_sym_PIPE_PIPE] = ACTIONS(1693), + [sym__special_characters] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1693), + [anon_sym_DOLLAR] = ACTIONS(1693), + [sym_raw_string] = ACTIONS(1693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1693), + [anon_sym_BQUOTE] = ACTIONS(1693), + [anon_sym_LT_LPAREN] = ACTIONS(1693), + [anon_sym_GT_LPAREN] = ACTIONS(1693), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1812), - [sym_word] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_LF] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1812), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1693), + [sym_word] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_LF] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1693), }, [745] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2606), + [sym_concatenation] = STATE(1177), + [sym_string] = STATE(1176), + [sym_simple_expansion] = STATE(1176), + [sym_string_expansion] = STATE(1176), + [sym_expansion] = STATE(1176), + [sym_command_substitution] = STATE(1176), + [sym_process_substitution] = STATE(1176), + [anon_sym_RBRACE] = ACTIONS(2573), + [sym__special_characters] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(2577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2577), }, [746] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(2608), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym__concat] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_SEMI_SEMI] = ACTIONS(1734), + [anon_sym_PIPE_AMP] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [sym__special_characters] = ACTIONS(1734), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1734), + [sym_raw_string] = ACTIONS(1734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1734), + [anon_sym_BQUOTE] = ACTIONS(1734), + [anon_sym_LT_LPAREN] = ACTIONS(1734), + [anon_sym_GT_LPAREN] = ACTIONS(1734), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1734), + [sym_word] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_LF] = ACTIONS(1732), + [anon_sym_AMP] = ACTIONS(1734), }, [747] = { - [sym__concat] = ACTIONS(1818), - [sym_variable_name] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_RPAREN] = ACTIONS(1820), - [anon_sym_SEMI_SEMI] = ACTIONS(1820), - [anon_sym_PIPE_AMP] = ACTIONS(1820), - [anon_sym_AMP_AMP] = ACTIONS(1820), - [anon_sym_PIPE_PIPE] = ACTIONS(1820), - [sym__special_characters] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1820), - [sym_raw_string] = ACTIONS(1820), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1820), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1820), - [anon_sym_BQUOTE] = ACTIONS(1820), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1820), - [sym_word] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_LF] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1820), + [sym_regex_without_right_brace] = ACTIONS(2579), }, [748] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2610), - }, - [749] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(2572), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(2581), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -30096,199 +26627,208 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, + [749] = { + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(2583), + [sym_comment] = ACTIONS(53), + }, [750] = { - [sym__concat] = ACTIONS(1952), - [sym_variable_name] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_RPAREN] = ACTIONS(1954), - [anon_sym_SEMI_SEMI] = ACTIONS(1954), - [anon_sym_PIPE_AMP] = ACTIONS(1954), - [anon_sym_AMP_AMP] = ACTIONS(1954), - [anon_sym_PIPE_PIPE] = ACTIONS(1954), - [sym__special_characters] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(1954), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1954), - [anon_sym_BQUOTE] = ACTIONS(1954), - [anon_sym_LT_LPAREN] = ACTIONS(1954), - [anon_sym_GT_LPAREN] = ACTIONS(1954), + [sym_concatenation] = STATE(1183), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1183), + [anon_sym_RBRACE] = ACTIONS(2585), + [anon_sym_EQ] = ACTIONS(2587), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(2591), + [anon_sym_COLON] = ACTIONS(2587), + [anon_sym_COLON_QMARK] = ACTIONS(2587), + [anon_sym_COLON_DASH] = ACTIONS(2587), + [anon_sym_PERCENT] = ACTIONS(2587), + [anon_sym_DASH] = ACTIONS(2587), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1954), - [sym_word] = ACTIONS(1954), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_LF] = ACTIONS(1952), - [anon_sym_AMP] = ACTIONS(1954), + [sym_word] = ACTIONS(767), }, [751] = { - [sym__concat] = ACTIONS(2018), - [sym_variable_name] = ACTIONS(2018), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_RPAREN] = ACTIONS(2020), - [anon_sym_SEMI_SEMI] = ACTIONS(2020), - [anon_sym_PIPE_AMP] = ACTIONS(2020), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [sym__special_characters] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym_DOLLAR] = ACTIONS(2020), - [sym_raw_string] = ACTIONS(2020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2020), - [anon_sym_BQUOTE] = ACTIONS(2020), - [anon_sym_LT_LPAREN] = ACTIONS(2020), - [anon_sym_GT_LPAREN] = ACTIONS(2020), + [sym_concatenation] = STATE(1186), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1186), + [anon_sym_RBRACE] = ACTIONS(2593), + [anon_sym_EQ] = ACTIONS(2595), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2597), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(2599), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_COLON_QMARK] = ACTIONS(2595), + [anon_sym_COLON_DASH] = ACTIONS(2595), + [anon_sym_PERCENT] = ACTIONS(2595), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2020), - [sym_word] = ACTIONS(2020), - [anon_sym_SEMI] = ACTIONS(2020), - [anon_sym_LF] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2020), + [sym_word] = ACTIONS(767), }, [752] = { - [sym__concat] = ACTIONS(1654), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [sym__special_characters] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1656), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1656), - [anon_sym_BQUOTE] = ACTIONS(1656), - [anon_sym_LT_LPAREN] = ACTIONS(1656), - [anon_sym_GT_LPAREN] = ACTIONS(1656), + [sym_concatenation] = STATE(1188), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1188), + [anon_sym_RBRACE] = ACTIONS(2573), + [anon_sym_EQ] = ACTIONS(2601), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2603), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2601), + [anon_sym_COLON_QMARK] = ACTIONS(2601), + [anon_sym_COLON_DASH] = ACTIONS(2601), + [anon_sym_PERCENT] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(2601), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1656), - [sym_word] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), + [sym_word] = ACTIONS(767), }, [753] = { - [aux_sym_concatenation_repeat1] = STATE(753), - [sym__concat] = ACTIONS(2612), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [sym__special_characters] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1656), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1656), - [anon_sym_BQUOTE] = ACTIONS(1656), - [anon_sym_LT_LPAREN] = ACTIONS(1656), - [anon_sym_GT_LPAREN] = ACTIONS(1656), + [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(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1656), - [sym_word] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), + [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), }, [754] = { - [sym__concat] = ACTIONS(1703), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_RPAREN] = ACTIONS(1705), - [anon_sym_SEMI_SEMI] = ACTIONS(1705), - [anon_sym_PIPE_AMP] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1705), - [anon_sym_PIPE_PIPE] = ACTIONS(1705), - [sym__special_characters] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1705), - [sym_raw_string] = ACTIONS(1705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1705), - [anon_sym_BQUOTE] = ACTIONS(1705), - [anon_sym_LT_LPAREN] = ACTIONS(1705), - [anon_sym_GT_LPAREN] = ACTIONS(1705), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1705), - [sym_word] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_LF] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1705), + [sym_regex_without_right_brace] = ACTIONS(2607), }, [755] = { - [sym_concatenation] = STATE(1208), - [sym_string] = STATE(1207), - [sym_simple_expansion] = STATE(1207), - [sym_string_expansion] = STATE(1207), - [sym_expansion] = STATE(1207), - [sym_command_substitution] = STATE(1207), - [sym_process_substitution] = STATE(1207), - [anon_sym_RBRACE] = ACTIONS(2615), - [sym__special_characters] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(2619), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2619), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(2609), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [756] = { - [sym__concat] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_SEMI_SEMI] = ACTIONS(1746), - [anon_sym_PIPE_AMP] = ACTIONS(1746), - [anon_sym_AMP_AMP] = ACTIONS(1746), - [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [sym__special_characters] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1746), - [sym_raw_string] = ACTIONS(1746), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1746), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_LT_LPAREN] = ACTIONS(1746), - [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym__concat] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1808), + [anon_sym_RPAREN] = ACTIONS(1808), + [anon_sym_SEMI_SEMI] = ACTIONS(1808), + [anon_sym_PIPE_AMP] = ACTIONS(1808), + [anon_sym_AMP_AMP] = ACTIONS(1808), + [anon_sym_PIPE_PIPE] = ACTIONS(1808), + [sym__special_characters] = ACTIONS(1808), + [anon_sym_DQUOTE] = ACTIONS(1808), + [anon_sym_DOLLAR] = ACTIONS(1808), + [sym_raw_string] = ACTIONS(1808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1808), + [anon_sym_BQUOTE] = ACTIONS(1808), + [anon_sym_LT_LPAREN] = ACTIONS(1808), + [anon_sym_GT_LPAREN] = ACTIONS(1808), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1746), - [sym_word] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LF] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1746), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1808), + [sym_word] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1808), + [anon_sym_LF] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1808), }, [757] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2621), + [sym_regex_without_right_brace] = ACTIONS(2611), }, [758] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(2623), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(2573), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -30297,207 +26837,208 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [759] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(2625), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1942), + [anon_sym_PIPE_AMP] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1942), + [anon_sym_PIPE_PIPE] = ACTIONS(1942), + [sym__special_characters] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [anon_sym_DOLLAR] = ACTIONS(1942), + [sym_raw_string] = ACTIONS(1942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1942), + [anon_sym_BQUOTE] = ACTIONS(1942), + [anon_sym_LT_LPAREN] = ACTIONS(1942), + [anon_sym_GT_LPAREN] = ACTIONS(1942), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1942), + [sym_word] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1942), }, [760] = { - [sym_concatenation] = STATE(1214), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1214), - [anon_sym_RBRACE] = ACTIONS(2627), - [anon_sym_EQ] = ACTIONS(2629), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2631), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2633), - [anon_sym_COLON] = ACTIONS(2629), - [anon_sym_COLON_QMARK] = ACTIONS(2629), - [anon_sym_COLON_DASH] = ACTIONS(2629), - [anon_sym_PERCENT] = ACTIONS(2629), - [anon_sym_DASH] = ACTIONS(2629), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym__concat] = ACTIONS(2006), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2008), + [anon_sym_SEMI_SEMI] = ACTIONS(2008), + [anon_sym_PIPE_AMP] = ACTIONS(2008), + [anon_sym_AMP_AMP] = ACTIONS(2008), + [anon_sym_PIPE_PIPE] = ACTIONS(2008), + [sym__special_characters] = ACTIONS(2008), + [anon_sym_DQUOTE] = ACTIONS(2008), + [anon_sym_DOLLAR] = ACTIONS(2008), + [sym_raw_string] = ACTIONS(2008), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2008), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2008), + [anon_sym_BQUOTE] = ACTIONS(2008), + [anon_sym_LT_LPAREN] = ACTIONS(2008), + [anon_sym_GT_LPAREN] = ACTIONS(2008), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2008), + [sym_word] = ACTIONS(2008), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_LF] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2008), }, [761] = { - [sym_concatenation] = STATE(1217), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1217), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_EQ] = ACTIONS(2637), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2639), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2641), - [anon_sym_COLON] = ACTIONS(2637), - [anon_sym_COLON_QMARK] = ACTIONS(2637), - [anon_sym_COLON_DASH] = ACTIONS(2637), - [anon_sym_PERCENT] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(1642), + [sym_variable_name] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_PIPE_AMP] = ACTIONS(1642), + [anon_sym_AMP_AMP] = ACTIONS(1642), + [anon_sym_PIPE_PIPE] = ACTIONS(1642), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1642), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1642), + [anon_sym_LT_AMP] = ACTIONS(1642), + [anon_sym_GT_AMP] = ACTIONS(1642), + [sym__special_characters] = ACTIONS(1642), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1642), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1642), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), + [anon_sym_LT_LPAREN] = ACTIONS(1642), + [anon_sym_GT_LPAREN] = ACTIONS(1642), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1642), }, [762] = { - [sym_concatenation] = STATE(1219), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1219), - [anon_sym_RBRACE] = ACTIONS(2615), - [anon_sym_EQ] = ACTIONS(2643), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2645), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2647), - [anon_sym_COLON] = ACTIONS(2643), - [anon_sym_COLON_QMARK] = ACTIONS(2643), - [anon_sym_COLON_DASH] = ACTIONS(2643), - [anon_sym_PERCENT] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_concatenation_repeat1] = STATE(762), + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(2613), + [sym_variable_name] = ACTIONS(1642), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1642), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1642), + [anon_sym_LT_AMP] = ACTIONS(1642), + [anon_sym_GT_AMP] = ACTIONS(1642), + [sym__special_characters] = ACTIONS(1642), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1642), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1642), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), + [anon_sym_LT_LPAREN] = ACTIONS(1642), + [anon_sym_GT_LPAREN] = ACTIONS(1642), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1642), }, [763] = { - [sym__concat] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_SEMI_SEMI] = ACTIONS(1812), - [anon_sym_PIPE_AMP] = ACTIONS(1812), - [anon_sym_AMP_AMP] = ACTIONS(1812), - [anon_sym_PIPE_PIPE] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(1812), - [anon_sym_DQUOTE] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1812), - [sym_raw_string] = ACTIONS(1812), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1812), - [anon_sym_GT_LPAREN] = ACTIONS(1812), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1812), - [sym_word] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_LF] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1812), + [sym_file_descriptor] = ACTIONS(1691), + [sym__concat] = ACTIONS(1691), + [sym_variable_name] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1693), + [anon_sym_RPAREN] = ACTIONS(1691), + [anon_sym_PIPE_AMP] = ACTIONS(1691), + [anon_sym_AMP_AMP] = ACTIONS(1691), + [anon_sym_PIPE_PIPE] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1693), + [anon_sym_GT] = ACTIONS(1693), + [anon_sym_GT_GT] = ACTIONS(1691), + [anon_sym_AMP_GT] = ACTIONS(1693), + [anon_sym_AMP_GT_GT] = ACTIONS(1691), + [anon_sym_LT_AMP] = ACTIONS(1691), + [anon_sym_GT_AMP] = ACTIONS(1691), + [sym__special_characters] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(1693), + [sym_raw_string] = ACTIONS(1691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1691), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1691), + [anon_sym_BQUOTE] = ACTIONS(1691), + [anon_sym_LT_LPAREN] = ACTIONS(1691), + [anon_sym_GT_LPAREN] = ACTIONS(1691), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1691), }, [764] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2649), + [sym_concatenation] = STATE(1195), + [sym_string] = STATE(1194), + [sym_simple_expansion] = STATE(1194), + [sym_string_expansion] = STATE(1194), + [sym_expansion] = STATE(1194), + [sym_command_substitution] = STATE(1194), + [sym_process_substitution] = STATE(1194), + [anon_sym_RBRACE] = ACTIONS(2616), + [sym__special_characters] = ACTIONS(2618), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(2620), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2620), }, [765] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(1732), + [sym__concat] = ACTIONS(1732), + [sym_variable_name] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1732), + [anon_sym_PIPE_AMP] = ACTIONS(1732), + [anon_sym_AMP_AMP] = ACTIONS(1732), + [anon_sym_PIPE_PIPE] = ACTIONS(1732), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_GT_GT] = ACTIONS(1732), + [anon_sym_AMP_GT] = ACTIONS(1734), + [anon_sym_AMP_GT_GT] = ACTIONS(1732), + [anon_sym_LT_AMP] = ACTIONS(1732), + [anon_sym_GT_AMP] = ACTIONS(1732), + [sym__special_characters] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1732), + [anon_sym_DOLLAR] = ACTIONS(1734), + [sym_raw_string] = ACTIONS(1732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1732), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1732), + [anon_sym_BQUOTE] = ACTIONS(1732), + [anon_sym_LT_LPAREN] = ACTIONS(1732), + [anon_sym_GT_LPAREN] = ACTIONS(1732), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1732), }, [766] = { - [sym__concat] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_RPAREN] = ACTIONS(1820), - [anon_sym_SEMI_SEMI] = ACTIONS(1820), - [anon_sym_PIPE_AMP] = ACTIONS(1820), - [anon_sym_AMP_AMP] = ACTIONS(1820), - [anon_sym_PIPE_PIPE] = ACTIONS(1820), - [sym__special_characters] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1820), - [sym_raw_string] = ACTIONS(1820), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1820), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1820), - [anon_sym_BQUOTE] = ACTIONS(1820), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1820), - [sym_word] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_LF] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1820), + [sym_regex_without_right_brace] = ACTIONS(2622), }, [767] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2653), - }, - [768] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(2615), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -30505,209 +27046,216 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, + [768] = { + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(2626), + [sym_comment] = ACTIONS(53), + }, [769] = { - [sym__concat] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_RPAREN] = ACTIONS(1954), - [anon_sym_SEMI_SEMI] = ACTIONS(1954), - [anon_sym_PIPE_AMP] = ACTIONS(1954), - [anon_sym_AMP_AMP] = ACTIONS(1954), - [anon_sym_PIPE_PIPE] = ACTIONS(1954), - [sym__special_characters] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(1954), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1954), - [anon_sym_BQUOTE] = ACTIONS(1954), - [anon_sym_LT_LPAREN] = ACTIONS(1954), - [anon_sym_GT_LPAREN] = ACTIONS(1954), + [sym_concatenation] = STATE(1201), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1201), + [anon_sym_RBRACE] = ACTIONS(2628), + [anon_sym_EQ] = ACTIONS(2630), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2632), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(2634), + [anon_sym_COLON] = ACTIONS(2630), + [anon_sym_COLON_QMARK] = ACTIONS(2630), + [anon_sym_COLON_DASH] = ACTIONS(2630), + [anon_sym_PERCENT] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1954), - [sym_word] = ACTIONS(1954), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_LF] = ACTIONS(1952), - [anon_sym_AMP] = ACTIONS(1954), + [sym_word] = ACTIONS(767), }, [770] = { - [sym__concat] = ACTIONS(2018), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_RPAREN] = ACTIONS(2020), - [anon_sym_SEMI_SEMI] = ACTIONS(2020), - [anon_sym_PIPE_AMP] = ACTIONS(2020), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [sym__special_characters] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym_DOLLAR] = ACTIONS(2020), - [sym_raw_string] = ACTIONS(2020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2020), - [anon_sym_BQUOTE] = ACTIONS(2020), - [anon_sym_LT_LPAREN] = ACTIONS(2020), - [anon_sym_GT_LPAREN] = ACTIONS(2020), + [sym_concatenation] = STATE(1204), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1204), + [anon_sym_RBRACE] = ACTIONS(2636), + [anon_sym_EQ] = ACTIONS(2638), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2640), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(2642), + [anon_sym_COLON] = ACTIONS(2638), + [anon_sym_COLON_QMARK] = ACTIONS(2638), + [anon_sym_COLON_DASH] = ACTIONS(2638), + [anon_sym_PERCENT] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2020), - [sym_word] = ACTIONS(2020), - [anon_sym_SEMI] = ACTIONS(2020), - [anon_sym_LF] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2020), + [sym_word] = ACTIONS(767), }, [771] = { - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(1654), - [sym_variable_name] = ACTIONS(1654), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1654), - [anon_sym_PIPE_AMP] = ACTIONS(1654), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_PIPE_PIPE] = ACTIONS(1654), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1654), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1654), - [anon_sym_LT_AMP] = ACTIONS(1654), - [anon_sym_GT_AMP] = ACTIONS(1654), - [sym__special_characters] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1654), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [anon_sym_LT_LPAREN] = ACTIONS(1654), - [anon_sym_GT_LPAREN] = ACTIONS(1654), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1654), + [sym_concatenation] = STATE(1206), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1206), + [anon_sym_RBRACE] = ACTIONS(2616), + [anon_sym_EQ] = ACTIONS(2644), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [772] = { - [aux_sym_concatenation_repeat1] = STATE(772), - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(2655), - [sym_variable_name] = ACTIONS(1654), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1654), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1654), - [anon_sym_LT_AMP] = ACTIONS(1654), - [anon_sym_GT_AMP] = ACTIONS(1654), - [sym__special_characters] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1654), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [anon_sym_LT_LPAREN] = ACTIONS(1654), - [anon_sym_GT_LPAREN] = ACTIONS(1654), + [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(53), - [sym_word] = ACTIONS(1654), + [sym_word] = ACTIONS(1798), }, [773] = { - [sym_file_descriptor] = ACTIONS(1703), - [sym__concat] = ACTIONS(1703), - [sym_variable_name] = ACTIONS(1703), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_RPAREN] = ACTIONS(1703), - [anon_sym_PIPE_AMP] = ACTIONS(1703), - [anon_sym_AMP_AMP] = ACTIONS(1703), - [anon_sym_PIPE_PIPE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_GT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1703), - [anon_sym_AMP_GT] = ACTIONS(1705), - [anon_sym_AMP_GT_GT] = ACTIONS(1703), - [anon_sym_LT_AMP] = ACTIONS(1703), - [anon_sym_GT_AMP] = ACTIONS(1703), - [sym__special_characters] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1703), - [anon_sym_DOLLAR] = ACTIONS(1705), - [sym_raw_string] = ACTIONS(1703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1703), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1703), - [anon_sym_BQUOTE] = ACTIONS(1703), - [anon_sym_LT_LPAREN] = ACTIONS(1703), - [anon_sym_GT_LPAREN] = ACTIONS(1703), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1703), + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2650), }, [774] = { - [sym_concatenation] = STATE(1226), - [sym_string] = STATE(1225), - [sym_simple_expansion] = STATE(1225), - [sym_string_expansion] = STATE(1225), - [sym_expansion] = STATE(1225), - [sym_command_substitution] = STATE(1225), - [sym_process_substitution] = STATE(1225), - [anon_sym_RBRACE] = ACTIONS(2658), - [sym__special_characters] = ACTIONS(2660), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(2662), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2662), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(2652), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [775] = { - [sym_file_descriptor] = ACTIONS(1744), - [sym__concat] = ACTIONS(1744), - [sym_variable_name] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1744), - [anon_sym_PIPE_AMP] = ACTIONS(1744), - [anon_sym_AMP_AMP] = ACTIONS(1744), - [anon_sym_PIPE_PIPE] = ACTIONS(1744), - [anon_sym_LT] = ACTIONS(1746), - [anon_sym_GT] = ACTIONS(1746), - [anon_sym_GT_GT] = ACTIONS(1744), - [anon_sym_AMP_GT] = ACTIONS(1746), - [anon_sym_AMP_GT_GT] = ACTIONS(1744), - [anon_sym_LT_AMP] = ACTIONS(1744), - [anon_sym_GT_AMP] = ACTIONS(1744), - [sym__special_characters] = ACTIONS(1744), - [anon_sym_DQUOTE] = ACTIONS(1744), - [anon_sym_DOLLAR] = ACTIONS(1746), - [sym_raw_string] = ACTIONS(1744), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1744), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1744), - [anon_sym_BQUOTE] = ACTIONS(1744), - [anon_sym_LT_LPAREN] = ACTIONS(1744), - [anon_sym_GT_LPAREN] = ACTIONS(1744), + [sym_file_descriptor] = ACTIONS(1806), + [sym__concat] = ACTIONS(1806), + [sym_variable_name] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1808), + [anon_sym_RPAREN] = ACTIONS(1806), + [anon_sym_PIPE_AMP] = ACTIONS(1806), + [anon_sym_AMP_AMP] = ACTIONS(1806), + [anon_sym_PIPE_PIPE] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_GT_GT] = ACTIONS(1806), + [anon_sym_AMP_GT] = ACTIONS(1808), + [anon_sym_AMP_GT_GT] = ACTIONS(1806), + [anon_sym_LT_AMP] = ACTIONS(1806), + [anon_sym_GT_AMP] = ACTIONS(1806), + [sym__special_characters] = ACTIONS(1806), + [anon_sym_DQUOTE] = ACTIONS(1806), + [anon_sym_DOLLAR] = ACTIONS(1808), + [sym_raw_string] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1806), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1806), + [anon_sym_BQUOTE] = ACTIONS(1806), + [anon_sym_LT_LPAREN] = ACTIONS(1806), + [anon_sym_GT_LPAREN] = ACTIONS(1806), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1744), + [sym_word] = ACTIONS(1806), }, [776] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2664), + [sym_regex_without_right_brace] = ACTIONS(2654), }, [777] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(2666), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(2616), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -30716,154 +27264,127 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [778] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(2668), + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(1940), + [sym_variable_name] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1940), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_GT_GT] = ACTIONS(1940), + [anon_sym_AMP_GT] = ACTIONS(1942), + [anon_sym_AMP_GT_GT] = ACTIONS(1940), + [anon_sym_LT_AMP] = ACTIONS(1940), + [anon_sym_GT_AMP] = ACTIONS(1940), + [sym__special_characters] = ACTIONS(1940), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(1942), + [sym_raw_string] = ACTIONS(1940), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1940), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [anon_sym_LT_LPAREN] = ACTIONS(1940), + [anon_sym_GT_LPAREN] = ACTIONS(1940), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1940), }, [779] = { - [sym_concatenation] = STATE(1232), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1232), - [anon_sym_RBRACE] = ACTIONS(2670), - [anon_sym_EQ] = ACTIONS(2672), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2674), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2676), - [anon_sym_COLON] = ACTIONS(2672), - [anon_sym_COLON_QMARK] = ACTIONS(2672), - [anon_sym_COLON_DASH] = ACTIONS(2672), - [anon_sym_PERCENT] = ACTIONS(2672), - [anon_sym_DASH] = ACTIONS(2672), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(2006), + [sym__concat] = ACTIONS(2006), + [sym_variable_name] = ACTIONS(2006), + [anon_sym_PIPE] = ACTIONS(2008), + [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(2008), + [anon_sym_GT] = ACTIONS(2008), + [anon_sym_GT_GT] = ACTIONS(2006), + [anon_sym_AMP_GT] = ACTIONS(2008), + [anon_sym_AMP_GT_GT] = ACTIONS(2006), + [anon_sym_LT_AMP] = ACTIONS(2006), + [anon_sym_GT_AMP] = ACTIONS(2006), + [sym__special_characters] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [anon_sym_DOLLAR] = ACTIONS(2008), + [sym_raw_string] = ACTIONS(2006), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2006), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2006), + [anon_sym_BQUOTE] = ACTIONS(2006), + [anon_sym_LT_LPAREN] = ACTIONS(2006), + [anon_sym_GT_LPAREN] = ACTIONS(2006), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2006), }, [780] = { - [sym_concatenation] = STATE(1235), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1235), - [anon_sym_RBRACE] = ACTIONS(2678), - [anon_sym_EQ] = ACTIONS(2680), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2682), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2684), - [anon_sym_COLON] = ACTIONS(2680), - [anon_sym_COLON_QMARK] = ACTIONS(2680), - [anon_sym_COLON_DASH] = ACTIONS(2680), - [anon_sym_PERCENT] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2680), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(2656), + [anon_sym_DOLLAR] = ACTIONS(2656), + [sym__string_content] = ACTIONS(2658), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2656), + [anon_sym_BQUOTE] = ACTIONS(2656), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), }, [781] = { - [sym_concatenation] = STATE(1237), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1237), - [anon_sym_RBRACE] = ACTIONS(2658), - [anon_sym_EQ] = ACTIONS(2686), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2690), - [anon_sym_COLON] = ACTIONS(2686), - [anon_sym_COLON_QMARK] = ACTIONS(2686), - [anon_sym_COLON_DASH] = ACTIONS(2686), - [anon_sym_PERCENT] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2686), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_concatenation] = STATE(1213), + [sym_string] = STATE(1212), + [sym_simple_expansion] = STATE(1212), + [sym_string_expansion] = STATE(1212), + [sym_expansion] = STATE(1212), + [sym_command_substitution] = STATE(1212), + [sym_process_substitution] = STATE(1212), + [anon_sym_RBRACE] = ACTIONS(2660), + [sym__special_characters] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(2664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2664), }, [782] = { - [sym_file_descriptor] = ACTIONS(1810), - [sym__concat] = ACTIONS(1810), - [sym_variable_name] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_PIPE_AMP] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1812), - [anon_sym_GT] = ACTIONS(1812), - [anon_sym_GT_GT] = ACTIONS(1810), - [anon_sym_AMP_GT] = ACTIONS(1812), - [anon_sym_AMP_GT_GT] = ACTIONS(1810), - [anon_sym_LT_AMP] = ACTIONS(1810), - [anon_sym_GT_AMP] = ACTIONS(1810), - [sym__special_characters] = ACTIONS(1810), - [anon_sym_DQUOTE] = ACTIONS(1810), - [anon_sym_DOLLAR] = ACTIONS(1812), - [sym_raw_string] = ACTIONS(1810), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1810), - [anon_sym_LT_LPAREN] = ACTIONS(1810), - [anon_sym_GT_LPAREN] = ACTIONS(1810), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1810), + [sym__concat] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1734), + [sym__string_content] = ACTIONS(1732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1734), + [anon_sym_BQUOTE] = ACTIONS(1734), + [sym_comment] = ACTIONS(177), }, [783] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2692), + [sym_regex_without_right_brace] = ACTIONS(2666), }, [784] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(2694), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(2668), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -30872,59 +27393,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [785] = { - [sym_file_descriptor] = ACTIONS(1818), - [sym__concat] = ACTIONS(1818), - [sym_variable_name] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_PIPE_AMP] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1820), - [anon_sym_GT] = ACTIONS(1820), - [anon_sym_GT_GT] = ACTIONS(1818), - [anon_sym_AMP_GT] = ACTIONS(1820), - [anon_sym_AMP_GT_GT] = ACTIONS(1818), - [anon_sym_LT_AMP] = ACTIONS(1818), - [anon_sym_GT_AMP] = ACTIONS(1818), - [sym__special_characters] = ACTIONS(1818), - [anon_sym_DQUOTE] = ACTIONS(1818), - [anon_sym_DOLLAR] = ACTIONS(1820), - [sym_raw_string] = ACTIONS(1818), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1818), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1818), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1818), - [anon_sym_GT_LPAREN] = ACTIONS(1818), + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(2670), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1818), }, [786] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2696), - }, - [787] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(1219), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(2658), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(1219), + [anon_sym_RBRACE] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2674), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(2676), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [aux_sym_SLASH] = ACTIONS(2678), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [787] = { + [sym_concatenation] = STATE(1222), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1222), + [anon_sym_RBRACE] = ACTIONS(2680), + [anon_sym_EQ] = ACTIONS(2682), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2684), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(2686), + [anon_sym_COLON] = ACTIONS(2682), + [anon_sym_COLON_QMARK] = ACTIONS(2682), + [anon_sym_COLON_DASH] = ACTIONS(2682), + [anon_sym_PERCENT] = ACTIONS(2682), + [anon_sym_DASH] = ACTIONS(2682), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -30933,127 +27458,114 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [788] = { - [sym_file_descriptor] = ACTIONS(1952), - [sym__concat] = ACTIONS(1952), - [sym_variable_name] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_RPAREN] = ACTIONS(1952), - [anon_sym_PIPE_AMP] = ACTIONS(1952), - [anon_sym_AMP_AMP] = ACTIONS(1952), - [anon_sym_PIPE_PIPE] = ACTIONS(1952), - [anon_sym_LT] = ACTIONS(1954), - [anon_sym_GT] = ACTIONS(1954), - [anon_sym_GT_GT] = ACTIONS(1952), - [anon_sym_AMP_GT] = ACTIONS(1954), - [anon_sym_AMP_GT_GT] = ACTIONS(1952), - [anon_sym_LT_AMP] = ACTIONS(1952), - [anon_sym_GT_AMP] = ACTIONS(1952), - [sym__special_characters] = ACTIONS(1952), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(1952), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1952), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1952), - [anon_sym_BQUOTE] = ACTIONS(1952), - [anon_sym_LT_LPAREN] = ACTIONS(1952), - [anon_sym_GT_LPAREN] = ACTIONS(1952), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1952), - }, - [789] = { - [sym_file_descriptor] = ACTIONS(2018), - [sym__concat] = ACTIONS(2018), - [sym_variable_name] = ACTIONS(2018), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_RPAREN] = ACTIONS(2018), - [anon_sym_PIPE_AMP] = ACTIONS(2018), - [anon_sym_AMP_AMP] = ACTIONS(2018), - [anon_sym_PIPE_PIPE] = ACTIONS(2018), - [anon_sym_LT] = ACTIONS(2020), - [anon_sym_GT] = ACTIONS(2020), - [anon_sym_GT_GT] = ACTIONS(2018), - [anon_sym_AMP_GT] = ACTIONS(2020), - [anon_sym_AMP_GT_GT] = ACTIONS(2018), - [anon_sym_LT_AMP] = ACTIONS(2018), - [anon_sym_GT_AMP] = ACTIONS(2018), - [sym__special_characters] = ACTIONS(2018), - [anon_sym_DQUOTE] = ACTIONS(2018), - [anon_sym_DOLLAR] = ACTIONS(2020), - [sym_raw_string] = ACTIONS(2018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2018), - [anon_sym_BQUOTE] = ACTIONS(2018), - [anon_sym_LT_LPAREN] = ACTIONS(2018), - [anon_sym_GT_LPAREN] = ACTIONS(2018), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2018), - }, - [790] = { - [anon_sym_DQUOTE] = ACTIONS(2698), - [anon_sym_DOLLAR] = ACTIONS(2698), - [sym__string_content] = ACTIONS(2700), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2698), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2698), - [anon_sym_BQUOTE] = ACTIONS(2698), - [sym_comment] = ACTIONS(177), - }, - [791] = { - [sym_concatenation] = STATE(1244), - [sym_string] = STATE(1243), - [sym_simple_expansion] = STATE(1243), - [sym_string_expansion] = STATE(1243), - [sym_expansion] = STATE(1243), - [sym_command_substitution] = STATE(1243), - [sym_process_substitution] = STATE(1243), - [anon_sym_RBRACE] = ACTIONS(2702), - [sym__special_characters] = ACTIONS(2704), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(2706), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2706), - }, - [792] = { - [sym__concat] = ACTIONS(1744), - [anon_sym_DQUOTE] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1746), - [sym__string_content] = ACTIONS(1744), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1746), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_comment] = ACTIONS(177), - }, - [793] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2708), - }, - [794] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(1224), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(2710), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(1224), + [anon_sym_RBRACE] = ACTIONS(2660), + [anon_sym_EQ] = ACTIONS(2688), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(2690), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [aux_sym_SLASH] = ACTIONS(2692), + [anon_sym_COLON] = ACTIONS(2688), + [anon_sym_COLON_QMARK] = ACTIONS(2688), + [anon_sym_COLON_DASH] = ACTIONS(2688), + [anon_sym_PERCENT] = ACTIONS(2688), + [anon_sym_DASH] = ACTIONS(2688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [789] = { + [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(177), + }, + [790] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2694), + }, + [791] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(2696), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [792] = { + [sym__concat] = ACTIONS(1806), + [anon_sym_DQUOTE] = ACTIONS(1808), + [anon_sym_DOLLAR] = ACTIONS(1808), + [sym__string_content] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1808), + [anon_sym_BQUOTE] = ACTIONS(1808), + [sym_comment] = ACTIONS(177), + }, + [793] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2698), + }, + [794] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(2660), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -31062,263 +27574,83 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [795] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(2712), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1940), + [anon_sym_DQUOTE] = ACTIONS(1942), + [anon_sym_DOLLAR] = ACTIONS(1942), + [sym__string_content] = ACTIONS(1940), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1942), + [anon_sym_BQUOTE] = ACTIONS(1942), + [sym_comment] = ACTIONS(177), }, [796] = { - [sym_concatenation] = STATE(1250), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1250), - [anon_sym_RBRACE] = ACTIONS(2714), - [anon_sym_EQ] = ACTIONS(2716), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2718), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2720), - [anon_sym_COLON] = ACTIONS(2716), - [anon_sym_COLON_QMARK] = ACTIONS(2716), - [anon_sym_COLON_DASH] = ACTIONS(2716), - [anon_sym_PERCENT] = ACTIONS(2716), - [anon_sym_DASH] = ACTIONS(2716), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_concatenation_repeat1] = STATE(555), + [sym__concat] = ACTIONS(2700), + [anon_sym_RBRACK] = ACTIONS(2702), + [sym_comment] = ACTIONS(53), }, [797] = { - [sym_concatenation] = STATE(1253), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1253), - [anon_sym_RBRACE] = ACTIONS(2722), - [anon_sym_EQ] = ACTIONS(2724), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2726), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2728), - [anon_sym_COLON] = ACTIONS(2724), - [anon_sym_COLON_QMARK] = ACTIONS(2724), - [anon_sym_COLON_DASH] = ACTIONS(2724), - [anon_sym_PERCENT] = ACTIONS(2724), - [anon_sym_DASH] = ACTIONS(2724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_concatenation_repeat1] = STATE(555), + [sym__concat] = ACTIONS(2704), + [anon_sym_RBRACK] = ACTIONS(2706), + [sym_comment] = ACTIONS(53), }, [798] = { - [sym_concatenation] = STATE(1255), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1255), - [anon_sym_RBRACE] = ACTIONS(2702), - [anon_sym_EQ] = ACTIONS(2730), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2732), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2734), - [anon_sym_COLON] = ACTIONS(2730), - [anon_sym_COLON_QMARK] = ACTIONS(2730), - [anon_sym_COLON_DASH] = ACTIONS(2730), - [anon_sym_PERCENT] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(2708), + [anon_sym_RBRACK] = ACTIONS(2706), + [sym_comment] = ACTIONS(53), }, [799] = { - [sym__concat] = ACTIONS(1810), - [anon_sym_DQUOTE] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1812), - [sym__string_content] = ACTIONS(1810), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), - [anon_sym_BQUOTE] = ACTIONS(1812), + [sym__simple_heredoc_body] = ACTIONS(2710), + [sym__heredoc_body_beginning] = ACTIONS(2710), + [sym_file_descriptor] = ACTIONS(2710), + [sym__concat] = ACTIONS(2710), + [anon_sym_esac] = ACTIONS(2712), + [anon_sym_PIPE] = ACTIONS(2712), + [anon_sym_RPAREN] = ACTIONS(2712), + [anon_sym_SEMI_SEMI] = ACTIONS(2712), + [anon_sym_PIPE_AMP] = ACTIONS(2712), + [anon_sym_AMP_AMP] = ACTIONS(2712), + [anon_sym_PIPE_PIPE] = ACTIONS(2712), + [anon_sym_EQ_TILDE] = ACTIONS(2712), + [anon_sym_EQ_EQ] = ACTIONS(2712), + [anon_sym_LT] = ACTIONS(2712), + [anon_sym_GT] = ACTIONS(2712), + [anon_sym_GT_GT] = ACTIONS(2712), + [anon_sym_AMP_GT] = ACTIONS(2712), + [anon_sym_AMP_GT_GT] = ACTIONS(2712), + [anon_sym_LT_AMP] = ACTIONS(2712), + [anon_sym_GT_AMP] = ACTIONS(2712), + [anon_sym_LT_LT] = ACTIONS(2712), + [anon_sym_LT_LT_DASH] = ACTIONS(2712), + [anon_sym_LT_LT_LT] = ACTIONS(2712), + [sym__special_characters] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [anon_sym_DOLLAR] = ACTIONS(2712), + [sym_raw_string] = ACTIONS(2712), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2712), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2712), + [anon_sym_BQUOTE] = ACTIONS(2712), + [anon_sym_LT_LPAREN] = ACTIONS(2712), + [anon_sym_GT_LPAREN] = ACTIONS(2712), [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2712), + [anon_sym_SEMI] = ACTIONS(2712), + [anon_sym_LF] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2712), }, [800] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2736), + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(2716), + [sym_comment] = ACTIONS(53), }, [801] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(2738), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [802] = { - [sym__concat] = ACTIONS(1818), - [anon_sym_DQUOTE] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1820), - [sym__string_content] = ACTIONS(1818), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1820), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1820), - [anon_sym_BQUOTE] = ACTIONS(1820), - [sym_comment] = ACTIONS(177), - }, - [803] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2740), - }, - [804] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(2702), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [805] = { - [sym__concat] = ACTIONS(1952), - [anon_sym_DQUOTE] = ACTIONS(1954), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym__string_content] = ACTIONS(1952), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1954), - [anon_sym_BQUOTE] = ACTIONS(1954), - [sym_comment] = ACTIONS(177), - }, - [806] = { - [aux_sym_concatenation_repeat1] = STATE(555), - [sym__concat] = ACTIONS(2742), - [anon_sym_RBRACK] = ACTIONS(2744), - [sym_comment] = ACTIONS(53), - }, - [807] = { - [aux_sym_concatenation_repeat1] = STATE(555), - [sym__concat] = ACTIONS(2746), - [anon_sym_RBRACK] = ACTIONS(2748), - [sym_comment] = ACTIONS(53), - }, - [808] = { - [sym__concat] = ACTIONS(2750), - [anon_sym_RBRACK] = ACTIONS(2748), - [sym_comment] = ACTIONS(53), - }, - [809] = { - [sym__simple_heredoc_body] = ACTIONS(2752), - [sym__heredoc_body_beginning] = ACTIONS(2752), - [sym_file_descriptor] = ACTIONS(2752), - [sym__concat] = ACTIONS(2752), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_SEMI_SEMI] = ACTIONS(2754), - [anon_sym_PIPE_AMP] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [anon_sym_EQ_TILDE] = ACTIONS(2754), - [anon_sym_EQ_EQ] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2754), - [anon_sym_GT] = ACTIONS(2754), - [anon_sym_GT_GT] = ACTIONS(2754), - [anon_sym_AMP_GT] = ACTIONS(2754), - [anon_sym_AMP_GT_GT] = ACTIONS(2754), - [anon_sym_LT_AMP] = ACTIONS(2754), - [anon_sym_GT_AMP] = ACTIONS(2754), - [anon_sym_LT_LT] = ACTIONS(2754), - [anon_sym_LT_LT_DASH] = ACTIONS(2754), - [anon_sym_LT_LT_LT] = ACTIONS(2754), - [sym__special_characters] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2754), - [anon_sym_DOLLAR] = ACTIONS(2754), - [sym_raw_string] = ACTIONS(2754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2754), - [anon_sym_BQUOTE] = ACTIONS(2754), - [anon_sym_LT_LPAREN] = ACTIONS(2754), - [anon_sym_GT_LPAREN] = ACTIONS(2754), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2754), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_LF] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2754), - }, - [810] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(2758), - [sym_comment] = ACTIONS(53), - }, - [811] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(1268), - [anon_sym_DQUOTE] = ACTIONS(2760), + [aux_sym_string_repeat1] = STATE(1237), + [anon_sym_DQUOTE] = ACTIONS(2718), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -31326,57 +27658,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(237), [sym_comment] = ACTIONS(177), }, - [812] = { - [sym_string] = STATE(1270), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(2762), - [sym_raw_string] = ACTIONS(2764), - [anon_sym_POUND] = ACTIONS(2762), - [anon_sym_DASH] = ACTIONS(2762), + [802] = { + [sym_string] = STATE(1239), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(2720), + [sym_raw_string] = ACTIONS(2722), + [anon_sym_POUND] = ACTIONS(2720), + [anon_sym_DASH] = ACTIONS(2720), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2762), - [anon_sym_AT] = ACTIONS(2762), - [anon_sym_QMARK] = ACTIONS(2762), - [anon_sym_0] = ACTIONS(2768), - [anon_sym__] = ACTIONS(2768), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2720), + [anon_sym_AT] = ACTIONS(2720), + [anon_sym_QMARK] = ACTIONS(2720), + [anon_sym_0] = ACTIONS(2726), + [anon_sym__] = ACTIONS(2726), }, - [813] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(2770), + [803] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(2728), [sym_comment] = ACTIONS(53), }, - [814] = { - [sym_subscript] = STATE(1277), - [sym_variable_name] = ACTIONS(2772), - [anon_sym_DOLLAR] = ACTIONS(2774), - [anon_sym_POUND] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), + [804] = { + [sym_subscript] = STATE(1246), + [sym_variable_name] = ACTIONS(2730), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_POUND] = ACTIONS(2734), + [anon_sym_DASH] = ACTIONS(2732), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2774), - [anon_sym_AT] = ACTIONS(2774), - [anon_sym_QMARK] = ACTIONS(2774), - [anon_sym_0] = ACTIONS(2780), - [anon_sym__] = ACTIONS(2780), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2736), + [anon_sym_STAR] = ACTIONS(2732), + [anon_sym_AT] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_0] = ACTIONS(2738), + [anon_sym__] = ACTIONS(2738), }, - [815] = { - [sym_for_statement] = STATE(1278), - [sym_while_statement] = STATE(1278), - [sym_if_statement] = STATE(1278), - [sym_case_statement] = STATE(1278), - [sym_function_definition] = STATE(1278), - [sym_subshell] = STATE(1278), - [sym_pipeline] = STATE(1278), - [sym_list] = STATE(1278), - [sym_negated_command] = STATE(1278), - [sym_test_command] = STATE(1278), - [sym_declaration_command] = STATE(1278), - [sym_unset_command] = STATE(1278), - [sym_command] = STATE(1278), + [805] = { + [sym_for_statement] = STATE(1247), + [sym_while_statement] = STATE(1247), + [sym_if_statement] = STATE(1247), + [sym_case_statement] = STATE(1247), + [sym_function_definition] = STATE(1247), + [sym_subshell] = STATE(1247), + [sym_pipeline] = STATE(1247), + [sym_list] = STATE(1247), + [sym_negated_command] = STATE(1247), + [sym_test_command] = STATE(1247), + [sym_declaration_command] = STATE(1247), + [sym_unset_command] = STATE(1247), + [sym_command] = STATE(1247), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(1279), + [sym_variable_assignment] = STATE(1248), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -31424,22 +27756,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(301), }, - [816] = { - [sym_for_statement] = STATE(1280), - [sym_while_statement] = STATE(1280), - [sym_if_statement] = STATE(1280), - [sym_case_statement] = STATE(1280), - [sym_function_definition] = STATE(1280), - [sym_subshell] = STATE(1280), - [sym_pipeline] = STATE(1280), - [sym_list] = STATE(1280), - [sym_negated_command] = STATE(1280), - [sym_test_command] = STATE(1280), - [sym_declaration_command] = STATE(1280), - [sym_unset_command] = STATE(1280), - [sym_command] = STATE(1280), + [806] = { + [sym_for_statement] = STATE(1249), + [sym_while_statement] = STATE(1249), + [sym_if_statement] = STATE(1249), + [sym_case_statement] = STATE(1249), + [sym_function_definition] = STATE(1249), + [sym_subshell] = STATE(1249), + [sym_pipeline] = STATE(1249), + [sym_list] = STATE(1249), + [sym_negated_command] = STATE(1249), + [sym_test_command] = STATE(1249), + [sym_declaration_command] = STATE(1249), + [sym_unset_command] = STATE(1249), + [sym_command] = STATE(1249), [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(1281), + [sym_variable_assignment] = STATE(1250), [sym_subscript] = STATE(183), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -31487,22 +27819,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(323), }, - [817] = { - [sym_for_statement] = STATE(1282), - [sym_while_statement] = STATE(1282), - [sym_if_statement] = STATE(1282), - [sym_case_statement] = STATE(1282), - [sym_function_definition] = STATE(1282), - [sym_subshell] = STATE(1282), - [sym_pipeline] = STATE(1282), - [sym_list] = STATE(1282), - [sym_negated_command] = STATE(1282), - [sym_test_command] = STATE(1282), - [sym_declaration_command] = STATE(1282), - [sym_unset_command] = STATE(1282), - [sym_command] = STATE(1282), + [807] = { + [sym_for_statement] = STATE(1251), + [sym_while_statement] = STATE(1251), + [sym_if_statement] = STATE(1251), + [sym_case_statement] = STATE(1251), + [sym_function_definition] = STATE(1251), + [sym_subshell] = STATE(1251), + [sym_pipeline] = STATE(1251), + [sym_list] = STATE(1251), + [sym_negated_command] = STATE(1251), + [sym_test_command] = STATE(1251), + [sym_declaration_command] = STATE(1251), + [sym_unset_command] = STATE(1251), + [sym_command] = STATE(1251), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(1283), + [sym_variable_assignment] = STATE(1252), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -31550,32 +27882,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(301), }, - [818] = { - [anon_sym_RBRACE] = ACTIONS(2770), + [808] = { + [anon_sym_RBRACE] = ACTIONS(2728), [sym_comment] = ACTIONS(53), }, - [819] = { - [sym_string] = STATE(1284), - [sym_simple_expansion] = STATE(1284), - [sym_string_expansion] = STATE(1284), - [sym_expansion] = STATE(1284), - [sym_command_substitution] = STATE(1284), - [sym_process_substitution] = STATE(1284), - [sym__special_characters] = ACTIONS(2782), + [809] = { + [sym_string] = STATE(1253), + [sym_simple_expansion] = STATE(1253), + [sym_string_expansion] = STATE(1253), + [sym_expansion] = STATE(1253), + [sym_command_substitution] = STATE(1253), + [sym_process_substitution] = STATE(1253), + [sym__special_characters] = ACTIONS(2740), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(2782), + [sym_raw_string] = ACTIONS(2740), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2782), + [sym_word] = ACTIONS(2740), }, - [820] = { - [aux_sym_concatenation_repeat1] = STATE(1285), - [sym__concat] = ACTIONS(1748), + [810] = { + [aux_sym_concatenation_repeat1] = STATE(1254), + [sym__concat] = ACTIONS(1736), [anon_sym_RBRACE] = ACTIONS(693), [anon_sym_EQ] = ACTIONS(695), [sym__special_characters] = ACTIONS(695), @@ -31596,7 +27928,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(695), }, - [821] = { + [811] = { [sym__concat] = ACTIONS(697), [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_EQ] = ACTIONS(699), @@ -31618,12 +27950,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(699), }, - [822] = { + [812] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(2784), + [anon_sym_DQUOTE] = ACTIONS(2742), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -31631,7 +27963,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(237), [sym_comment] = ACTIONS(177), }, - [823] = { + [813] = { [sym__concat] = ACTIONS(727), [anon_sym_RBRACE] = ACTIONS(727), [anon_sym_EQ] = ACTIONS(729), @@ -31653,7 +27985,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(729), }, - [824] = { + [814] = { [sym__concat] = ACTIONS(731), [anon_sym_RBRACE] = ACTIONS(731), [anon_sym_EQ] = ACTIONS(733), @@ -31675,7 +28007,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(733), }, - [825] = { + [815] = { [sym__concat] = ACTIONS(735), [anon_sym_RBRACE] = ACTIONS(735), [anon_sym_EQ] = ACTIONS(737), @@ -31697,608 +28029,612 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(737), }, - [826] = { + [816] = { [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(2786), + [anon_sym_EQ] = ACTIONS(2744), + [sym_comment] = ACTIONS(53), + }, + [817] = { + [sym_concatenation] = STATE(1259), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1259), + [anon_sym_RBRACE] = ACTIONS(2746), + [anon_sym_EQ] = ACTIONS(2748), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(2752), + [anon_sym_COLON] = ACTIONS(2748), + [anon_sym_COLON_QMARK] = ACTIONS(2748), + [anon_sym_COLON_DASH] = ACTIONS(2748), + [anon_sym_PERCENT] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [818] = { + [sym_subscript] = STATE(1263), + [sym_variable_name] = ACTIONS(2754), + [anon_sym_DOLLAR] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2758), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_AT] = ACTIONS(2756), + [anon_sym_QMARK] = ACTIONS(2756), + [anon_sym_0] = ACTIONS(2760), + [anon_sym__] = ACTIONS(2760), + }, + [819] = { + [sym_concatenation] = STATE(1266), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1266), + [anon_sym_RBRACE] = ACTIONS(2762), + [anon_sym_EQ] = ACTIONS(2764), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2766), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(2768), + [anon_sym_COLON] = ACTIONS(2764), + [anon_sym_COLON_QMARK] = ACTIONS(2764), + [anon_sym_COLON_DASH] = ACTIONS(2764), + [anon_sym_PERCENT] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2764), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [820] = { + [sym_concatenation] = STATE(1269), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1269), + [anon_sym_RBRACE] = ACTIONS(2770), + [anon_sym_EQ] = ACTIONS(2772), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(2776), + [anon_sym_COLON] = ACTIONS(2772), + [anon_sym_COLON_QMARK] = ACTIONS(2772), + [anon_sym_COLON_DASH] = ACTIONS(2772), + [anon_sym_PERCENT] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [821] = { + [sym_concatenation] = STATE(1271), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1271), + [anon_sym_RBRACE] = ACTIONS(2778), + [anon_sym_EQ] = ACTIONS(2780), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2782), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(2780), + [anon_sym_COLON_QMARK] = ACTIONS(2780), + [anon_sym_COLON_DASH] = ACTIONS(2780), + [anon_sym_PERCENT] = ACTIONS(2780), + [anon_sym_DASH] = ACTIONS(2780), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [822] = { + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(2784), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(875), + [anon_sym_PIPE_PIPE] = ACTIONS(875), + [sym_comment] = ACTIONS(53), + }, + [823] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(2784), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(875), + [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_AMP_GT] = ACTIONS(371), + [anon_sym_AMP_GT_GT] = ACTIONS(369), + [anon_sym_LT_AMP] = ACTIONS(369), + [anon_sym_GT_AMP] = ACTIONS(369), + [sym__special_characters] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(369), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, + [824] = { + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_PIPE_AMP] = ACTIONS(925), + [anon_sym_AMP_AMP] = ACTIONS(927), + [anon_sym_PIPE_PIPE] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(2784), + [sym_comment] = ACTIONS(53), + }, + [825] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_PIPE_AMP] = ACTIONS(925), + [anon_sym_AMP_AMP] = ACTIONS(927), + [anon_sym_PIPE_PIPE] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_AMP_GT] = ACTIONS(371), + [anon_sym_AMP_GT_GT] = ACTIONS(369), + [anon_sym_LT_AMP] = ACTIONS(369), + [anon_sym_GT_AMP] = ACTIONS(369), + [sym__special_characters] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(2784), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, + [826] = { + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(2786), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(875), + [anon_sym_PIPE_PIPE] = ACTIONS(875), [sym_comment] = ACTIONS(53), }, [827] = { - [sym_concatenation] = STATE(1290), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1290), - [anon_sym_RBRACE] = ACTIONS(2788), - [anon_sym_EQ] = ACTIONS(2790), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2794), - [anon_sym_COLON] = ACTIONS(2790), - [anon_sym_COLON_QMARK] = ACTIONS(2790), - [anon_sym_COLON_DASH] = ACTIONS(2790), - [anon_sym_PERCENT] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(2786), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(875), + [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_AMP_GT] = ACTIONS(371), + [anon_sym_AMP_GT_GT] = ACTIONS(369), + [anon_sym_LT_AMP] = ACTIONS(369), + [anon_sym_GT_AMP] = ACTIONS(369), + [sym__special_characters] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(369), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), }, [828] = { - [sym_subscript] = STATE(1294), - [sym_variable_name] = ACTIONS(2796), - [anon_sym_DOLLAR] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2798), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2800), - [anon_sym_STAR] = ACTIONS(2798), - [anon_sym_AT] = ACTIONS(2798), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_0] = ACTIONS(2802), - [anon_sym__] = ACTIONS(2802), + [sym__simple_heredoc_body] = ACTIONS(2788), + [sym__heredoc_body_beginning] = ACTIONS(2788), + [sym_file_descriptor] = ACTIONS(2788), + [sym__concat] = ACTIONS(2788), + [anon_sym_esac] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_RPAREN] = ACTIONS(2790), + [anon_sym_SEMI_SEMI] = ACTIONS(2790), + [anon_sym_PIPE_AMP] = ACTIONS(2790), + [anon_sym_AMP_AMP] = ACTIONS(2790), + [anon_sym_PIPE_PIPE] = ACTIONS(2790), + [anon_sym_EQ_TILDE] = ACTIONS(2790), + [anon_sym_EQ_EQ] = ACTIONS(2790), + [anon_sym_LT] = ACTIONS(2790), + [anon_sym_GT] = ACTIONS(2790), + [anon_sym_GT_GT] = ACTIONS(2790), + [anon_sym_AMP_GT] = ACTIONS(2790), + [anon_sym_AMP_GT_GT] = ACTIONS(2790), + [anon_sym_LT_AMP] = ACTIONS(2790), + [anon_sym_GT_AMP] = ACTIONS(2790), + [anon_sym_LT_LT] = ACTIONS(2790), + [anon_sym_LT_LT_DASH] = ACTIONS(2790), + [anon_sym_LT_LT_LT] = ACTIONS(2790), + [sym__special_characters] = ACTIONS(2790), + [anon_sym_DQUOTE] = ACTIONS(2790), + [anon_sym_DOLLAR] = ACTIONS(2790), + [sym_raw_string] = ACTIONS(2790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2790), + [anon_sym_BQUOTE] = ACTIONS(2790), + [anon_sym_LT_LPAREN] = ACTIONS(2790), + [anon_sym_GT_LPAREN] = ACTIONS(2790), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_LF] = ACTIONS(2788), + [anon_sym_AMP] = ACTIONS(2790), }, [829] = { - [sym_concatenation] = STATE(1297), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1297), - [anon_sym_RBRACE] = ACTIONS(2804), - [anon_sym_EQ] = ACTIONS(2806), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2808), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2810), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_COLON_QMARK] = ACTIONS(2806), - [anon_sym_COLON_DASH] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(2792), + [anon_sym_EQ] = ACTIONS(2794), + [sym__special_characters] = ACTIONS(2797), + [anon_sym_DQUOTE] = ACTIONS(2800), + [anon_sym_DOLLAR] = ACTIONS(2803), + [sym_raw_string] = ACTIONS(2806), + [anon_sym_POUND] = ACTIONS(2809), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2812), + [anon_sym_COLON] = ACTIONS(2794), + [anon_sym_COLON_QMARK] = ACTIONS(2794), + [anon_sym_COLON_DASH] = ACTIONS(2794), + [anon_sym_PERCENT] = ACTIONS(2794), + [anon_sym_DASH] = ACTIONS(2794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2815), + [anon_sym_BQUOTE] = ACTIONS(2818), + [anon_sym_LT_LPAREN] = ACTIONS(2821), + [anon_sym_GT_LPAREN] = ACTIONS(2821), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(2824), }, [830] = { - [sym_concatenation] = STATE(1300), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1300), - [anon_sym_RBRACE] = ACTIONS(2812), - [anon_sym_EQ] = ACTIONS(2814), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2816), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2818), - [anon_sym_COLON] = ACTIONS(2814), - [anon_sym_COLON_QMARK] = ACTIONS(2814), - [anon_sym_COLON_DASH] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_concatenation] = STATE(1276), + [sym_string] = STATE(1275), + [sym_simple_expansion] = STATE(1275), + [sym_string_expansion] = STATE(1275), + [sym_expansion] = STATE(1275), + [sym_command_substitution] = STATE(1275), + [sym_process_substitution] = STATE(1275), + [anon_sym_RBRACE] = ACTIONS(2728), + [sym__special_characters] = ACTIONS(2827), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(2829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2829), }, [831] = { - [sym_concatenation] = STATE(1302), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1302), - [anon_sym_RBRACE] = ACTIONS(2820), - [anon_sym_EQ] = ACTIONS(2822), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(2822), - [anon_sym_COLON_QMARK] = ACTIONS(2822), - [anon_sym_COLON_DASH] = ACTIONS(2822), - [anon_sym_PERCENT] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym__simple_heredoc_body] = ACTIONS(2831), + [sym__heredoc_body_beginning] = ACTIONS(2831), + [sym_file_descriptor] = ACTIONS(2831), + [sym__concat] = ACTIONS(2831), + [anon_sym_esac] = ACTIONS(2833), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_RPAREN] = ACTIONS(2833), + [anon_sym_SEMI_SEMI] = ACTIONS(2833), + [anon_sym_PIPE_AMP] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_EQ_TILDE] = ACTIONS(2833), + [anon_sym_EQ_EQ] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_GT_GT] = ACTIONS(2833), + [anon_sym_AMP_GT] = ACTIONS(2833), + [anon_sym_AMP_GT_GT] = ACTIONS(2833), + [anon_sym_LT_AMP] = ACTIONS(2833), + [anon_sym_GT_AMP] = ACTIONS(2833), + [anon_sym_LT_LT] = ACTIONS(2833), + [anon_sym_LT_LT_DASH] = ACTIONS(2833), + [anon_sym_LT_LT_LT] = ACTIONS(2833), + [sym__special_characters] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_DOLLAR] = ACTIONS(2833), + [sym_raw_string] = ACTIONS(2833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2833), + [anon_sym_BQUOTE] = ACTIONS(2833), + [anon_sym_LT_LPAREN] = ACTIONS(2833), + [anon_sym_GT_LPAREN] = ACTIONS(2833), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(2833), + [anon_sym_SEMI] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(2833), }, [832] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(2826), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2835), }, [833] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(2826), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(2837), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [834] = { - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_PIPE_AMP] = ACTIONS(925), - [anon_sym_AMP_AMP] = ACTIONS(927), - [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_BQUOTE] = ACTIONS(2826), - [sym_comment] = ACTIONS(53), + [sym__simple_heredoc_body] = ACTIONS(2839), + [sym__heredoc_body_beginning] = ACTIONS(2839), + [sym_file_descriptor] = ACTIONS(2839), + [sym__concat] = ACTIONS(2839), + [anon_sym_esac] = ACTIONS(2841), + [anon_sym_PIPE] = ACTIONS(2841), + [anon_sym_RPAREN] = ACTIONS(2841), + [anon_sym_SEMI_SEMI] = ACTIONS(2841), + [anon_sym_PIPE_AMP] = ACTIONS(2841), + [anon_sym_AMP_AMP] = ACTIONS(2841), + [anon_sym_PIPE_PIPE] = ACTIONS(2841), + [anon_sym_EQ_TILDE] = ACTIONS(2841), + [anon_sym_EQ_EQ] = ACTIONS(2841), + [anon_sym_LT] = ACTIONS(2841), + [anon_sym_GT] = ACTIONS(2841), + [anon_sym_GT_GT] = ACTIONS(2841), + [anon_sym_AMP_GT] = ACTIONS(2841), + [anon_sym_AMP_GT_GT] = ACTIONS(2841), + [anon_sym_LT_AMP] = ACTIONS(2841), + [anon_sym_GT_AMP] = ACTIONS(2841), + [anon_sym_LT_LT] = ACTIONS(2841), + [anon_sym_LT_LT_DASH] = ACTIONS(2841), + [anon_sym_LT_LT_LT] = ACTIONS(2841), + [sym__special_characters] = ACTIONS(2841), + [anon_sym_DQUOTE] = ACTIONS(2841), + [anon_sym_DOLLAR] = ACTIONS(2841), + [sym_raw_string] = ACTIONS(2841), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2841), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2841), + [anon_sym_BQUOTE] = ACTIONS(2841), + [anon_sym_LT_LPAREN] = ACTIONS(2841), + [anon_sym_GT_LPAREN] = ACTIONS(2841), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym_LF] = ACTIONS(2839), + [anon_sym_AMP] = ACTIONS(2841), }, [835] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_PIPE_AMP] = ACTIONS(925), - [anon_sym_AMP_AMP] = ACTIONS(927), - [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(2826), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2843), }, [836] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(2828), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(2845), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [837] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(2828), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2847), }, [838] = { - [sym__simple_heredoc_body] = ACTIONS(2830), - [sym__heredoc_body_beginning] = ACTIONS(2830), - [sym_file_descriptor] = ACTIONS(2830), - [sym__concat] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_RPAREN] = ACTIONS(2832), - [anon_sym_SEMI_SEMI] = ACTIONS(2832), - [anon_sym_PIPE_AMP] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_PIPE_PIPE] = ACTIONS(2832), - [anon_sym_EQ_TILDE] = ACTIONS(2832), - [anon_sym_EQ_EQ] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_GT_GT] = ACTIONS(2832), - [anon_sym_AMP_GT] = ACTIONS(2832), - [anon_sym_AMP_GT_GT] = ACTIONS(2832), - [anon_sym_LT_AMP] = ACTIONS(2832), - [anon_sym_GT_AMP] = ACTIONS(2832), - [anon_sym_LT_LT] = ACTIONS(2832), - [anon_sym_LT_LT_DASH] = ACTIONS(2832), - [anon_sym_LT_LT_LT] = ACTIONS(2832), - [sym__special_characters] = ACTIONS(2832), - [anon_sym_DQUOTE] = ACTIONS(2832), - [anon_sym_DOLLAR] = ACTIONS(2832), - [sym_raw_string] = ACTIONS(2832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2832), - [anon_sym_BQUOTE] = ACTIONS(2832), - [anon_sym_LT_LPAREN] = ACTIONS(2832), - [anon_sym_GT_LPAREN] = ACTIONS(2832), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(2728), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_LF] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2832), + [sym_word] = ACTIONS(767), }, [839] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(1283), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(2834), - [anon_sym_EQ] = ACTIONS(2836), - [sym__special_characters] = ACTIONS(2839), - [anon_sym_DQUOTE] = ACTIONS(2842), - [anon_sym_DOLLAR] = ACTIONS(2845), - [sym_raw_string] = ACTIONS(2848), - [anon_sym_POUND] = ACTIONS(2851), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2854), - [anon_sym_COLON] = ACTIONS(2836), - [anon_sym_COLON_QMARK] = ACTIONS(2836), - [anon_sym_COLON_DASH] = ACTIONS(2836), - [anon_sym_PERCENT] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2857), - [anon_sym_BQUOTE] = ACTIONS(2860), - [anon_sym_LT_LPAREN] = ACTIONS(2863), - [anon_sym_GT_LPAREN] = ACTIONS(2863), + [aux_sym_expansion_repeat1] = STATE(1283), + [anon_sym_RBRACE] = ACTIONS(2849), + [anon_sym_EQ] = ACTIONS(2851), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2853), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(2851), + [anon_sym_COLON_QMARK] = ACTIONS(2851), + [anon_sym_COLON_DASH] = ACTIONS(2851), + [anon_sym_PERCENT] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2866), + [sym_word] = ACTIONS(767), }, [840] = { - [sym_concatenation] = STATE(1307), - [sym_string] = STATE(1306), - [sym_simple_expansion] = STATE(1306), - [sym_string_expansion] = STATE(1306), - [sym_expansion] = STATE(1306), - [sym_command_substitution] = STATE(1306), - [sym_process_substitution] = STATE(1306), - [anon_sym_RBRACE] = ACTIONS(2770), - [sym__special_characters] = ACTIONS(2869), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(2871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2871), + [sym__simple_heredoc_body] = ACTIONS(2855), + [sym__heredoc_body_beginning] = ACTIONS(2855), + [sym_file_descriptor] = ACTIONS(2855), + [sym__concat] = ACTIONS(2855), + [anon_sym_esac] = ACTIONS(2857), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2857), + [anon_sym_SEMI_SEMI] = ACTIONS(2857), + [anon_sym_PIPE_AMP] = ACTIONS(2857), + [anon_sym_AMP_AMP] = ACTIONS(2857), + [anon_sym_PIPE_PIPE] = ACTIONS(2857), + [anon_sym_EQ_TILDE] = ACTIONS(2857), + [anon_sym_EQ_EQ] = ACTIONS(2857), + [anon_sym_LT] = ACTIONS(2857), + [anon_sym_GT] = ACTIONS(2857), + [anon_sym_GT_GT] = ACTIONS(2857), + [anon_sym_AMP_GT] = ACTIONS(2857), + [anon_sym_AMP_GT_GT] = ACTIONS(2857), + [anon_sym_LT_AMP] = ACTIONS(2857), + [anon_sym_GT_AMP] = ACTIONS(2857), + [anon_sym_LT_LT] = ACTIONS(2857), + [anon_sym_LT_LT_DASH] = ACTIONS(2857), + [anon_sym_LT_LT_LT] = ACTIONS(2857), + [sym__special_characters] = ACTIONS(2857), + [anon_sym_DQUOTE] = ACTIONS(2857), + [anon_sym_DOLLAR] = ACTIONS(2857), + [sym_raw_string] = ACTIONS(2857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2857), + [anon_sym_BQUOTE] = ACTIONS(2857), + [anon_sym_LT_LPAREN] = ACTIONS(2857), + [anon_sym_GT_LPAREN] = ACTIONS(2857), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_LF] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2857), }, [841] = { - [sym__simple_heredoc_body] = ACTIONS(2873), - [sym__heredoc_body_beginning] = ACTIONS(2873), - [sym_file_descriptor] = ACTIONS(2873), - [sym__concat] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(2875), - [anon_sym_RPAREN] = ACTIONS(2875), - [anon_sym_SEMI_SEMI] = ACTIONS(2875), - [anon_sym_PIPE_AMP] = ACTIONS(2875), - [anon_sym_AMP_AMP] = ACTIONS(2875), - [anon_sym_PIPE_PIPE] = ACTIONS(2875), - [anon_sym_EQ_TILDE] = ACTIONS(2875), - [anon_sym_EQ_EQ] = ACTIONS(2875), - [anon_sym_LT] = ACTIONS(2875), - [anon_sym_GT] = ACTIONS(2875), - [anon_sym_GT_GT] = ACTIONS(2875), - [anon_sym_AMP_GT] = ACTIONS(2875), - [anon_sym_AMP_GT_GT] = ACTIONS(2875), - [anon_sym_LT_AMP] = ACTIONS(2875), - [anon_sym_GT_AMP] = ACTIONS(2875), - [anon_sym_LT_LT] = ACTIONS(2875), - [anon_sym_LT_LT_DASH] = ACTIONS(2875), - [anon_sym_LT_LT_LT] = ACTIONS(2875), - [sym__special_characters] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2875), - [anon_sym_DOLLAR] = ACTIONS(2875), - [sym_raw_string] = ACTIONS(2875), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2875), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2875), - [anon_sym_BQUOTE] = ACTIONS(2875), - [anon_sym_LT_LPAREN] = ACTIONS(2875), - [anon_sym_GT_LPAREN] = ACTIONS(2875), + [sym_concatenation] = STATE(1285), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1285), + [anon_sym_RBRACE] = ACTIONS(2859), + [anon_sym_EQ] = ACTIONS(2861), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2863), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(2861), + [anon_sym_COLON_QMARK] = ACTIONS(2861), + [anon_sym_COLON_DASH] = ACTIONS(2861), + [anon_sym_PERCENT] = ACTIONS(2861), + [anon_sym_DASH] = ACTIONS(2861), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym_LF] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2875), + [sym_word] = ACTIONS(767), }, [842] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2877), - }, - [843] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(2879), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [844] = { - [sym__simple_heredoc_body] = ACTIONS(2881), - [sym__heredoc_body_beginning] = ACTIONS(2881), - [sym_file_descriptor] = ACTIONS(2881), - [sym__concat] = ACTIONS(2881), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_RPAREN] = ACTIONS(2883), - [anon_sym_SEMI_SEMI] = ACTIONS(2883), - [anon_sym_PIPE_AMP] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_PIPE_PIPE] = ACTIONS(2883), - [anon_sym_EQ_TILDE] = ACTIONS(2883), - [anon_sym_EQ_EQ] = ACTIONS(2883), - [anon_sym_LT] = ACTIONS(2883), - [anon_sym_GT] = ACTIONS(2883), - [anon_sym_GT_GT] = ACTIONS(2883), - [anon_sym_AMP_GT] = ACTIONS(2883), - [anon_sym_AMP_GT_GT] = ACTIONS(2883), - [anon_sym_LT_AMP] = ACTIONS(2883), - [anon_sym_GT_AMP] = ACTIONS(2883), - [anon_sym_LT_LT] = ACTIONS(2883), - [anon_sym_LT_LT_DASH] = ACTIONS(2883), - [anon_sym_LT_LT_LT] = ACTIONS(2883), - [sym__special_characters] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2883), - [sym_raw_string] = ACTIONS(2883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2883), - [anon_sym_BQUOTE] = ACTIONS(2883), - [anon_sym_LT_LPAREN] = ACTIONS(2883), - [anon_sym_GT_LPAREN] = ACTIONS(2883), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2883), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym_LF] = ACTIONS(2881), - [anon_sym_AMP] = ACTIONS(2883), - }, - [845] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2885), - }, - [846] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(2887), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [847] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2889), - }, - [848] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(2770), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [849] = { - [sym_concatenation] = STATE(1314), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1314), - [anon_sym_RBRACE] = ACTIONS(2891), - [anon_sym_EQ] = ACTIONS(2893), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(2893), - [anon_sym_COLON_QMARK] = ACTIONS(2893), - [anon_sym_COLON_DASH] = ACTIONS(2893), - [anon_sym_PERCENT] = ACTIONS(2893), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [850] = { - [sym__simple_heredoc_body] = ACTIONS(2897), - [sym__heredoc_body_beginning] = ACTIONS(2897), - [sym_file_descriptor] = ACTIONS(2897), - [sym__concat] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_RPAREN] = ACTIONS(2899), - [anon_sym_SEMI_SEMI] = ACTIONS(2899), - [anon_sym_PIPE_AMP] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_PIPE_PIPE] = ACTIONS(2899), - [anon_sym_EQ_TILDE] = ACTIONS(2899), - [anon_sym_EQ_EQ] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [anon_sym_GT_GT] = ACTIONS(2899), - [anon_sym_AMP_GT] = ACTIONS(2899), - [anon_sym_AMP_GT_GT] = ACTIONS(2899), - [anon_sym_LT_AMP] = ACTIONS(2899), - [anon_sym_GT_AMP] = ACTIONS(2899), - [anon_sym_LT_LT] = ACTIONS(2899), - [anon_sym_LT_LT_DASH] = ACTIONS(2899), - [anon_sym_LT_LT_LT] = ACTIONS(2899), - [sym__special_characters] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2899), - [anon_sym_DOLLAR] = ACTIONS(2899), - [sym_raw_string] = ACTIONS(2899), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2899), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2899), - [anon_sym_BQUOTE] = ACTIONS(2899), - [anon_sym_LT_LPAREN] = ACTIONS(2899), - [anon_sym_GT_LPAREN] = ACTIONS(2899), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2899), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym_LF] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2899), - }, - [851] = { - [sym_concatenation] = STATE(1316), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1316), - [anon_sym_RBRACE] = ACTIONS(2901), - [anon_sym_EQ] = ACTIONS(2903), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(2903), - [anon_sym_COLON_QMARK] = ACTIONS(2903), - [anon_sym_COLON_DASH] = ACTIONS(2903), - [anon_sym_PERCENT] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [852] = { - [aux_sym_concatenation_repeat1] = STATE(1317), + [aux_sym_concatenation_repeat1] = STATE(1286), [sym_file_descriptor] = ACTIONS(1129), [sym__concat] = ACTIONS(663), [sym_variable_name] = ACTIONS(1129), @@ -32326,8 +28662,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(1129), }, - [853] = { - [aux_sym_concatenation_repeat1] = STATE(1317), + [843] = { + [aux_sym_concatenation_repeat1] = STATE(1286), [sym_file_descriptor] = ACTIONS(1107), [sym__concat] = ACTIONS(663), [sym_variable_name] = ACTIONS(1107), @@ -32355,49 +28691,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(1107), }, - [854] = { - [sym_concatenation] = STATE(1318), - [sym_string] = STATE(590), - [sym_simple_expansion] = STATE(590), - [sym_string_expansion] = STATE(590), - [sym_expansion] = STATE(590), - [sym_command_substitution] = STATE(590), - [sym_process_substitution] = STATE(590), - [aux_sym_for_statement_repeat1] = STATE(1318), + [844] = { + [sym_concatenation] = STATE(1287), + [sym_string] = STATE(588), + [sym_simple_expansion] = STATE(588), + [sym_string_expansion] = STATE(588), + [sym_expansion] = STATE(588), + [sym_command_substitution] = STATE(588), + [sym_process_substitution] = STATE(588), + [aux_sym_for_statement_repeat1] = STATE(1287), [sym__special_characters] = ACTIONS(1155), - [anon_sym_DQUOTE] = ACTIONS(1157), - [anon_sym_DOLLAR] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(1161), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1163), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1165), - [anon_sym_BQUOTE] = ACTIONS(1167), - [anon_sym_LT_LPAREN] = ACTIONS(1169), - [anon_sym_GT_LPAREN] = ACTIONS(1169), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(71), + [sym_raw_string] = ACTIONS(1157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(75), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(77), + [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_LT_LPAREN] = ACTIONS(81), + [anon_sym_GT_LPAREN] = ACTIONS(81), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1161), + [sym_word] = ACTIONS(1157), }, - [855] = { - [sym_do_group] = STATE(1320), - [anon_sym_do] = ACTIONS(2907), + [845] = { + [sym_do_group] = STATE(1289), + [anon_sym_do] = ACTIONS(2865), [sym_comment] = ACTIONS(53), }, - [856] = { - [sym__terminated_statement] = STATE(1322), - [sym_for_statement] = STATE(599), - [sym_while_statement] = STATE(599), - [sym_if_statement] = STATE(599), - [sym_case_statement] = STATE(599), - [sym_function_definition] = STATE(599), - [sym_subshell] = STATE(599), - [sym_pipeline] = STATE(599), - [sym_list] = STATE(599), - [sym_negated_command] = STATE(599), - [sym_test_command] = STATE(599), - [sym_declaration_command] = STATE(599), - [sym_unset_command] = STATE(599), - [sym_command] = STATE(599), + [846] = { + [sym__terminated_statement] = STATE(1291), + [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_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(600), + [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -32407,13 +28743,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1322), + [aux_sym_program_repeat1] = STATE(1291), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), [anon_sym_while] = ACTIONS(13), - [anon_sym_done] = ACTIONS(2909), + [anon_sym_done] = ACTIONS(2867), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), @@ -32447,20 +28783,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [857] = { - [sym_file_redirect] = STATE(1324), - [sym_heredoc_redirect] = STATE(1324), - [sym_heredoc_body] = STATE(1323), - [sym_herestring_redirect] = STATE(1324), - [aux_sym_while_statement_repeat1] = STATE(1324), + [847] = { + [sym_file_redirect] = STATE(1293), + [sym_heredoc_redirect] = STATE(1293), + [sym_heredoc_body] = STATE(1292), + [sym_herestring_redirect] = STATE(1293), + [aux_sym_while_statement_repeat1] = STATE(1293), [sym__simple_heredoc_body] = ACTIONS(877), [sym__heredoc_body_beginning] = ACTIONS(879), [sym_file_descriptor] = ACTIONS(881), - [anon_sym_PIPE] = ACTIONS(1175), - [anon_sym_RPAREN] = ACTIONS(1177), - [anon_sym_PIPE_AMP] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), + [anon_sym_PIPE] = ACTIONS(1163), + [anon_sym_RPAREN] = ACTIONS(1165), + [anon_sym_PIPE_AMP] = ACTIONS(1165), + [anon_sym_AMP_AMP] = ACTIONS(1165), + [anon_sym_PIPE_PIPE] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(885), [anon_sym_GT] = ACTIONS(885), [anon_sym_GT_GT] = ACTIONS(887), @@ -32473,25 +28809,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(893), [sym_comment] = ACTIONS(53), }, - [858] = { - [sym__terminated_statement] = STATE(1327), - [sym_for_statement] = STATE(607), - [sym_while_statement] = STATE(607), - [sym_if_statement] = STATE(607), - [sym_elif_clause] = STATE(608), - [sym_else_clause] = STATE(1326), - [sym_case_statement] = STATE(607), - [sym_function_definition] = STATE(607), - [sym_subshell] = STATE(607), - [sym_pipeline] = STATE(607), - [sym_list] = STATE(607), - [sym_negated_command] = STATE(607), - [sym_test_command] = STATE(607), - [sym_declaration_command] = STATE(607), - [sym_unset_command] = STATE(607), - [sym_command] = STATE(607), + [848] = { + [sym__terminated_statement] = STATE(1296), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_elif_clause] = STATE(599), + [sym_else_clause] = STATE(1295), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(610), + [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -32501,17 +28837,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1327), - [aux_sym_if_statement_repeat1] = STATE(1328), + [aux_sym_program_repeat1] = STATE(1296), + [aux_sym_if_statement_repeat1] = STATE(1297), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), [anon_sym_while] = ACTIONS(13), [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(2911), - [anon_sym_elif] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1183), + [anon_sym_fi] = ACTIONS(2869), + [anon_sym_elif] = ACTIONS(1169), + [anon_sym_else] = ACTIONS(1171), [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), @@ -32544,49 +28880,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [859] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2913), + [849] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2871), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2913), - [anon_sym_LF] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2871), + [anon_sym_LF] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), }, - [860] = { - [anon_sym_in] = ACTIONS(2917), + [850] = { + [anon_sym_in] = ACTIONS(2875), [sym_comment] = ACTIONS(53), }, - [861] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2919), + [851] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2877), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym_LF] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym_LF] = ACTIONS(2879), + [anon_sym_AMP] = ACTIONS(2877), }, - [862] = { - [anon_sym_in] = ACTIONS(2923), + [852] = { + [anon_sym_in] = ACTIONS(2881), [sym_comment] = ACTIONS(53), }, - [863] = { - [anon_sym_RPAREN] = ACTIONS(2925), + [853] = { + [anon_sym_RPAREN] = ACTIONS(2883), [sym_comment] = ACTIONS(53), }, - [864] = { - [sym__terminated_statement] = STATE(1335), - [sym_for_statement] = STATE(638), - [sym_while_statement] = STATE(638), - [sym_if_statement] = STATE(638), - [sym_case_statement] = STATE(638), - [sym_function_definition] = STATE(638), - [sym_subshell] = STATE(638), - [sym_pipeline] = STATE(638), - [sym_list] = STATE(638), - [sym_negated_command] = STATE(638), - [sym_test_command] = STATE(638), - [sym_declaration_command] = STATE(638), - [sym_unset_command] = STATE(638), - [sym_command] = STATE(638), + [854] = { + [sym__terminated_statement] = STATE(1304), + [sym_for_statement] = STATE(628), + [sym_while_statement] = STATE(628), + [sym_if_statement] = STATE(628), + [sym_case_statement] = STATE(628), + [sym_function_definition] = STATE(628), + [sym_subshell] = STATE(628), + [sym_pipeline] = STATE(628), + [sym_list] = STATE(628), + [sym_negated_command] = STATE(628), + [sym_test_command] = STATE(628), + [sym_declaration_command] = STATE(628), + [sym_unset_command] = STATE(628), + [sym_command] = STATE(628), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(639), + [sym_variable_assignment] = STATE(629), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -32596,7 +28932,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1335), + [aux_sym_program_repeat1] = STATE(1304), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), @@ -32606,7 +28942,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(2927), + [anon_sym_RBRACE] = ACTIONS(2885), [anon_sym_BANG] = ACTIONS(23), [anon_sym_LBRACK] = ACTIONS(25), [anon_sym_LBRACK_LBRACK] = ACTIONS(27), @@ -32636,40 +28972,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [865] = { - [sym_file_redirect] = STATE(1338), - [sym_file_descriptor] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_RPAREN] = ACTIONS(1249), - [anon_sym_PIPE_AMP] = ACTIONS(1249), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_LT] = ACTIONS(2931), - [anon_sym_GT] = ACTIONS(2931), - [anon_sym_GT_GT] = ACTIONS(2933), - [anon_sym_AMP_GT] = ACTIONS(2931), - [anon_sym_AMP_GT_GT] = ACTIONS(2933), - [anon_sym_LT_AMP] = ACTIONS(2933), - [anon_sym_GT_AMP] = ACTIONS(2933), + [855] = { + [sym_file_redirect] = STATE(1307), + [sym_file_descriptor] = ACTIONS(2887), + [anon_sym_PIPE] = ACTIONS(1233), + [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_LT] = ACTIONS(2889), + [anon_sym_GT] = ACTIONS(2889), + [anon_sym_GT_GT] = ACTIONS(2891), + [anon_sym_AMP_GT] = ACTIONS(2889), + [anon_sym_AMP_GT_GT] = ACTIONS(2891), + [anon_sym_LT_AMP] = ACTIONS(2891), + [anon_sym_GT_AMP] = ACTIONS(2891), [sym_comment] = ACTIONS(53), }, - [866] = { - [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_BQUOTE] = ACTIONS(1265), + [856] = { + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_RPAREN] = ACTIONS(1253), + [anon_sym_PIPE_AMP] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1253), + [anon_sym_PIPE_PIPE] = ACTIONS(1253), + [anon_sym_BQUOTE] = ACTIONS(1253), [sym_comment] = ACTIONS(53), }, - [867] = { + [857] = { [sym_file_descriptor] = ACTIONS(951), [sym_variable_name] = ACTIONS(951), [anon_sym_for] = ACTIONS(953), [anon_sym_while] = ACTIONS(953), [anon_sym_if] = ACTIONS(953), [anon_sym_case] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(2935), + [anon_sym_RPAREN] = ACTIONS(2893), [anon_sym_function] = ACTIONS(953), [anon_sym_LPAREN] = ACTIONS(951), [anon_sym_BANG] = ACTIONS(953), @@ -32701,24 +29037,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(953), }, - [868] = { + [858] = { [anon_sym_PIPE] = ACTIONS(473), - [anon_sym_RPAREN] = ACTIONS(2937), - [anon_sym_SEMI_SEMI] = ACTIONS(2939), + [anon_sym_RPAREN] = ACTIONS(2895), + [anon_sym_SEMI_SEMI] = ACTIONS(2897), [anon_sym_PIPE_AMP] = ACTIONS(473), [anon_sym_AMP_AMP] = ACTIONS(479), [anon_sym_PIPE_PIPE] = ACTIONS(479), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2939), - [anon_sym_LF] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2939), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym_LF] = ACTIONS(2899), + [anon_sym_AMP] = ACTIONS(2897), }, - [869] = { + [859] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(473), - [anon_sym_RPAREN] = ACTIONS(2937), - [anon_sym_SEMI_SEMI] = ACTIONS(2939), + [anon_sym_RPAREN] = ACTIONS(2895), + [anon_sym_SEMI_SEMI] = ACTIONS(2897), [anon_sym_PIPE_AMP] = ACTIONS(473), [anon_sym_AMP_AMP] = ACTIONS(479), [anon_sym_PIPE_PIPE] = ACTIONS(479), @@ -32740,78 +29076,78 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(371), [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(2939), - [anon_sym_LF] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2939), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym_LF] = ACTIONS(2899), + [anon_sym_AMP] = ACTIONS(2897), }, - [870] = { - [sym_file_redirect] = STATE(1345), - [sym_heredoc_redirect] = STATE(1345), - [sym_herestring_redirect] = STATE(1345), - [aux_sym_while_statement_repeat1] = STATE(1345), - [sym_file_descriptor] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(1353), - [anon_sym_RPAREN] = ACTIONS(1361), - [anon_sym_PIPE_AMP] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(1361), - [anon_sym_PIPE_PIPE] = ACTIONS(1361), - [anon_sym_LT] = ACTIONS(2945), - [anon_sym_GT] = ACTIONS(2945), - [anon_sym_GT_GT] = ACTIONS(2947), - [anon_sym_AMP_GT] = ACTIONS(2945), - [anon_sym_AMP_GT_GT] = ACTIONS(2947), - [anon_sym_LT_AMP] = ACTIONS(2947), - [anon_sym_GT_AMP] = ACTIONS(2947), - [anon_sym_LT_LT] = ACTIONS(2949), - [anon_sym_LT_LT_DASH] = ACTIONS(2951), - [anon_sym_LT_LT_LT] = ACTIONS(2953), + [860] = { + [sym_file_redirect] = STATE(1314), + [sym_heredoc_redirect] = STATE(1314), + [sym_herestring_redirect] = STATE(1314), + [aux_sym_while_statement_repeat1] = STATE(1314), + [sym_file_descriptor] = ACTIONS(2901), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_RPAREN] = ACTIONS(1349), + [anon_sym_PIPE_AMP] = ACTIONS(1349), + [anon_sym_AMP_AMP] = ACTIONS(1349), + [anon_sym_PIPE_PIPE] = ACTIONS(1349), + [anon_sym_LT] = ACTIONS(2903), + [anon_sym_GT] = ACTIONS(2903), + [anon_sym_GT_GT] = ACTIONS(2905), + [anon_sym_AMP_GT] = ACTIONS(2903), + [anon_sym_AMP_GT_GT] = ACTIONS(2905), + [anon_sym_LT_AMP] = ACTIONS(2905), + [anon_sym_GT_AMP] = ACTIONS(2905), + [anon_sym_LT_LT] = ACTIONS(2907), + [anon_sym_LT_LT_DASH] = ACTIONS(2909), + [anon_sym_LT_LT_LT] = ACTIONS(2911), [sym_comment] = ACTIONS(53), }, - [871] = { - [sym_concatenation] = STATE(1346), - [sym_string] = STATE(1349), - [sym_array] = STATE(1346), - [sym_simple_expansion] = STATE(1349), - [sym_string_expansion] = STATE(1349), - [sym_expansion] = STATE(1349), - [sym_command_substitution] = STATE(1349), - [sym_process_substitution] = STATE(1349), - [sym__empty_value] = ACTIONS(2955), - [anon_sym_LPAREN] = ACTIONS(2957), - [sym__special_characters] = ACTIONS(2959), + [861] = { + [sym_concatenation] = STATE(1315), + [sym_string] = STATE(1318), + [sym_array] = STATE(1315), + [sym_simple_expansion] = STATE(1318), + [sym_string_expansion] = STATE(1318), + [sym_expansion] = STATE(1318), + [sym_command_substitution] = STATE(1318), + [sym_process_substitution] = STATE(1318), + [sym__empty_value] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2915), + [sym__special_characters] = ACTIONS(2917), [anon_sym_DQUOTE] = ACTIONS(807), [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(2961), + [sym_raw_string] = ACTIONS(2919), [anon_sym_DOLLAR_LBRACE] = ACTIONS(813), [anon_sym_DOLLAR_LPAREN] = ACTIONS(815), [anon_sym_BQUOTE] = ACTIONS(817), [anon_sym_LT_LPAREN] = ACTIONS(819), [anon_sym_GT_LPAREN] = ACTIONS(819), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2961), + [sym_word] = ACTIONS(2919), }, - [872] = { - [sym_string] = STATE(1350), - [sym_simple_expansion] = STATE(1350), - [sym_string_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1350), - [sym_process_substitution] = STATE(1350), - [sym__special_characters] = ACTIONS(2963), + [862] = { + [sym_string] = STATE(1319), + [sym_simple_expansion] = STATE(1319), + [sym_string_expansion] = STATE(1319), + [sym_expansion] = STATE(1319), + [sym_command_substitution] = STATE(1319), + [sym_process_substitution] = STATE(1319), + [sym__special_characters] = ACTIONS(2921), [anon_sym_DQUOTE] = ACTIONS(807), [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(2963), + [sym_raw_string] = ACTIONS(2921), [anon_sym_DOLLAR_LBRACE] = ACTIONS(813), [anon_sym_DOLLAR_LPAREN] = ACTIONS(815), [anon_sym_BQUOTE] = ACTIONS(817), [anon_sym_LT_LPAREN] = ACTIONS(819), [anon_sym_GT_LPAREN] = ACTIONS(819), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2963), + [sym_word] = ACTIONS(2921), }, - [873] = { - [aux_sym_concatenation_repeat1] = STATE(1351), - [sym__concat] = ACTIONS(1864), + [863] = { + [aux_sym_concatenation_repeat1] = STATE(1320), + [sym__concat] = ACTIONS(1852), [sym_variable_name] = ACTIONS(693), [anon_sym_PIPE] = ACTIONS(695), [anon_sym_RPAREN] = ACTIONS(693), @@ -32831,7 +29167,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(695), [sym_word] = ACTIONS(695), }, - [874] = { + [864] = { [sym__concat] = ACTIONS(697), [sym_variable_name] = ACTIONS(697), [anon_sym_PIPE] = ACTIONS(699), @@ -32852,12 +29188,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), [sym_word] = ACTIONS(699), }, - [875] = { + [865] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(2965), + [anon_sym_DQUOTE] = ACTIONS(2923), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -32865,7 +29201,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(237), [sym_comment] = ACTIONS(177), }, - [876] = { + [866] = { [sym__concat] = ACTIONS(727), [sym_variable_name] = ACTIONS(727), [anon_sym_PIPE] = ACTIONS(729), @@ -32886,7 +29222,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(729), [sym_word] = ACTIONS(729), }, - [877] = { + [867] = { [sym__concat] = ACTIONS(731), [sym_variable_name] = ACTIONS(731), [anon_sym_PIPE] = ACTIONS(733), @@ -32907,7 +29243,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), [sym_word] = ACTIONS(733), }, - [878] = { + [868] = { [sym__concat] = ACTIONS(735), [sym_variable_name] = ACTIONS(735), [anon_sym_PIPE] = ACTIONS(737), @@ -32928,270 +29264,270 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(737), [sym_word] = ACTIONS(737), }, - [879] = { + [869] = { [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(2967), + [anon_sym_EQ] = ACTIONS(2925), [sym_comment] = ACTIONS(53), }, + [870] = { + [sym_concatenation] = STATE(1325), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1325), + [anon_sym_RBRACE] = ACTIONS(2927), + [anon_sym_EQ] = ACTIONS(2929), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(2933), + [anon_sym_COLON] = ACTIONS(2929), + [anon_sym_COLON_QMARK] = ACTIONS(2929), + [anon_sym_COLON_DASH] = ACTIONS(2929), + [anon_sym_PERCENT] = ACTIONS(2929), + [anon_sym_DASH] = ACTIONS(2929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [871] = { + [sym_subscript] = STATE(1329), + [sym_variable_name] = ACTIONS(2935), + [anon_sym_DOLLAR] = ACTIONS(2937), + [anon_sym_DASH] = ACTIONS(2937), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2939), + [anon_sym_STAR] = ACTIONS(2937), + [anon_sym_AT] = ACTIONS(2937), + [anon_sym_QMARK] = ACTIONS(2937), + [anon_sym_0] = ACTIONS(2941), + [anon_sym__] = ACTIONS(2941), + }, + [872] = { + [sym_concatenation] = STATE(1332), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1332), + [anon_sym_RBRACE] = ACTIONS(2943), + [anon_sym_EQ] = ACTIONS(2945), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(2949), + [anon_sym_COLON] = ACTIONS(2945), + [anon_sym_COLON_QMARK] = ACTIONS(2945), + [anon_sym_COLON_DASH] = ACTIONS(2945), + [anon_sym_PERCENT] = ACTIONS(2945), + [anon_sym_DASH] = ACTIONS(2945), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [873] = { + [sym_concatenation] = STATE(1335), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1335), + [anon_sym_RBRACE] = ACTIONS(2951), + [anon_sym_EQ] = ACTIONS(2953), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(2957), + [anon_sym_COLON] = ACTIONS(2953), + [anon_sym_COLON_QMARK] = ACTIONS(2953), + [anon_sym_COLON_DASH] = ACTIONS(2953), + [anon_sym_PERCENT] = ACTIONS(2953), + [anon_sym_DASH] = ACTIONS(2953), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [874] = { + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(2959), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(875), + [anon_sym_PIPE_PIPE] = ACTIONS(875), + [sym_comment] = ACTIONS(53), + }, + [875] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(2959), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(875), + [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_AMP_GT] = ACTIONS(371), + [anon_sym_AMP_GT_GT] = ACTIONS(369), + [anon_sym_LT_AMP] = ACTIONS(369), + [anon_sym_GT_AMP] = ACTIONS(369), + [sym__special_characters] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(369), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, + [876] = { + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_PIPE_AMP] = ACTIONS(925), + [anon_sym_AMP_AMP] = ACTIONS(927), + [anon_sym_PIPE_PIPE] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(2959), + [sym_comment] = ACTIONS(53), + }, + [877] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_PIPE_AMP] = ACTIONS(925), + [anon_sym_AMP_AMP] = ACTIONS(927), + [anon_sym_PIPE_PIPE] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_AMP_GT] = ACTIONS(371), + [anon_sym_AMP_GT_GT] = ACTIONS(369), + [anon_sym_LT_AMP] = ACTIONS(369), + [anon_sym_GT_AMP] = ACTIONS(369), + [sym__special_characters] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(2959), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, + [878] = { + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(2961), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(875), + [anon_sym_PIPE_PIPE] = ACTIONS(875), + [sym_comment] = ACTIONS(53), + }, + [879] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(2961), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(875), + [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_AMP_GT] = ACTIONS(371), + [anon_sym_AMP_GT_GT] = ACTIONS(369), + [anon_sym_LT_AMP] = ACTIONS(369), + [anon_sym_GT_AMP] = ACTIONS(369), + [sym__special_characters] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(369), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, [880] = { - [sym_concatenation] = STATE(1356), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1356), - [anon_sym_RBRACE] = ACTIONS(2969), - [anon_sym_EQ] = ACTIONS(2971), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2975), - [anon_sym_COLON] = ACTIONS(2971), - [anon_sym_COLON_QMARK] = ACTIONS(2971), - [anon_sym_COLON_DASH] = ACTIONS(2971), - [anon_sym_PERCENT] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [881] = { - [sym_subscript] = STATE(1360), - [sym_variable_name] = ACTIONS(2977), - [anon_sym_DOLLAR] = ACTIONS(2979), - [anon_sym_DASH] = ACTIONS(2979), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_AT] = ACTIONS(2979), - [anon_sym_QMARK] = ACTIONS(2979), - [anon_sym_0] = ACTIONS(2983), - [anon_sym__] = ACTIONS(2983), - }, - [882] = { - [sym_concatenation] = STATE(1363), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1363), - [anon_sym_RBRACE] = ACTIONS(2985), - [anon_sym_EQ] = ACTIONS(2987), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2989), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2991), - [anon_sym_COLON] = ACTIONS(2987), - [anon_sym_COLON_QMARK] = ACTIONS(2987), - [anon_sym_COLON_DASH] = ACTIONS(2987), - [anon_sym_PERCENT] = ACTIONS(2987), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [883] = { - [sym_concatenation] = STATE(1366), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1366), - [anon_sym_RBRACE] = ACTIONS(2993), - [anon_sym_EQ] = ACTIONS(2995), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(2999), - [anon_sym_COLON] = ACTIONS(2995), - [anon_sym_COLON_QMARK] = ACTIONS(2995), - [anon_sym_COLON_DASH] = ACTIONS(2995), - [anon_sym_PERCENT] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [884] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(3001), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [sym_comment] = ACTIONS(53), - }, - [885] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(3001), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [886] = { - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_PIPE_AMP] = ACTIONS(925), - [anon_sym_AMP_AMP] = ACTIONS(927), - [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_comment] = ACTIONS(53), - }, - [887] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_PIPE_AMP] = ACTIONS(925), - [anon_sym_AMP_AMP] = ACTIONS(927), - [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(3001), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [888] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(3003), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [sym_comment] = ACTIONS(53), - }, - [889] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(3003), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [890] = { - [sym_variable_assignment] = STATE(890), + [sym_variable_assignment] = STATE(880), [sym_subscript] = STATE(454), - [sym_concatenation] = STATE(890), + [sym_concatenation] = STATE(880), [sym_string] = STATE(448), [sym_simple_expansion] = STATE(448), [sym_string_expansion] = STATE(448), [sym_expansion] = STATE(448), [sym_command_substitution] = STATE(448), [sym_process_substitution] = STATE(448), - [aux_sym_declaration_command_repeat1] = STATE(890), - [sym_variable_name] = ACTIONS(3005), - [anon_sym_PIPE] = ACTIONS(1500), - [anon_sym_RPAREN] = ACTIONS(1529), - [anon_sym_PIPE_AMP] = ACTIONS(1529), - [anon_sym_AMP_AMP] = ACTIONS(1529), - [anon_sym_PIPE_PIPE] = ACTIONS(1529), - [sym__special_characters] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(3011), - [anon_sym_DOLLAR] = ACTIONS(3014), - [sym_raw_string] = ACTIONS(3017), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3023), - [anon_sym_BQUOTE] = ACTIONS(3026), - [anon_sym_LT_LPAREN] = ACTIONS(3029), - [anon_sym_GT_LPAREN] = ACTIONS(3029), + [aux_sym_declaration_command_repeat1] = STATE(880), + [sym_variable_name] = ACTIONS(2963), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1517), + [anon_sym_PIPE_AMP] = ACTIONS(1517), + [anon_sym_AMP_AMP] = ACTIONS(1517), + [anon_sym_PIPE_PIPE] = ACTIONS(1517), + [sym__special_characters] = ACTIONS(2966), + [anon_sym_DQUOTE] = ACTIONS(2969), + [anon_sym_DOLLAR] = ACTIONS(2972), + [sym_raw_string] = ACTIONS(2975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2978), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2981), + [anon_sym_BQUOTE] = ACTIONS(2984), + [anon_sym_LT_LPAREN] = ACTIONS(2987), + [anon_sym_GT_LPAREN] = ACTIONS(2987), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3032), - [sym_word] = ACTIONS(3035), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2990), + [sym_word] = ACTIONS(2993), }, - [891] = { - [sym_string] = STATE(1369), - [sym_simple_expansion] = STATE(1369), - [sym_string_expansion] = STATE(1369), - [sym_expansion] = STATE(1369), - [sym_command_substitution] = STATE(1369), - [sym_process_substitution] = STATE(1369), - [sym__special_characters] = ACTIONS(3038), + [881] = { + [sym_string] = STATE(1338), + [sym_simple_expansion] = STATE(1338), + [sym_string_expansion] = STATE(1338), + [sym_expansion] = STATE(1338), + [sym_command_substitution] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [sym__special_characters] = ACTIONS(2996), [anon_sym_DQUOTE] = ACTIONS(827), [anon_sym_DOLLAR] = ACTIONS(829), - [sym_raw_string] = ACTIONS(3038), + [sym_raw_string] = ACTIONS(2996), [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), [anon_sym_BQUOTE] = ACTIONS(837), [anon_sym_LT_LPAREN] = ACTIONS(839), [anon_sym_GT_LPAREN] = ACTIONS(839), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3038), + [sym_word] = ACTIONS(2996), }, - [892] = { - [aux_sym_concatenation_repeat1] = STATE(1370), - [sym__concat] = ACTIONS(1886), + [882] = { + [aux_sym_concatenation_repeat1] = STATE(1339), + [sym__concat] = ACTIONS(1874), [anon_sym_PIPE] = ACTIONS(695), [anon_sym_RPAREN] = ACTIONS(693), [anon_sym_PIPE_AMP] = ACTIONS(693), @@ -33210,7 +29546,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(695), [sym_word] = ACTIONS(695), }, - [893] = { + [883] = { [sym__concat] = ACTIONS(697), [anon_sym_PIPE] = ACTIONS(699), [anon_sym_RPAREN] = ACTIONS(697), @@ -33230,12 +29566,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), [sym_word] = ACTIONS(699), }, - [894] = { + [884] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(2998), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -33243,7 +29579,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(237), [sym_comment] = ACTIONS(177), }, - [895] = { + [885] = { [sym__concat] = ACTIONS(727), [anon_sym_PIPE] = ACTIONS(729), [anon_sym_RPAREN] = ACTIONS(727), @@ -33263,7 +29599,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(729), [sym_word] = ACTIONS(729), }, - [896] = { + [886] = { [sym__concat] = ACTIONS(731), [anon_sym_PIPE] = ACTIONS(733), [anon_sym_RPAREN] = ACTIONS(731), @@ -33283,7 +29619,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), [sym_word] = ACTIONS(733), }, - [897] = { + [887] = { [sym__concat] = ACTIONS(735), [anon_sym_PIPE] = ACTIONS(737), [anon_sym_RPAREN] = ACTIONS(735), @@ -33303,429 +29639,658 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(737), [sym_word] = ACTIONS(737), }, - [898] = { + [888] = { [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(3042), + [anon_sym_EQ] = ACTIONS(3000), [sym_comment] = ACTIONS(53), }, + [889] = { + [sym_concatenation] = STATE(1344), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1344), + [anon_sym_RBRACE] = ACTIONS(3002), + [anon_sym_EQ] = ACTIONS(3004), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3006), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(3008), + [anon_sym_COLON] = ACTIONS(3004), + [anon_sym_COLON_QMARK] = ACTIONS(3004), + [anon_sym_COLON_DASH] = ACTIONS(3004), + [anon_sym_PERCENT] = ACTIONS(3004), + [anon_sym_DASH] = ACTIONS(3004), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [890] = { + [sym_subscript] = STATE(1348), + [sym_variable_name] = ACTIONS(3010), + [anon_sym_DOLLAR] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3014), + [anon_sym_STAR] = ACTIONS(3012), + [anon_sym_AT] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3012), + [anon_sym_0] = ACTIONS(3016), + [anon_sym__] = ACTIONS(3016), + }, + [891] = { + [sym_concatenation] = STATE(1351), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1351), + [anon_sym_RBRACE] = ACTIONS(3018), + [anon_sym_EQ] = ACTIONS(3020), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(3024), + [anon_sym_COLON] = ACTIONS(3020), + [anon_sym_COLON_QMARK] = ACTIONS(3020), + [anon_sym_COLON_DASH] = ACTIONS(3020), + [anon_sym_PERCENT] = ACTIONS(3020), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [892] = { + [sym_concatenation] = STATE(1354), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1354), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_EQ] = ACTIONS(3028), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(3032), + [anon_sym_COLON] = ACTIONS(3028), + [anon_sym_COLON_QMARK] = ACTIONS(3028), + [anon_sym_COLON_DASH] = ACTIONS(3028), + [anon_sym_PERCENT] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [893] = { + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(3034), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(875), + [anon_sym_PIPE_PIPE] = ACTIONS(875), + [sym_comment] = ACTIONS(53), + }, + [894] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(3034), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(875), + [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_AMP_GT] = ACTIONS(371), + [anon_sym_AMP_GT_GT] = ACTIONS(369), + [anon_sym_LT_AMP] = ACTIONS(369), + [anon_sym_GT_AMP] = ACTIONS(369), + [sym__special_characters] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(369), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, + [895] = { + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_PIPE_AMP] = ACTIONS(925), + [anon_sym_AMP_AMP] = ACTIONS(927), + [anon_sym_PIPE_PIPE] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(3034), + [sym_comment] = ACTIONS(53), + }, + [896] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_PIPE_AMP] = ACTIONS(925), + [anon_sym_AMP_AMP] = ACTIONS(927), + [anon_sym_PIPE_PIPE] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_AMP_GT] = ACTIONS(371), + [anon_sym_AMP_GT_GT] = ACTIONS(369), + [anon_sym_LT_AMP] = ACTIONS(369), + [anon_sym_GT_AMP] = ACTIONS(369), + [sym__special_characters] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(3034), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, + [897] = { + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(3036), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(875), + [anon_sym_PIPE_PIPE] = ACTIONS(875), + [sym_comment] = ACTIONS(53), + }, + [898] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(3036), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(875), + [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_AMP_GT] = ACTIONS(371), + [anon_sym_AMP_GT_GT] = ACTIONS(369), + [anon_sym_LT_AMP] = ACTIONS(369), + [anon_sym_GT_AMP] = ACTIONS(369), + [sym__special_characters] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(369), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, [899] = { - [sym_concatenation] = STATE(1375), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1375), - [anon_sym_RBRACE] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3046), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3048), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(3050), - [anon_sym_COLON] = ACTIONS(3046), - [anon_sym_COLON_QMARK] = ACTIONS(3046), - [anon_sym_COLON_DASH] = ACTIONS(3046), - [anon_sym_PERCENT] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [900] = { - [sym_subscript] = STATE(1379), - [sym_variable_name] = ACTIONS(3052), - [anon_sym_DOLLAR] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3056), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_AT] = ACTIONS(3054), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_0] = ACTIONS(3058), - [anon_sym__] = ACTIONS(3058), - }, - [901] = { - [sym_concatenation] = STATE(1382), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1382), - [anon_sym_RBRACE] = ACTIONS(3060), - [anon_sym_EQ] = ACTIONS(3062), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3064), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(3066), - [anon_sym_COLON] = ACTIONS(3062), - [anon_sym_COLON_QMARK] = ACTIONS(3062), - [anon_sym_COLON_DASH] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [902] = { - [sym_concatenation] = STATE(1385), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1385), - [anon_sym_RBRACE] = ACTIONS(3068), - [anon_sym_EQ] = ACTIONS(3070), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3072), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(3074), - [anon_sym_COLON] = ACTIONS(3070), - [anon_sym_COLON_QMARK] = ACTIONS(3070), - [anon_sym_COLON_DASH] = ACTIONS(3070), - [anon_sym_PERCENT] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [903] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(3076), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [sym_comment] = ACTIONS(53), - }, - [904] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(3076), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [905] = { - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_PIPE_AMP] = ACTIONS(925), - [anon_sym_AMP_AMP] = ACTIONS(927), - [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_BQUOTE] = ACTIONS(3076), - [sym_comment] = ACTIONS(53), - }, - [906] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_PIPE_AMP] = ACTIONS(925), - [anon_sym_AMP_AMP] = ACTIONS(927), - [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(3076), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [907] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(3078), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [sym_comment] = ACTIONS(53), - }, - [908] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(3078), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [909] = { - [sym_concatenation] = STATE(909), + [sym_concatenation] = STATE(899), [sym_string] = STATE(459), [sym_simple_expansion] = STATE(459), [sym_string_expansion] = STATE(459), [sym_expansion] = STATE(459), [sym_command_substitution] = STATE(459), [sym_process_substitution] = STATE(459), - [aux_sym_unset_command_repeat1] = STATE(909), - [anon_sym_PIPE] = ACTIONS(1581), - [anon_sym_RPAREN] = ACTIONS(1610), - [anon_sym_PIPE_AMP] = ACTIONS(1610), - [anon_sym_AMP_AMP] = ACTIONS(1610), - [anon_sym_PIPE_PIPE] = ACTIONS(1610), - [sym__special_characters] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3083), - [anon_sym_DOLLAR] = ACTIONS(3086), - [sym_raw_string] = ACTIONS(3089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3092), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3095), - [anon_sym_BQUOTE] = ACTIONS(3098), - [anon_sym_LT_LPAREN] = ACTIONS(3101), - [anon_sym_GT_LPAREN] = ACTIONS(3101), + [aux_sym_unset_command_repeat1] = STATE(899), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_PIPE_AMP] = ACTIONS(1598), + [anon_sym_AMP_AMP] = ACTIONS(1598), + [anon_sym_PIPE_PIPE] = ACTIONS(1598), + [sym__special_characters] = ACTIONS(3038), + [anon_sym_DQUOTE] = ACTIONS(3041), + [anon_sym_DOLLAR] = ACTIONS(3044), + [sym_raw_string] = ACTIONS(3047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3053), + [anon_sym_BQUOTE] = ACTIONS(3056), + [anon_sym_LT_LPAREN] = ACTIONS(3059), + [anon_sym_GT_LPAREN] = ACTIONS(3059), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3104), - [sym_word] = ACTIONS(3107), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3062), + [sym_word] = ACTIONS(3065), }, - [910] = { - [sym__simple_heredoc_body] = ACTIONS(1654), - [sym__heredoc_body_beginning] = ACTIONS(1654), - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(1654), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1654), - [anon_sym_PIPE_AMP] = ACTIONS(1654), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_PIPE_PIPE] = ACTIONS(1654), - [anon_sym_EQ_TILDE] = ACTIONS(1656), - [anon_sym_EQ_EQ] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1654), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1654), - [anon_sym_LT_AMP] = ACTIONS(1654), - [anon_sym_GT_AMP] = ACTIONS(1654), - [anon_sym_LT_LT] = ACTIONS(1656), - [anon_sym_LT_LT_DASH] = ACTIONS(1654), - [anon_sym_LT_LT_LT] = ACTIONS(1654), - [sym__special_characters] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1654), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [anon_sym_LT_LPAREN] = ACTIONS(1654), - [anon_sym_GT_LPAREN] = ACTIONS(1654), + [900] = { + [sym__simple_heredoc_body] = ACTIONS(1642), + [sym__heredoc_body_beginning] = ACTIONS(1642), + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_PIPE_AMP] = ACTIONS(1642), + [anon_sym_AMP_AMP] = ACTIONS(1642), + [anon_sym_PIPE_PIPE] = ACTIONS(1642), + [anon_sym_EQ_TILDE] = ACTIONS(1644), + [anon_sym_EQ_EQ] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1642), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1642), + [anon_sym_LT_AMP] = ACTIONS(1642), + [anon_sym_GT_AMP] = ACTIONS(1642), + [anon_sym_LT_LT] = ACTIONS(1644), + [anon_sym_LT_LT_DASH] = ACTIONS(1642), + [anon_sym_LT_LT_LT] = ACTIONS(1642), + [sym__special_characters] = ACTIONS(1642), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1642), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1642), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), + [anon_sym_LT_LPAREN] = ACTIONS(1642), + [anon_sym_GT_LPAREN] = ACTIONS(1642), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1656), + [sym_word] = ACTIONS(1644), }, - [911] = { - [aux_sym_concatenation_repeat1] = STATE(911), - [sym__simple_heredoc_body] = ACTIONS(1654), - [sym__heredoc_body_beginning] = ACTIONS(1654), - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1654), - [anon_sym_PIPE_AMP] = ACTIONS(1654), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_PIPE_PIPE] = ACTIONS(1654), - [anon_sym_EQ_TILDE] = ACTIONS(1656), - [anon_sym_EQ_EQ] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1654), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1654), - [anon_sym_LT_AMP] = ACTIONS(1654), - [anon_sym_GT_AMP] = ACTIONS(1654), - [anon_sym_LT_LT] = ACTIONS(1656), - [anon_sym_LT_LT_DASH] = ACTIONS(1654), - [anon_sym_LT_LT_LT] = ACTIONS(1654), - [sym__special_characters] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1654), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [anon_sym_LT_LPAREN] = ACTIONS(1654), - [anon_sym_GT_LPAREN] = ACTIONS(1654), + [901] = { + [aux_sym_concatenation_repeat1] = STATE(901), + [sym__simple_heredoc_body] = ACTIONS(1642), + [sym__heredoc_body_beginning] = ACTIONS(1642), + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(3068), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_PIPE_AMP] = ACTIONS(1642), + [anon_sym_AMP_AMP] = ACTIONS(1642), + [anon_sym_PIPE_PIPE] = ACTIONS(1642), + [anon_sym_EQ_TILDE] = ACTIONS(1644), + [anon_sym_EQ_EQ] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1642), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1642), + [anon_sym_LT_AMP] = ACTIONS(1642), + [anon_sym_GT_AMP] = ACTIONS(1642), + [anon_sym_LT_LT] = ACTIONS(1644), + [anon_sym_LT_LT_DASH] = ACTIONS(1642), + [anon_sym_LT_LT_LT] = ACTIONS(1642), + [sym__special_characters] = ACTIONS(1642), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1642), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1642), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), + [anon_sym_LT_LPAREN] = ACTIONS(1642), + [anon_sym_GT_LPAREN] = ACTIONS(1642), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1656), + [sym_word] = ACTIONS(1644), }, - [912] = { - [sym__simple_heredoc_body] = ACTIONS(1703), - [sym__heredoc_body_beginning] = ACTIONS(1703), - [sym_file_descriptor] = ACTIONS(1703), - [sym__concat] = ACTIONS(1703), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_RPAREN] = ACTIONS(1703), - [anon_sym_PIPE_AMP] = ACTIONS(1703), - [anon_sym_AMP_AMP] = ACTIONS(1703), - [anon_sym_PIPE_PIPE] = ACTIONS(1703), - [anon_sym_EQ_TILDE] = ACTIONS(1705), - [anon_sym_EQ_EQ] = ACTIONS(1705), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_GT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1703), - [anon_sym_AMP_GT] = ACTIONS(1705), - [anon_sym_AMP_GT_GT] = ACTIONS(1703), - [anon_sym_LT_AMP] = ACTIONS(1703), - [anon_sym_GT_AMP] = ACTIONS(1703), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_LT_LT_DASH] = ACTIONS(1703), - [anon_sym_LT_LT_LT] = ACTIONS(1703), - [sym__special_characters] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1703), - [anon_sym_DOLLAR] = ACTIONS(1705), - [sym_raw_string] = ACTIONS(1703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1703), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1703), - [anon_sym_BQUOTE] = ACTIONS(1703), - [anon_sym_LT_LPAREN] = ACTIONS(1703), - [anon_sym_GT_LPAREN] = ACTIONS(1703), + [902] = { + [sym__simple_heredoc_body] = ACTIONS(1691), + [sym__heredoc_body_beginning] = ACTIONS(1691), + [sym_file_descriptor] = ACTIONS(1691), + [sym__concat] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1693), + [anon_sym_RPAREN] = ACTIONS(1691), + [anon_sym_PIPE_AMP] = ACTIONS(1691), + [anon_sym_AMP_AMP] = ACTIONS(1691), + [anon_sym_PIPE_PIPE] = ACTIONS(1691), + [anon_sym_EQ_TILDE] = ACTIONS(1693), + [anon_sym_EQ_EQ] = ACTIONS(1693), + [anon_sym_LT] = ACTIONS(1693), + [anon_sym_GT] = ACTIONS(1693), + [anon_sym_GT_GT] = ACTIONS(1691), + [anon_sym_AMP_GT] = ACTIONS(1693), + [anon_sym_AMP_GT_GT] = ACTIONS(1691), + [anon_sym_LT_AMP] = ACTIONS(1691), + [anon_sym_GT_AMP] = ACTIONS(1691), + [anon_sym_LT_LT] = ACTIONS(1693), + [anon_sym_LT_LT_DASH] = ACTIONS(1691), + [anon_sym_LT_LT_LT] = ACTIONS(1691), + [sym__special_characters] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(1693), + [sym_raw_string] = ACTIONS(1691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1691), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1691), + [anon_sym_BQUOTE] = ACTIONS(1691), + [anon_sym_LT_LPAREN] = ACTIONS(1691), + [anon_sym_GT_LPAREN] = ACTIONS(1691), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1705), + [sym_word] = ACTIONS(1693), }, - [913] = { - [sym_concatenation] = STATE(1391), - [sym_string] = STATE(1390), - [sym_simple_expansion] = STATE(1390), - [sym_string_expansion] = STATE(1390), - [sym_expansion] = STATE(1390), - [sym_command_substitution] = STATE(1390), - [sym_process_substitution] = STATE(1390), - [anon_sym_RBRACE] = ACTIONS(3113), - [sym__special_characters] = ACTIONS(3115), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(3117), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), + [903] = { + [sym_concatenation] = STATE(1360), + [sym_string] = STATE(1359), + [sym_simple_expansion] = STATE(1359), + [sym_string_expansion] = STATE(1359), + [sym_expansion] = STATE(1359), + [sym_command_substitution] = STATE(1359), + [sym_process_substitution] = STATE(1359), + [anon_sym_RBRACE] = ACTIONS(3071), + [sym__special_characters] = ACTIONS(3073), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(3075), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3117), + [sym_word] = ACTIONS(3075), }, - [914] = { - [sym__simple_heredoc_body] = ACTIONS(1744), - [sym__heredoc_body_beginning] = ACTIONS(1744), - [sym_file_descriptor] = ACTIONS(1744), - [sym__concat] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1744), - [anon_sym_PIPE_AMP] = ACTIONS(1744), - [anon_sym_AMP_AMP] = ACTIONS(1744), - [anon_sym_PIPE_PIPE] = ACTIONS(1744), - [anon_sym_EQ_TILDE] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1746), - [anon_sym_GT] = ACTIONS(1746), - [anon_sym_GT_GT] = ACTIONS(1744), - [anon_sym_AMP_GT] = ACTIONS(1746), - [anon_sym_AMP_GT_GT] = ACTIONS(1744), - [anon_sym_LT_AMP] = ACTIONS(1744), - [anon_sym_GT_AMP] = ACTIONS(1744), - [anon_sym_LT_LT] = ACTIONS(1746), - [anon_sym_LT_LT_DASH] = ACTIONS(1744), - [anon_sym_LT_LT_LT] = ACTIONS(1744), - [sym__special_characters] = ACTIONS(1744), - [anon_sym_DQUOTE] = ACTIONS(1744), - [anon_sym_DOLLAR] = ACTIONS(1746), - [sym_raw_string] = ACTIONS(1744), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1744), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1744), - [anon_sym_BQUOTE] = ACTIONS(1744), - [anon_sym_LT_LPAREN] = ACTIONS(1744), - [anon_sym_GT_LPAREN] = ACTIONS(1744), + [904] = { + [sym__simple_heredoc_body] = ACTIONS(1732), + [sym__heredoc_body_beginning] = ACTIONS(1732), + [sym_file_descriptor] = ACTIONS(1732), + [sym__concat] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1732), + [anon_sym_PIPE_AMP] = ACTIONS(1732), + [anon_sym_AMP_AMP] = ACTIONS(1732), + [anon_sym_PIPE_PIPE] = ACTIONS(1732), + [anon_sym_EQ_TILDE] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_GT_GT] = ACTIONS(1732), + [anon_sym_AMP_GT] = ACTIONS(1734), + [anon_sym_AMP_GT_GT] = ACTIONS(1732), + [anon_sym_LT_AMP] = ACTIONS(1732), + [anon_sym_GT_AMP] = ACTIONS(1732), + [anon_sym_LT_LT] = ACTIONS(1734), + [anon_sym_LT_LT_DASH] = ACTIONS(1732), + [anon_sym_LT_LT_LT] = ACTIONS(1732), + [sym__special_characters] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1732), + [anon_sym_DOLLAR] = ACTIONS(1734), + [sym_raw_string] = ACTIONS(1732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1732), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1732), + [anon_sym_BQUOTE] = ACTIONS(1732), + [anon_sym_LT_LPAREN] = ACTIONS(1732), + [anon_sym_GT_LPAREN] = ACTIONS(1732), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1746), + [sym_word] = ACTIONS(1734), }, - [915] = { + [905] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3119), + [sym_regex_without_right_brace] = ACTIONS(3077), }, - [916] = { - [sym_concatenation] = STATE(839), + [906] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3121), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [907] = { + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(3081), + [sym_comment] = ACTIONS(53), + }, + [908] = { + [sym_concatenation] = STATE(1366), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1366), + [anon_sym_RBRACE] = ACTIONS(3083), + [anon_sym_EQ] = ACTIONS(3085), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3087), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(3089), + [anon_sym_COLON] = ACTIONS(3085), + [anon_sym_COLON_QMARK] = ACTIONS(3085), + [anon_sym_COLON_DASH] = ACTIONS(3085), + [anon_sym_PERCENT] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [909] = { + [sym_concatenation] = STATE(1369), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1369), + [anon_sym_RBRACE] = ACTIONS(3091), + [anon_sym_EQ] = ACTIONS(3093), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3095), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(3097), + [anon_sym_COLON] = ACTIONS(3093), + [anon_sym_COLON_QMARK] = ACTIONS(3093), + [anon_sym_COLON_DASH] = ACTIONS(3093), + [anon_sym_PERCENT] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3093), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [910] = { + [sym_concatenation] = STATE(1371), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1371), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_EQ] = ACTIONS(3099), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(3103), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [911] = { + [sym__simple_heredoc_body] = ACTIONS(1798), + [sym__heredoc_body_beginning] = ACTIONS(1798), + [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(53), + [sym_word] = ACTIONS(1800), + }, + [912] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3105), + }, + [913] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3107), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [914] = { + [sym__simple_heredoc_body] = ACTIONS(1806), + [sym__heredoc_body_beginning] = ACTIONS(1806), + [sym_file_descriptor] = ACTIONS(1806), + [sym__concat] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1808), + [anon_sym_RPAREN] = ACTIONS(1806), + [anon_sym_PIPE_AMP] = ACTIONS(1806), + [anon_sym_AMP_AMP] = ACTIONS(1806), + [anon_sym_PIPE_PIPE] = ACTIONS(1806), + [anon_sym_EQ_TILDE] = ACTIONS(1808), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_GT_GT] = ACTIONS(1806), + [anon_sym_AMP_GT] = ACTIONS(1808), + [anon_sym_AMP_GT_GT] = ACTIONS(1806), + [anon_sym_LT_AMP] = ACTIONS(1806), + [anon_sym_GT_AMP] = ACTIONS(1806), + [anon_sym_LT_LT] = ACTIONS(1808), + [anon_sym_LT_LT_DASH] = ACTIONS(1806), + [anon_sym_LT_LT_LT] = ACTIONS(1806), + [sym__special_characters] = ACTIONS(1806), + [anon_sym_DQUOTE] = ACTIONS(1806), + [anon_sym_DOLLAR] = ACTIONS(1808), + [sym_raw_string] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1806), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1806), + [anon_sym_BQUOTE] = ACTIONS(1806), + [anon_sym_LT_LPAREN] = ACTIONS(1806), + [anon_sym_GT_LPAREN] = ACTIONS(1806), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1808), + }, + [915] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3109), + }, + [916] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -33734,522 +30299,293 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [917] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(3123), + [sym__simple_heredoc_body] = ACTIONS(1940), + [sym__heredoc_body_beginning] = ACTIONS(1940), + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1940), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_EQ_TILDE] = ACTIONS(1942), + [anon_sym_EQ_EQ] = ACTIONS(1942), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_GT_GT] = ACTIONS(1940), + [anon_sym_AMP_GT] = ACTIONS(1942), + [anon_sym_AMP_GT_GT] = ACTIONS(1940), + [anon_sym_LT_AMP] = ACTIONS(1940), + [anon_sym_GT_AMP] = ACTIONS(1940), + [anon_sym_LT_LT] = ACTIONS(1942), + [anon_sym_LT_LT_DASH] = ACTIONS(1940), + [anon_sym_LT_LT_LT] = ACTIONS(1940), + [sym__special_characters] = ACTIONS(1940), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(1942), + [sym_raw_string] = ACTIONS(1940), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1940), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [anon_sym_LT_LPAREN] = ACTIONS(1940), + [anon_sym_GT_LPAREN] = ACTIONS(1940), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1942), }, [918] = { - [sym_concatenation] = STATE(1397), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1397), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_EQ] = ACTIONS(3127), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3129), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(3131), - [anon_sym_COLON] = ACTIONS(3127), - [anon_sym_COLON_QMARK] = ACTIONS(3127), - [anon_sym_COLON_DASH] = ACTIONS(3127), - [anon_sym_PERCENT] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym__simple_heredoc_body] = ACTIONS(2006), + [sym__heredoc_body_beginning] = ACTIONS(2006), + [sym_file_descriptor] = ACTIONS(2006), + [sym__concat] = ACTIONS(2006), + [anon_sym_PIPE] = ACTIONS(2008), + [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_EQ_TILDE] = ACTIONS(2008), + [anon_sym_EQ_EQ] = ACTIONS(2008), + [anon_sym_LT] = ACTIONS(2008), + [anon_sym_GT] = ACTIONS(2008), + [anon_sym_GT_GT] = ACTIONS(2006), + [anon_sym_AMP_GT] = ACTIONS(2008), + [anon_sym_AMP_GT_GT] = ACTIONS(2006), + [anon_sym_LT_AMP] = ACTIONS(2006), + [anon_sym_GT_AMP] = ACTIONS(2006), + [anon_sym_LT_LT] = ACTIONS(2008), + [anon_sym_LT_LT_DASH] = ACTIONS(2006), + [anon_sym_LT_LT_LT] = ACTIONS(2006), + [sym__special_characters] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [anon_sym_DOLLAR] = ACTIONS(2008), + [sym_raw_string] = ACTIONS(2006), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2006), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2006), + [anon_sym_BQUOTE] = ACTIONS(2006), + [anon_sym_LT_LPAREN] = ACTIONS(2006), + [anon_sym_GT_LPAREN] = ACTIONS(2006), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2008), }, [919] = { - [sym_concatenation] = STATE(1400), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1400), - [anon_sym_RBRACE] = ACTIONS(3133), - [anon_sym_EQ] = ACTIONS(3135), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3137), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(3139), - [anon_sym_COLON] = ACTIONS(3135), - [anon_sym_COLON_QMARK] = ACTIONS(3135), - [anon_sym_COLON_DASH] = ACTIONS(3135), - [anon_sym_PERCENT] = ACTIONS(3135), - [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_compound_statement] = STATE(1375), + [anon_sym_LBRACE] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), }, [920] = { - [sym_concatenation] = STATE(1402), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1402), - [anon_sym_RBRACE] = ACTIONS(3113), - [anon_sym_EQ] = ACTIONS(3141), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3143), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(3145), - [anon_sym_COLON] = ACTIONS(3141), - [anon_sym_COLON_QMARK] = ACTIONS(3141), - [anon_sym_COLON_DASH] = ACTIONS(3141), - [anon_sym_PERCENT] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(2010), + [anon_sym_RPAREN] = ACTIONS(2012), + [anon_sym_PIPE_AMP] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2012), + [anon_sym_PIPE_PIPE] = ACTIONS(2012), + [anon_sym_BQUOTE] = ACTIONS(2012), + [sym_comment] = ACTIONS(53), }, [921] = { - [sym__simple_heredoc_body] = ACTIONS(1810), - [sym__heredoc_body_beginning] = ACTIONS(1810), - [sym_file_descriptor] = ACTIONS(1810), - [sym__concat] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_PIPE_AMP] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_EQ_TILDE] = ACTIONS(1812), - [anon_sym_EQ_EQ] = ACTIONS(1812), - [anon_sym_LT] = ACTIONS(1812), - [anon_sym_GT] = ACTIONS(1812), - [anon_sym_GT_GT] = ACTIONS(1810), - [anon_sym_AMP_GT] = ACTIONS(1812), - [anon_sym_AMP_GT_GT] = ACTIONS(1810), - [anon_sym_LT_AMP] = ACTIONS(1810), - [anon_sym_GT_AMP] = ACTIONS(1810), - [anon_sym_LT_LT] = ACTIONS(1812), - [anon_sym_LT_LT_DASH] = ACTIONS(1810), - [anon_sym_LT_LT_LT] = ACTIONS(1810), - [sym__special_characters] = ACTIONS(1810), - [anon_sym_DQUOTE] = ACTIONS(1810), - [anon_sym_DOLLAR] = ACTIONS(1812), - [sym_raw_string] = ACTIONS(1810), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1810), - [anon_sym_LT_LPAREN] = ACTIONS(1810), - [anon_sym_GT_LPAREN] = ACTIONS(1810), + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(2010), + [anon_sym_RPAREN] = ACTIONS(2012), + [anon_sym_PIPE_AMP] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2012), + [anon_sym_PIPE_PIPE] = ACTIONS(2012), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_AMP_GT] = ACTIONS(371), + [anon_sym_AMP_GT_GT] = ACTIONS(369), + [anon_sym_LT_AMP] = ACTIONS(369), + [anon_sym_GT_AMP] = ACTIONS(369), + [sym__special_characters] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(369), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1812), + [sym_word] = ACTIONS(369), }, [922] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3147), + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(2016), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(2016), + [anon_sym_PIPE_PIPE] = ACTIONS(2016), + [sym_comment] = ACTIONS(53), }, [923] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3149), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(2016), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(2016), + [anon_sym_PIPE_PIPE] = ACTIONS(2016), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_AMP_GT] = ACTIONS(371), + [anon_sym_AMP_GT_GT] = ACTIONS(369), + [anon_sym_LT_AMP] = ACTIONS(369), + [anon_sym_GT_AMP] = ACTIONS(369), + [sym__special_characters] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(369), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), }, [924] = { - [sym__simple_heredoc_body] = ACTIONS(1818), - [sym__heredoc_body_beginning] = ACTIONS(1818), - [sym_file_descriptor] = ACTIONS(1818), - [sym__concat] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_PIPE_AMP] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_EQ_TILDE] = ACTIONS(1820), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_LT] = ACTIONS(1820), - [anon_sym_GT] = ACTIONS(1820), - [anon_sym_GT_GT] = ACTIONS(1818), - [anon_sym_AMP_GT] = ACTIONS(1820), - [anon_sym_AMP_GT_GT] = ACTIONS(1818), - [anon_sym_LT_AMP] = ACTIONS(1818), - [anon_sym_GT_AMP] = ACTIONS(1818), - [anon_sym_LT_LT] = ACTIONS(1820), - [anon_sym_LT_LT_DASH] = ACTIONS(1818), - [anon_sym_LT_LT_LT] = ACTIONS(1818), - [sym__special_characters] = ACTIONS(1818), - [anon_sym_DQUOTE] = ACTIONS(1818), - [anon_sym_DOLLAR] = ACTIONS(1820), - [sym_raw_string] = ACTIONS(1818), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1818), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1818), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1818), - [anon_sym_GT_LPAREN] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(2018), + [anon_sym_RPAREN] = ACTIONS(2020), + [anon_sym_PIPE_AMP] = ACTIONS(2020), + [anon_sym_AMP_AMP] = ACTIONS(2020), + [anon_sym_PIPE_PIPE] = ACTIONS(2020), + [anon_sym_BQUOTE] = ACTIONS(2020), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1820), }, [925] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3151), - }, - [926] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3113), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [927] = { - [sym__simple_heredoc_body] = ACTIONS(1952), - [sym__heredoc_body_beginning] = ACTIONS(1952), - [sym_file_descriptor] = ACTIONS(1952), - [sym__concat] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_RPAREN] = ACTIONS(1952), - [anon_sym_PIPE_AMP] = ACTIONS(1952), - [anon_sym_AMP_AMP] = ACTIONS(1952), - [anon_sym_PIPE_PIPE] = ACTIONS(1952), - [anon_sym_EQ_TILDE] = ACTIONS(1954), - [anon_sym_EQ_EQ] = ACTIONS(1954), - [anon_sym_LT] = ACTIONS(1954), - [anon_sym_GT] = ACTIONS(1954), - [anon_sym_GT_GT] = ACTIONS(1952), - [anon_sym_AMP_GT] = ACTIONS(1954), - [anon_sym_AMP_GT_GT] = ACTIONS(1952), - [anon_sym_LT_AMP] = ACTIONS(1952), - [anon_sym_GT_AMP] = ACTIONS(1952), - [anon_sym_LT_LT] = ACTIONS(1954), - [anon_sym_LT_LT_DASH] = ACTIONS(1952), - [anon_sym_LT_LT_LT] = ACTIONS(1952), - [sym__special_characters] = ACTIONS(1952), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(1952), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1952), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1952), - [anon_sym_BQUOTE] = ACTIONS(1952), - [anon_sym_LT_LPAREN] = ACTIONS(1952), - [anon_sym_GT_LPAREN] = ACTIONS(1952), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1954), - }, - [928] = { - [sym__simple_heredoc_body] = ACTIONS(2018), - [sym__heredoc_body_beginning] = ACTIONS(2018), - [sym_file_descriptor] = ACTIONS(2018), - [sym__concat] = ACTIONS(2018), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_RPAREN] = ACTIONS(2018), - [anon_sym_PIPE_AMP] = ACTIONS(2018), - [anon_sym_AMP_AMP] = ACTIONS(2018), - [anon_sym_PIPE_PIPE] = ACTIONS(2018), - [anon_sym_EQ_TILDE] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT] = ACTIONS(2020), - [anon_sym_GT] = ACTIONS(2020), - [anon_sym_GT_GT] = ACTIONS(2018), - [anon_sym_AMP_GT] = ACTIONS(2020), - [anon_sym_AMP_GT_GT] = ACTIONS(2018), - [anon_sym_LT_AMP] = ACTIONS(2018), - [anon_sym_GT_AMP] = ACTIONS(2018), - [anon_sym_LT_LT] = ACTIONS(2020), - [anon_sym_LT_LT_DASH] = ACTIONS(2018), - [anon_sym_LT_LT_LT] = ACTIONS(2018), - [sym__special_characters] = ACTIONS(2018), - [anon_sym_DQUOTE] = ACTIONS(2018), - [anon_sym_DOLLAR] = ACTIONS(2020), - [sym_raw_string] = ACTIONS(2018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2018), - [anon_sym_BQUOTE] = ACTIONS(2018), - [anon_sym_LT_LPAREN] = ACTIONS(2018), - [anon_sym_GT_LPAREN] = ACTIONS(2018), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2020), - }, - [929] = { - [sym_compound_statement] = STATE(1406), - [anon_sym_LBRACE] = ACTIONS(1852), - [sym_comment] = ACTIONS(53), - }, - [930] = { - [anon_sym_PIPE] = ACTIONS(2022), - [anon_sym_RPAREN] = ACTIONS(2024), - [anon_sym_PIPE_AMP] = ACTIONS(2024), - [anon_sym_AMP_AMP] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2024), - [anon_sym_BQUOTE] = ACTIONS(2024), - [sym_comment] = ACTIONS(53), - }, - [931] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(2022), - [anon_sym_RPAREN] = ACTIONS(2024), - [anon_sym_PIPE_AMP] = ACTIONS(2024), - [anon_sym_AMP_AMP] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [932] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(2028), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(2028), - [anon_sym_PIPE_PIPE] = ACTIONS(2028), - [sym_comment] = ACTIONS(53), - }, - [933] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(2028), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(2028), - [anon_sym_PIPE_PIPE] = ACTIONS(2028), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [934] = { - [anon_sym_PIPE] = ACTIONS(2030), - [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_BQUOTE] = ACTIONS(2032), - [sym_comment] = ACTIONS(53), - }, - [935] = { - [sym_simple_expansion] = STATE(988), - [sym_expansion] = STATE(988), - [aux_sym_heredoc_body_repeat1] = STATE(988), - [sym__heredoc_body_middle] = ACTIONS(2050), - [sym__heredoc_body_end] = ACTIONS(3153), + [sym_simple_expansion] = STATE(978), + [sym_expansion] = STATE(978), + [aux_sym_heredoc_body_repeat1] = STATE(978), + [sym__heredoc_body_middle] = ACTIONS(2038), + [sym__heredoc_body_end] = ACTIONS(3111), [anon_sym_DOLLAR] = ACTIONS(963), [anon_sym_DOLLAR_LBRACE] = ACTIONS(965), [sym_comment] = ACTIONS(53), }, - [936] = { - [sym_concatenation] = STATE(1410), - [sym_string] = STATE(1409), - [sym_simple_expansion] = STATE(1409), - [sym_string_expansion] = STATE(1409), - [sym_expansion] = STATE(1409), - [sym_command_substitution] = STATE(1409), - [sym_process_substitution] = STATE(1409), - [sym__special_characters] = ACTIONS(3155), + [926] = { + [sym_concatenation] = STATE(1379), + [sym_string] = STATE(1378), + [sym_simple_expansion] = STATE(1378), + [sym_string_expansion] = STATE(1378), + [sym_expansion] = STATE(1378), + [sym_command_substitution] = STATE(1378), + [sym_process_substitution] = STATE(1378), + [sym__special_characters] = ACTIONS(3113), [anon_sym_DQUOTE] = ACTIONS(287), [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(3157), + [sym_raw_string] = ACTIONS(3115), [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), [anon_sym_BQUOTE] = ACTIONS(297), [anon_sym_LT_LPAREN] = ACTIONS(299), [anon_sym_GT_LPAREN] = ACTIONS(299), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3157), + [sym_word] = ACTIONS(3115), }, - [937] = { + [927] = { [aux_sym_concatenation_repeat1] = STATE(467), - [sym__simple_heredoc_body] = ACTIONS(2058), - [sym__heredoc_body_beginning] = ACTIONS(2058), - [sym_file_descriptor] = ACTIONS(2058), + [sym__simple_heredoc_body] = ACTIONS(2046), + [sym__heredoc_body_beginning] = ACTIONS(2046), + [sym_file_descriptor] = ACTIONS(2046), [sym__concat] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(2060), - [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(2060), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_AMP_GT] = ACTIONS(2060), - [anon_sym_AMP_GT_GT] = ACTIONS(2058), - [anon_sym_LT_AMP] = ACTIONS(2058), - [anon_sym_GT_AMP] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2060), - [anon_sym_LT_LT_DASH] = ACTIONS(2058), - [anon_sym_LT_LT_LT] = ACTIONS(2058), - [sym__special_characters] = ACTIONS(2058), - [anon_sym_DQUOTE] = ACTIONS(2058), - [anon_sym_DOLLAR] = ACTIONS(2060), - [sym_raw_string] = ACTIONS(2058), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2058), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2058), - [anon_sym_BQUOTE] = ACTIONS(2058), - [anon_sym_LT_LPAREN] = ACTIONS(2058), - [anon_sym_GT_LPAREN] = ACTIONS(2058), + [anon_sym_PIPE] = ACTIONS(2048), + [anon_sym_RPAREN] = ACTIONS(2046), + [anon_sym_PIPE_AMP] = ACTIONS(2046), + [anon_sym_AMP_AMP] = ACTIONS(2046), + [anon_sym_PIPE_PIPE] = ACTIONS(2046), + [anon_sym_EQ_TILDE] = ACTIONS(2048), + [anon_sym_EQ_EQ] = ACTIONS(2048), + [anon_sym_LT] = ACTIONS(2048), + [anon_sym_GT] = ACTIONS(2048), + [anon_sym_GT_GT] = ACTIONS(2046), + [anon_sym_AMP_GT] = ACTIONS(2048), + [anon_sym_AMP_GT_GT] = ACTIONS(2046), + [anon_sym_LT_AMP] = ACTIONS(2046), + [anon_sym_GT_AMP] = ACTIONS(2046), + [anon_sym_LT_LT] = ACTIONS(2048), + [anon_sym_LT_LT_DASH] = ACTIONS(2046), + [anon_sym_LT_LT_LT] = ACTIONS(2046), + [sym__special_characters] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2046), + [anon_sym_DOLLAR] = ACTIONS(2048), + [sym_raw_string] = ACTIONS(2046), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2046), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2046), + [anon_sym_BQUOTE] = ACTIONS(2046), + [anon_sym_LT_LPAREN] = ACTIONS(2046), + [anon_sym_GT_LPAREN] = ACTIONS(2046), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2060), + [sym_word] = ACTIONS(2048), }, - [938] = { + [928] = { [aux_sym_concatenation_repeat1] = STATE(467), - [sym__simple_heredoc_body] = ACTIONS(2062), - [sym__heredoc_body_beginning] = ACTIONS(2062), - [sym_file_descriptor] = ACTIONS(2062), + [sym__simple_heredoc_body] = ACTIONS(2050), + [sym__heredoc_body_beginning] = ACTIONS(2050), + [sym_file_descriptor] = ACTIONS(2050), [sym__concat] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(2064), - [anon_sym_RPAREN] = ACTIONS(2062), - [anon_sym_PIPE_AMP] = ACTIONS(2062), - [anon_sym_AMP_AMP] = ACTIONS(2062), - [anon_sym_PIPE_PIPE] = ACTIONS(2062), - [anon_sym_EQ_TILDE] = ACTIONS(2064), - [anon_sym_EQ_EQ] = ACTIONS(2064), - [anon_sym_LT] = ACTIONS(2064), - [anon_sym_GT] = ACTIONS(2064), - [anon_sym_GT_GT] = ACTIONS(2062), - [anon_sym_AMP_GT] = ACTIONS(2064), - [anon_sym_AMP_GT_GT] = ACTIONS(2062), - [anon_sym_LT_AMP] = ACTIONS(2062), - [anon_sym_GT_AMP] = ACTIONS(2062), - [anon_sym_LT_LT] = ACTIONS(2064), - [anon_sym_LT_LT_DASH] = ACTIONS(2062), - [anon_sym_LT_LT_LT] = ACTIONS(2062), - [sym__special_characters] = ACTIONS(2062), - [anon_sym_DQUOTE] = ACTIONS(2062), - [anon_sym_DOLLAR] = ACTIONS(2064), - [sym_raw_string] = ACTIONS(2062), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2062), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2062), - [anon_sym_BQUOTE] = ACTIONS(2062), - [anon_sym_LT_LPAREN] = ACTIONS(2062), - [anon_sym_GT_LPAREN] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2052), + [anon_sym_RPAREN] = ACTIONS(2050), + [anon_sym_PIPE_AMP] = ACTIONS(2050), + [anon_sym_AMP_AMP] = ACTIONS(2050), + [anon_sym_PIPE_PIPE] = ACTIONS(2050), + [anon_sym_EQ_TILDE] = ACTIONS(2052), + [anon_sym_EQ_EQ] = ACTIONS(2052), + [anon_sym_LT] = ACTIONS(2052), + [anon_sym_GT] = ACTIONS(2052), + [anon_sym_GT_GT] = ACTIONS(2050), + [anon_sym_AMP_GT] = ACTIONS(2052), + [anon_sym_AMP_GT_GT] = ACTIONS(2050), + [anon_sym_LT_AMP] = ACTIONS(2050), + [anon_sym_GT_AMP] = ACTIONS(2050), + [anon_sym_LT_LT] = ACTIONS(2052), + [anon_sym_LT_LT_DASH] = ACTIONS(2050), + [anon_sym_LT_LT_LT] = ACTIONS(2050), + [sym__special_characters] = ACTIONS(2050), + [anon_sym_DQUOTE] = ACTIONS(2050), + [anon_sym_DOLLAR] = ACTIONS(2052), + [sym_raw_string] = ACTIONS(2050), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2050), + [anon_sym_BQUOTE] = ACTIONS(2050), + [anon_sym_LT_LPAREN] = ACTIONS(2050), + [anon_sym_GT_LPAREN] = ACTIONS(2050), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2064), + [sym_word] = ACTIONS(2052), }, - [939] = { - [sym__simple_heredoc_body] = ACTIONS(2062), - [sym__heredoc_body_beginning] = ACTIONS(2062), - [sym_file_descriptor] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2064), - [anon_sym_RPAREN] = ACTIONS(2062), - [anon_sym_PIPE_AMP] = ACTIONS(2062), - [anon_sym_AMP_AMP] = ACTIONS(2062), - [anon_sym_PIPE_PIPE] = ACTIONS(2062), - [anon_sym_EQ_TILDE] = ACTIONS(2064), - [anon_sym_EQ_EQ] = ACTIONS(2064), - [anon_sym_LT] = ACTIONS(2064), - [anon_sym_GT] = ACTIONS(2064), - [anon_sym_GT_GT] = ACTIONS(2062), - [anon_sym_AMP_GT] = ACTIONS(2064), - [anon_sym_AMP_GT_GT] = ACTIONS(2062), - [anon_sym_LT_AMP] = ACTIONS(2062), - [anon_sym_GT_AMP] = ACTIONS(2062), - [anon_sym_LT_LT] = ACTIONS(2064), - [anon_sym_LT_LT_DASH] = ACTIONS(2062), - [anon_sym_LT_LT_LT] = ACTIONS(2062), - [sym__special_characters] = ACTIONS(2062), - [anon_sym_DQUOTE] = ACTIONS(2062), - [anon_sym_DOLLAR] = ACTIONS(2064), - [sym_raw_string] = ACTIONS(2062), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2062), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2062), - [anon_sym_BQUOTE] = ACTIONS(2062), - [anon_sym_LT_LPAREN] = ACTIONS(2062), - [anon_sym_GT_LPAREN] = ACTIONS(2062), + [929] = { + [sym__simple_heredoc_body] = ACTIONS(2050), + [sym__heredoc_body_beginning] = ACTIONS(2050), + [sym_file_descriptor] = ACTIONS(2050), + [anon_sym_PIPE] = ACTIONS(2052), + [anon_sym_RPAREN] = ACTIONS(2050), + [anon_sym_PIPE_AMP] = ACTIONS(2050), + [anon_sym_AMP_AMP] = ACTIONS(2050), + [anon_sym_PIPE_PIPE] = ACTIONS(2050), + [anon_sym_EQ_TILDE] = ACTIONS(2052), + [anon_sym_EQ_EQ] = ACTIONS(2052), + [anon_sym_LT] = ACTIONS(2052), + [anon_sym_GT] = ACTIONS(2052), + [anon_sym_GT_GT] = ACTIONS(2050), + [anon_sym_AMP_GT] = ACTIONS(2052), + [anon_sym_AMP_GT_GT] = ACTIONS(2050), + [anon_sym_LT_AMP] = ACTIONS(2050), + [anon_sym_GT_AMP] = ACTIONS(2050), + [anon_sym_LT_LT] = ACTIONS(2052), + [anon_sym_LT_LT_DASH] = ACTIONS(2050), + [anon_sym_LT_LT_LT] = ACTIONS(2050), + [sym__special_characters] = ACTIONS(2050), + [anon_sym_DQUOTE] = ACTIONS(2050), + [anon_sym_DOLLAR] = ACTIONS(2052), + [sym_raw_string] = ACTIONS(2050), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2050), + [anon_sym_BQUOTE] = ACTIONS(2050), + [anon_sym_LT_LPAREN] = ACTIONS(2050), + [anon_sym_GT_LPAREN] = ACTIONS(2050), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2064), + [sym_word] = ACTIONS(2052), }, - [940] = { - [aux_sym_concatenation_repeat1] = STATE(1411), + [930] = { + [aux_sym_concatenation_repeat1] = STATE(1380), [sym__simple_heredoc_body] = ACTIONS(661), [sym__heredoc_body_beginning] = ACTIONS(661), [sym_file_descriptor] = ACTIONS(661), @@ -34271,8 +30607,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(661), [sym_comment] = ACTIONS(53), }, - [941] = { - [aux_sym_concatenation_repeat1] = STATE(1411), + [931] = { + [aux_sym_concatenation_repeat1] = STATE(1380), [sym__simple_heredoc_body] = ACTIONS(677), [sym__heredoc_body_beginning] = ACTIONS(677), [sym_file_descriptor] = ACTIONS(677), @@ -34294,7 +30630,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(677), [sym_comment] = ACTIONS(53), }, - [942] = { + [932] = { [sym__simple_heredoc_body] = ACTIONS(677), [sym__heredoc_body_beginning] = ACTIONS(677), [sym_file_descriptor] = ACTIONS(677), @@ -34316,144 +30652,144 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(677), [sym_comment] = ACTIONS(53), }, - [943] = { - [sym__simple_heredoc_body] = ACTIONS(2066), - [sym__heredoc_body_beginning] = ACTIONS(2066), - [sym_file_descriptor] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_RPAREN] = ACTIONS(2066), - [anon_sym_PIPE_AMP] = ACTIONS(2066), - [anon_sym_AMP_AMP] = ACTIONS(2066), - [anon_sym_PIPE_PIPE] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(2068), - [anon_sym_GT] = ACTIONS(2068), - [anon_sym_GT_GT] = ACTIONS(2066), - [anon_sym_AMP_GT] = ACTIONS(2068), - [anon_sym_AMP_GT_GT] = ACTIONS(2066), - [anon_sym_LT_AMP] = ACTIONS(2066), - [anon_sym_GT_AMP] = ACTIONS(2066), - [anon_sym_LT_LT] = ACTIONS(2068), - [anon_sym_LT_LT_DASH] = ACTIONS(2066), - [anon_sym_LT_LT_LT] = ACTIONS(2066), - [anon_sym_BQUOTE] = ACTIONS(2066), + [933] = { + [sym__simple_heredoc_body] = ACTIONS(2054), + [sym__heredoc_body_beginning] = ACTIONS(2054), + [sym_file_descriptor] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(2056), + [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(2056), + [anon_sym_GT] = ACTIONS(2056), + [anon_sym_GT_GT] = ACTIONS(2054), + [anon_sym_AMP_GT] = ACTIONS(2056), + [anon_sym_AMP_GT_GT] = ACTIONS(2054), + [anon_sym_LT_AMP] = ACTIONS(2054), + [anon_sym_GT_AMP] = ACTIONS(2054), + [anon_sym_LT_LT] = ACTIONS(2056), + [anon_sym_LT_LT_DASH] = ACTIONS(2054), + [anon_sym_LT_LT_LT] = ACTIONS(2054), + [anon_sym_BQUOTE] = ACTIONS(2054), [sym_comment] = ACTIONS(53), }, - [944] = { - [aux_sym_concatenation_repeat1] = STATE(1411), + [934] = { + [aux_sym_concatenation_repeat1] = STATE(1380), + [sym__simple_heredoc_body] = ACTIONS(2058), + [sym__heredoc_body_beginning] = ACTIONS(2058), + [sym_file_descriptor] = ACTIONS(2058), + [sym__concat] = ACTIONS(845), + [anon_sym_PIPE] = ACTIONS(2060), + [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(2060), + [anon_sym_GT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2058), + [anon_sym_AMP_GT] = ACTIONS(2060), + [anon_sym_AMP_GT_GT] = ACTIONS(2058), + [anon_sym_LT_AMP] = ACTIONS(2058), + [anon_sym_GT_AMP] = ACTIONS(2058), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_LT_LT_DASH] = ACTIONS(2058), + [anon_sym_LT_LT_LT] = ACTIONS(2058), + [sym_comment] = ACTIONS(53), + }, + [935] = { + [aux_sym_concatenation_repeat1] = STATE(1380), + [sym__simple_heredoc_body] = ACTIONS(2062), + [sym__heredoc_body_beginning] = ACTIONS(2062), + [sym_file_descriptor] = ACTIONS(2062), + [sym__concat] = ACTIONS(845), + [anon_sym_PIPE] = ACTIONS(2064), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_PIPE_AMP] = ACTIONS(2062), + [anon_sym_AMP_AMP] = ACTIONS(2062), + [anon_sym_PIPE_PIPE] = ACTIONS(2062), + [anon_sym_LT] = ACTIONS(2064), + [anon_sym_GT] = ACTIONS(2064), + [anon_sym_GT_GT] = ACTIONS(2062), + [anon_sym_AMP_GT] = ACTIONS(2064), + [anon_sym_AMP_GT_GT] = ACTIONS(2062), + [anon_sym_LT_AMP] = ACTIONS(2062), + [anon_sym_GT_AMP] = ACTIONS(2062), + [anon_sym_LT_LT] = ACTIONS(2064), + [anon_sym_LT_LT_DASH] = ACTIONS(2062), + [anon_sym_LT_LT_LT] = ACTIONS(2062), + [sym_comment] = ACTIONS(53), + }, + [936] = { + [sym__simple_heredoc_body] = ACTIONS(2062), + [sym__heredoc_body_beginning] = ACTIONS(2062), + [sym_file_descriptor] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2064), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_PIPE_AMP] = ACTIONS(2062), + [anon_sym_AMP_AMP] = ACTIONS(2062), + [anon_sym_PIPE_PIPE] = ACTIONS(2062), + [anon_sym_LT] = ACTIONS(2064), + [anon_sym_GT] = ACTIONS(2064), + [anon_sym_GT_GT] = ACTIONS(2062), + [anon_sym_AMP_GT] = ACTIONS(2064), + [anon_sym_AMP_GT_GT] = ACTIONS(2062), + [anon_sym_LT_AMP] = ACTIONS(2062), + [anon_sym_GT_AMP] = ACTIONS(2062), + [anon_sym_LT_LT] = ACTIONS(2064), + [anon_sym_LT_LT_DASH] = ACTIONS(2062), + [anon_sym_LT_LT_LT] = ACTIONS(2062), + [anon_sym_BQUOTE] = ACTIONS(2062), + [sym_comment] = ACTIONS(53), + }, + [937] = { + [anon_sym_PIPE] = ACTIONS(2066), + [anon_sym_RPAREN] = ACTIONS(2068), + [anon_sym_PIPE_AMP] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_comment] = ACTIONS(53), + }, + [938] = { + [sym_file_redirect] = STATE(938), + [sym_heredoc_redirect] = STATE(938), + [sym_herestring_redirect] = STATE(938), + [aux_sym_while_statement_repeat1] = STATE(938), [sym__simple_heredoc_body] = ACTIONS(2070), [sym__heredoc_body_beginning] = ACTIONS(2070), - [sym_file_descriptor] = ACTIONS(2070), - [sym__concat] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(2072), + [sym_file_descriptor] = ACTIONS(3117), + [anon_sym_PIPE] = ACTIONS(2075), [anon_sym_RPAREN] = ACTIONS(2070), [anon_sym_PIPE_AMP] = ACTIONS(2070), [anon_sym_AMP_AMP] = ACTIONS(2070), [anon_sym_PIPE_PIPE] = ACTIONS(2070), - [anon_sym_LT] = ACTIONS(2072), - [anon_sym_GT] = ACTIONS(2072), - [anon_sym_GT_GT] = ACTIONS(2070), - [anon_sym_AMP_GT] = ACTIONS(2072), - [anon_sym_AMP_GT_GT] = ACTIONS(2070), - [anon_sym_LT_AMP] = ACTIONS(2070), - [anon_sym_GT_AMP] = ACTIONS(2070), - [anon_sym_LT_LT] = ACTIONS(2072), - [anon_sym_LT_LT_DASH] = ACTIONS(2070), - [anon_sym_LT_LT_LT] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(3120), + [anon_sym_GT] = ACTIONS(3120), + [anon_sym_GT_GT] = ACTIONS(3123), + [anon_sym_AMP_GT] = ACTIONS(3120), + [anon_sym_AMP_GT_GT] = ACTIONS(3123), + [anon_sym_LT_AMP] = ACTIONS(3123), + [anon_sym_GT_AMP] = ACTIONS(3123), + [anon_sym_LT_LT] = ACTIONS(3126), + [anon_sym_LT_LT_DASH] = ACTIONS(3129), + [anon_sym_LT_LT_LT] = ACTIONS(3132), [sym_comment] = ACTIONS(53), }, - [945] = { - [aux_sym_concatenation_repeat1] = STATE(1411), - [sym__simple_heredoc_body] = ACTIONS(2074), - [sym__heredoc_body_beginning] = ACTIONS(2074), - [sym_file_descriptor] = ACTIONS(2074), - [sym__concat] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2074), - [anon_sym_PIPE_AMP] = ACTIONS(2074), - [anon_sym_AMP_AMP] = ACTIONS(2074), - [anon_sym_PIPE_PIPE] = ACTIONS(2074), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_GT_GT] = ACTIONS(2074), - [anon_sym_AMP_GT] = ACTIONS(2076), - [anon_sym_AMP_GT_GT] = ACTIONS(2074), - [anon_sym_LT_AMP] = ACTIONS(2074), - [anon_sym_GT_AMP] = ACTIONS(2074), - [anon_sym_LT_LT] = ACTIONS(2076), - [anon_sym_LT_LT_DASH] = ACTIONS(2074), - [anon_sym_LT_LT_LT] = ACTIONS(2074), - [sym_comment] = ACTIONS(53), - }, - [946] = { - [sym__simple_heredoc_body] = ACTIONS(2074), - [sym__heredoc_body_beginning] = ACTIONS(2074), - [sym_file_descriptor] = ACTIONS(2074), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2074), - [anon_sym_PIPE_AMP] = ACTIONS(2074), - [anon_sym_AMP_AMP] = ACTIONS(2074), - [anon_sym_PIPE_PIPE] = ACTIONS(2074), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_GT_GT] = ACTIONS(2074), - [anon_sym_AMP_GT] = ACTIONS(2076), - [anon_sym_AMP_GT_GT] = ACTIONS(2074), - [anon_sym_LT_AMP] = ACTIONS(2074), - [anon_sym_GT_AMP] = ACTIONS(2074), - [anon_sym_LT_LT] = ACTIONS(2076), - [anon_sym_LT_LT_DASH] = ACTIONS(2074), - [anon_sym_LT_LT_LT] = ACTIONS(2074), - [anon_sym_BQUOTE] = ACTIONS(2074), - [sym_comment] = ACTIONS(53), - }, - [947] = { - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_RPAREN] = ACTIONS(2080), - [anon_sym_PIPE_AMP] = ACTIONS(2080), - [anon_sym_AMP_AMP] = ACTIONS(2080), - [anon_sym_PIPE_PIPE] = ACTIONS(2080), - [anon_sym_BQUOTE] = ACTIONS(2080), - [sym_comment] = ACTIONS(53), - }, - [948] = { - [sym_file_redirect] = STATE(948), - [sym_heredoc_redirect] = STATE(948), - [sym_herestring_redirect] = STATE(948), - [aux_sym_while_statement_repeat1] = STATE(948), - [sym__simple_heredoc_body] = ACTIONS(2082), - [sym__heredoc_body_beginning] = ACTIONS(2082), - [sym_file_descriptor] = ACTIONS(3159), - [anon_sym_PIPE] = ACTIONS(2087), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_PIPE_AMP] = ACTIONS(2082), - [anon_sym_AMP_AMP] = ACTIONS(2082), - [anon_sym_PIPE_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(3162), - [anon_sym_GT] = ACTIONS(3162), - [anon_sym_GT_GT] = ACTIONS(3165), - [anon_sym_AMP_GT] = ACTIONS(3162), - [anon_sym_AMP_GT_GT] = ACTIONS(3165), - [anon_sym_LT_AMP] = ACTIONS(3165), - [anon_sym_GT_AMP] = ACTIONS(3165), - [anon_sym_LT_LT] = ACTIONS(3168), - [anon_sym_LT_LT_DASH] = ACTIONS(3171), - [anon_sym_LT_LT_LT] = ACTIONS(3174), - [sym_comment] = ACTIONS(53), - }, - [949] = { - [sym_file_redirect] = STATE(948), - [sym_heredoc_redirect] = STATE(948), - [sym_heredoc_body] = STATE(1412), - [sym_herestring_redirect] = STATE(948), - [aux_sym_while_statement_repeat1] = STATE(948), + [939] = { + [sym_file_redirect] = STATE(938), + [sym_heredoc_redirect] = STATE(938), + [sym_heredoc_body] = STATE(1381), + [sym_herestring_redirect] = STATE(938), + [aux_sym_while_statement_repeat1] = STATE(938), [sym__simple_heredoc_body] = ACTIONS(877), [sym__heredoc_body_beginning] = ACTIONS(879), [sym_file_descriptor] = ACTIONS(881), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_RPAREN] = ACTIONS(2080), - [anon_sym_PIPE_AMP] = ACTIONS(2080), - [anon_sym_AMP_AMP] = ACTIONS(2080), - [anon_sym_PIPE_PIPE] = ACTIONS(2080), + [anon_sym_PIPE] = ACTIONS(2066), + [anon_sym_RPAREN] = ACTIONS(2068), + [anon_sym_PIPE_AMP] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), [anon_sym_LT] = ACTIONS(885), [anon_sym_GT] = ACTIONS(885), [anon_sym_GT_GT] = ACTIONS(887), @@ -34466,69 +30802,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(893), [sym_comment] = ACTIONS(53), }, - [950] = { - [sym_concatenation] = STATE(950), + [940] = { + [sym_concatenation] = STATE(940), [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_command_repeat2] = STATE(950), - [sym__simple_heredoc_body] = ACTIONS(2062), - [sym__heredoc_body_beginning] = ACTIONS(2062), - [sym_file_descriptor] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2064), - [anon_sym_RPAREN] = ACTIONS(2062), - [anon_sym_PIPE_AMP] = ACTIONS(2062), - [anon_sym_AMP_AMP] = ACTIONS(2062), - [anon_sym_PIPE_PIPE] = ACTIONS(2062), - [anon_sym_EQ_TILDE] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(2064), - [anon_sym_GT] = ACTIONS(2064), - [anon_sym_GT_GT] = ACTIONS(2062), - [anon_sym_AMP_GT] = ACTIONS(2064), - [anon_sym_AMP_GT_GT] = ACTIONS(2062), - [anon_sym_LT_AMP] = ACTIONS(2062), - [anon_sym_GT_AMP] = ACTIONS(2062), - [anon_sym_LT_LT] = ACTIONS(2064), - [anon_sym_LT_LT_DASH] = ACTIONS(2062), - [anon_sym_LT_LT_LT] = ACTIONS(2062), - [sym__special_characters] = ACTIONS(3180), - [anon_sym_DQUOTE] = ACTIONS(3183), - [anon_sym_DOLLAR] = ACTIONS(3186), - [sym_raw_string] = ACTIONS(3189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3195), - [anon_sym_BQUOTE] = ACTIONS(3198), - [anon_sym_LT_LPAREN] = ACTIONS(3201), - [anon_sym_GT_LPAREN] = ACTIONS(3201), + [aux_sym_command_repeat2] = STATE(940), + [sym__simple_heredoc_body] = ACTIONS(2050), + [sym__heredoc_body_beginning] = ACTIONS(2050), + [sym_file_descriptor] = ACTIONS(2050), + [anon_sym_PIPE] = ACTIONS(2052), + [anon_sym_RPAREN] = ACTIONS(2050), + [anon_sym_PIPE_AMP] = ACTIONS(2050), + [anon_sym_AMP_AMP] = ACTIONS(2050), + [anon_sym_PIPE_PIPE] = ACTIONS(2050), + [anon_sym_EQ_TILDE] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(2052), + [anon_sym_GT] = ACTIONS(2052), + [anon_sym_GT_GT] = ACTIONS(2050), + [anon_sym_AMP_GT] = ACTIONS(2052), + [anon_sym_AMP_GT_GT] = ACTIONS(2050), + [anon_sym_LT_AMP] = ACTIONS(2050), + [anon_sym_GT_AMP] = ACTIONS(2050), + [anon_sym_LT_LT] = ACTIONS(2052), + [anon_sym_LT_LT_DASH] = ACTIONS(2050), + [anon_sym_LT_LT_LT] = ACTIONS(2050), + [sym__special_characters] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3141), + [anon_sym_DOLLAR] = ACTIONS(3144), + [sym_raw_string] = ACTIONS(3147), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3153), + [anon_sym_BQUOTE] = ACTIONS(3156), + [anon_sym_LT_LPAREN] = ACTIONS(3159), + [anon_sym_GT_LPAREN] = ACTIONS(3159), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3204), + [sym_word] = ACTIONS(3162), }, - [951] = { - [sym_file_redirect] = STATE(1413), - [sym_heredoc_redirect] = STATE(1413), - [sym_heredoc_body] = STATE(1412), - [sym_herestring_redirect] = STATE(1413), - [sym_concatenation] = STATE(950), + [941] = { + [sym_file_redirect] = STATE(1382), + [sym_heredoc_redirect] = STATE(1382), + [sym_heredoc_body] = STATE(1381), + [sym_herestring_redirect] = STATE(1382), + [sym_concatenation] = STATE(940), [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_while_statement_repeat1] = STATE(1413), - [aux_sym_command_repeat2] = STATE(950), + [aux_sym_while_statement_repeat1] = STATE(1382), + [aux_sym_command_repeat2] = STATE(940), [sym__simple_heredoc_body] = ACTIONS(877), [sym__heredoc_body_beginning] = ACTIONS(879), [sym_file_descriptor] = ACTIONS(881), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_RPAREN] = ACTIONS(2080), - [anon_sym_PIPE_AMP] = ACTIONS(2080), - [anon_sym_AMP_AMP] = ACTIONS(2080), - [anon_sym_PIPE_PIPE] = ACTIONS(2080), + [anon_sym_PIPE] = ACTIONS(2066), + [anon_sym_RPAREN] = ACTIONS(2068), + [anon_sym_PIPE_AMP] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), [anon_sym_EQ_TILDE] = ACTIONS(883), [anon_sym_EQ_EQ] = ACTIONS(883), [anon_sym_LT] = ACTIONS(885), @@ -34553,8 +30889,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(899), }, - [952] = { - [aux_sym_concatenation_repeat1] = STATE(1414), + [942] = { + [aux_sym_concatenation_repeat1] = STATE(1383), [sym_file_descriptor] = ACTIONS(1129), [sym__concat] = ACTIONS(663), [sym_variable_name] = ACTIONS(1129), @@ -34581,8 +30917,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(1129), }, - [953] = { - [aux_sym_concatenation_repeat1] = STATE(1414), + [943] = { + [aux_sym_concatenation_repeat1] = STATE(1383), [sym_file_descriptor] = ACTIONS(1107), [sym__concat] = ACTIONS(663), [sym_variable_name] = ACTIONS(1107), @@ -34609,19 +30945,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(1107), }, - [954] = { - [sym_file_redirect] = STATE(1415), - [sym_heredoc_redirect] = STATE(1415), - [sym_heredoc_body] = STATE(1323), - [sym_herestring_redirect] = STATE(1415), - [aux_sym_while_statement_repeat1] = STATE(1415), + [944] = { + [sym_file_redirect] = STATE(1384), + [sym_heredoc_redirect] = STATE(1384), + [sym_heredoc_body] = STATE(1292), + [sym_herestring_redirect] = STATE(1384), + [aux_sym_while_statement_repeat1] = STATE(1384), [sym__simple_heredoc_body] = ACTIONS(877), [sym__heredoc_body_beginning] = ACTIONS(879), [sym_file_descriptor] = ACTIONS(929), - [anon_sym_PIPE] = ACTIONS(1175), - [anon_sym_PIPE_AMP] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), + [anon_sym_PIPE] = ACTIONS(1163), + [anon_sym_PIPE_AMP] = ACTIONS(1165), + [anon_sym_AMP_AMP] = ACTIONS(1165), + [anon_sym_PIPE_PIPE] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(933), [anon_sym_GT] = ACTIONS(933), [anon_sym_GT_GT] = ACTIONS(935), @@ -34632,79 +30968,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(889), [anon_sym_LT_LT_DASH] = ACTIONS(891), [anon_sym_LT_LT_LT] = ACTIONS(937), - [anon_sym_BQUOTE] = ACTIONS(1177), + [anon_sym_BQUOTE] = ACTIONS(1165), [sym_comment] = ACTIONS(53), }, - [955] = { - [anon_sym_RPAREN] = ACTIONS(3207), + [945] = { + [anon_sym_RPAREN] = ACTIONS(3165), [sym_comment] = ACTIONS(53), }, - [956] = { - [sym_file_redirect] = STATE(1338), - [sym_file_descriptor] = ACTIONS(3209), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_PIPE_AMP] = ACTIONS(1249), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_LT] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(3211), - [anon_sym_GT_GT] = ACTIONS(3213), - [anon_sym_AMP_GT] = ACTIONS(3211), - [anon_sym_AMP_GT_GT] = ACTIONS(3213), - [anon_sym_LT_AMP] = ACTIONS(3213), - [anon_sym_GT_AMP] = ACTIONS(3213), - [anon_sym_BQUOTE] = ACTIONS(1249), + [946] = { + [sym_file_redirect] = STATE(1307), + [sym_file_descriptor] = ACTIONS(3167), + [anon_sym_PIPE] = ACTIONS(1233), + [anon_sym_PIPE_AMP] = ACTIONS(1237), + [anon_sym_AMP_AMP] = ACTIONS(1237), + [anon_sym_PIPE_PIPE] = ACTIONS(1237), + [anon_sym_LT] = ACTIONS(3169), + [anon_sym_GT] = ACTIONS(3169), + [anon_sym_GT_GT] = ACTIONS(3171), + [anon_sym_AMP_GT] = ACTIONS(3169), + [anon_sym_AMP_GT_GT] = ACTIONS(3171), + [anon_sym_LT_AMP] = ACTIONS(3171), + [anon_sym_GT_AMP] = ACTIONS(3171), + [anon_sym_BQUOTE] = ACTIONS(1237), [sym_comment] = ACTIONS(53), }, - [957] = { - [sym_file_redirect] = STATE(1422), - [sym_heredoc_redirect] = STATE(1422), - [sym_herestring_redirect] = STATE(1422), - [aux_sym_while_statement_repeat1] = STATE(1422), - [sym_file_descriptor] = ACTIONS(3215), - [anon_sym_PIPE] = ACTIONS(1353), - [anon_sym_PIPE_AMP] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(1361), - [anon_sym_PIPE_PIPE] = ACTIONS(1361), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3217), - [anon_sym_GT_GT] = ACTIONS(3219), - [anon_sym_AMP_GT] = ACTIONS(3217), - [anon_sym_AMP_GT_GT] = ACTIONS(3219), - [anon_sym_LT_AMP] = ACTIONS(3219), - [anon_sym_GT_AMP] = ACTIONS(3219), - [anon_sym_LT_LT] = ACTIONS(2949), - [anon_sym_LT_LT_DASH] = ACTIONS(2951), - [anon_sym_LT_LT_LT] = ACTIONS(3221), - [anon_sym_BQUOTE] = ACTIONS(1361), + [947] = { + [sym_file_redirect] = STATE(1391), + [sym_heredoc_redirect] = STATE(1391), + [sym_herestring_redirect] = STATE(1391), + [aux_sym_while_statement_repeat1] = STATE(1391), + [sym_file_descriptor] = ACTIONS(3173), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_PIPE_AMP] = ACTIONS(1349), + [anon_sym_AMP_AMP] = ACTIONS(1349), + [anon_sym_PIPE_PIPE] = ACTIONS(1349), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_GT_GT] = ACTIONS(3177), + [anon_sym_AMP_GT] = ACTIONS(3175), + [anon_sym_AMP_GT_GT] = ACTIONS(3177), + [anon_sym_LT_AMP] = ACTIONS(3177), + [anon_sym_GT_AMP] = ACTIONS(3177), + [anon_sym_LT_LT] = ACTIONS(2907), + [anon_sym_LT_LT_DASH] = ACTIONS(2909), + [anon_sym_LT_LT_LT] = ACTIONS(3179), + [anon_sym_BQUOTE] = ACTIONS(1349), [sym_comment] = ACTIONS(53), }, - [958] = { - [sym_concatenation] = STATE(1346), - [sym_string] = STATE(1424), - [sym_array] = STATE(1346), - [sym_simple_expansion] = STATE(1424), - [sym_string_expansion] = STATE(1424), - [sym_expansion] = STATE(1424), - [sym_command_substitution] = STATE(1424), - [sym_process_substitution] = STATE(1424), - [sym__empty_value] = ACTIONS(2955), - [anon_sym_LPAREN] = ACTIONS(2957), - [sym__special_characters] = ACTIONS(3223), + [948] = { + [sym_concatenation] = STATE(1315), + [sym_string] = STATE(1393), + [sym_array] = STATE(1315), + [sym_simple_expansion] = STATE(1393), + [sym_string_expansion] = STATE(1393), + [sym_expansion] = STATE(1393), + [sym_command_substitution] = STATE(1393), + [sym_process_substitution] = STATE(1393), + [sym__empty_value] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2915), + [sym__special_characters] = ACTIONS(3181), [anon_sym_DQUOTE] = ACTIONS(807), [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(3225), + [sym_raw_string] = ACTIONS(3183), [anon_sym_DOLLAR_LBRACE] = ACTIONS(813), [anon_sym_DOLLAR_LPAREN] = ACTIONS(815), [anon_sym_BQUOTE] = ACTIONS(817), [anon_sym_LT_LPAREN] = ACTIONS(819), [anon_sym_GT_LPAREN] = ACTIONS(819), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3225), + [sym_word] = ACTIONS(3183), }, - [959] = { - [aux_sym_concatenation_repeat1] = STATE(1425), - [sym__concat] = ACTIONS(1864), + [949] = { + [aux_sym_concatenation_repeat1] = STATE(1394), + [sym__concat] = ACTIONS(1852), [sym_variable_name] = ACTIONS(693), [anon_sym_PIPE] = ACTIONS(695), [anon_sym_PIPE_AMP] = ACTIONS(693), @@ -34723,38 +31059,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(695), [sym_word] = ACTIONS(695), }, - [960] = { - [sym_variable_assignment] = STATE(960), + [950] = { + [sym_variable_assignment] = STATE(950), [sym_subscript] = STATE(509), - [sym_concatenation] = STATE(960), + [sym_concatenation] = STATE(950), [sym_string] = STATE(508), [sym_simple_expansion] = STATE(508), [sym_string_expansion] = STATE(508), [sym_expansion] = STATE(508), [sym_command_substitution] = STATE(508), [sym_process_substitution] = STATE(508), - [aux_sym_declaration_command_repeat1] = STATE(960), - [sym_variable_name] = ACTIONS(3227), - [anon_sym_PIPE] = ACTIONS(1500), - [anon_sym_PIPE_AMP] = ACTIONS(1529), - [anon_sym_AMP_AMP] = ACTIONS(1529), - [anon_sym_PIPE_PIPE] = ACTIONS(1529), - [sym__special_characters] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3011), - [anon_sym_DOLLAR] = ACTIONS(3014), - [sym_raw_string] = ACTIONS(3233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3023), - [anon_sym_BQUOTE] = ACTIONS(3026), - [anon_sym_LT_LPAREN] = ACTIONS(3029), - [anon_sym_GT_LPAREN] = ACTIONS(3029), + [aux_sym_declaration_command_repeat1] = STATE(950), + [sym_variable_name] = ACTIONS(3185), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_PIPE_AMP] = ACTIONS(1517), + [anon_sym_AMP_AMP] = ACTIONS(1517), + [anon_sym_PIPE_PIPE] = ACTIONS(1517), + [sym__special_characters] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(2969), + [anon_sym_DOLLAR] = ACTIONS(2972), + [sym_raw_string] = ACTIONS(3191), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2978), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2981), + [anon_sym_BQUOTE] = ACTIONS(2984), + [anon_sym_LT_LPAREN] = ACTIONS(2987), + [anon_sym_GT_LPAREN] = ACTIONS(2987), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3032), - [sym_word] = ACTIONS(3236), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2990), + [sym_word] = ACTIONS(3194), }, - [961] = { - [aux_sym_concatenation_repeat1] = STATE(1426), - [sym__concat] = ACTIONS(1886), + [951] = { + [aux_sym_concatenation_repeat1] = STATE(1395), + [sym__concat] = ACTIONS(1874), [anon_sym_PIPE] = ACTIONS(695), [anon_sym_PIPE_AMP] = ACTIONS(693), [anon_sym_AMP_AMP] = ACTIONS(693), @@ -34772,78 +31108,78 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(695), [sym_word] = ACTIONS(695), }, - [962] = { - [sym_concatenation] = STATE(962), + [952] = { + [sym_concatenation] = STATE(952), [sym_string] = STATE(512), [sym_simple_expansion] = STATE(512), [sym_string_expansion] = STATE(512), [sym_expansion] = STATE(512), [sym_command_substitution] = STATE(512), [sym_process_substitution] = STATE(512), - [aux_sym_unset_command_repeat1] = STATE(962), - [anon_sym_PIPE] = ACTIONS(1581), - [anon_sym_PIPE_AMP] = ACTIONS(1610), - [anon_sym_AMP_AMP] = ACTIONS(1610), - [anon_sym_PIPE_PIPE] = ACTIONS(1610), - [sym__special_characters] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(3083), - [anon_sym_DOLLAR] = ACTIONS(3086), - [sym_raw_string] = ACTIONS(3242), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3092), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3095), - [anon_sym_BQUOTE] = ACTIONS(3098), - [anon_sym_LT_LPAREN] = ACTIONS(3101), - [anon_sym_GT_LPAREN] = ACTIONS(3101), + [aux_sym_unset_command_repeat1] = STATE(952), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_PIPE_AMP] = ACTIONS(1598), + [anon_sym_AMP_AMP] = ACTIONS(1598), + [anon_sym_PIPE_PIPE] = ACTIONS(1598), + [sym__special_characters] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(3041), + [anon_sym_DOLLAR] = ACTIONS(3044), + [sym_raw_string] = ACTIONS(3200), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3053), + [anon_sym_BQUOTE] = ACTIONS(3056), + [anon_sym_LT_LPAREN] = ACTIONS(3059), + [anon_sym_GT_LPAREN] = ACTIONS(3059), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3104), - [sym_word] = ACTIONS(3245), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3062), + [sym_word] = ACTIONS(3203), }, - [963] = { - [aux_sym_concatenation_repeat1] = STATE(963), - [sym__simple_heredoc_body] = ACTIONS(1654), - [sym__heredoc_body_beginning] = ACTIONS(1654), - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1654), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_PIPE_PIPE] = ACTIONS(1654), - [anon_sym_EQ_TILDE] = ACTIONS(1656), - [anon_sym_EQ_EQ] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1654), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1654), - [anon_sym_LT_AMP] = ACTIONS(1654), - [anon_sym_GT_AMP] = ACTIONS(1654), - [anon_sym_LT_LT] = ACTIONS(1656), - [anon_sym_LT_LT_DASH] = ACTIONS(1654), - [anon_sym_LT_LT_LT] = ACTIONS(1654), - [sym__special_characters] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1654), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [anon_sym_LT_LPAREN] = ACTIONS(1654), - [anon_sym_GT_LPAREN] = ACTIONS(1654), + [953] = { + [aux_sym_concatenation_repeat1] = STATE(953), + [sym__simple_heredoc_body] = ACTIONS(1642), + [sym__heredoc_body_beginning] = ACTIONS(1642), + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(3068), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1642), + [anon_sym_AMP_AMP] = ACTIONS(1642), + [anon_sym_PIPE_PIPE] = ACTIONS(1642), + [anon_sym_EQ_TILDE] = ACTIONS(1644), + [anon_sym_EQ_EQ] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1642), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1642), + [anon_sym_LT_AMP] = ACTIONS(1642), + [anon_sym_GT_AMP] = ACTIONS(1642), + [anon_sym_LT_LT] = ACTIONS(1644), + [anon_sym_LT_LT_DASH] = ACTIONS(1642), + [anon_sym_LT_LT_LT] = ACTIONS(1642), + [sym__special_characters] = ACTIONS(1642), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1642), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1642), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), + [anon_sym_LT_LPAREN] = ACTIONS(1642), + [anon_sym_GT_LPAREN] = ACTIONS(1642), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1656), + [sym_word] = ACTIONS(1644), }, - [964] = { - [sym_compound_statement] = STATE(1427), - [anon_sym_LBRACE] = ACTIONS(1852), + [954] = { + [sym_compound_statement] = STATE(1396), + [anon_sym_LBRACE] = ACTIONS(1840), [sym_comment] = ACTIONS(53), }, - [965] = { + [955] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(2022), - [anon_sym_PIPE_AMP] = ACTIONS(2024), - [anon_sym_AMP_AMP] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(2010), + [anon_sym_PIPE_AMP] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2012), + [anon_sym_PIPE_PIPE] = ACTIONS(2012), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(369), @@ -34857,27 +31193,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(369), [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(2024), + [anon_sym_BQUOTE] = ACTIONS(2012), [anon_sym_LT_LPAREN] = ACTIONS(369), [anon_sym_GT_LPAREN] = ACTIONS(369), [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(369), }, - [966] = { + [956] = { [anon_sym_PIPE] = ACTIONS(923), [anon_sym_PIPE_AMP] = ACTIONS(925), - [anon_sym_AMP_AMP] = ACTIONS(2028), - [anon_sym_PIPE_PIPE] = ACTIONS(2028), - [anon_sym_BQUOTE] = ACTIONS(2028), + [anon_sym_AMP_AMP] = ACTIONS(2016), + [anon_sym_PIPE_PIPE] = ACTIONS(2016), + [anon_sym_BQUOTE] = ACTIONS(2016), [sym_comment] = ACTIONS(53), }, - [967] = { + [957] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(923), [anon_sym_PIPE_AMP] = ACTIONS(925), - [anon_sym_AMP_AMP] = ACTIONS(2028), - [anon_sym_PIPE_PIPE] = ACTIONS(2028), + [anon_sym_AMP_AMP] = ACTIONS(2016), + [anon_sym_PIPE_PIPE] = ACTIONS(2016), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(369), @@ -34897,96 +31233,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(369), }, - [968] = { - [sym_concatenation] = STATE(1410), - [sym_string] = STATE(1429), - [sym_simple_expansion] = STATE(1429), - [sym_string_expansion] = STATE(1429), - [sym_expansion] = STATE(1429), - [sym_command_substitution] = STATE(1429), - [sym_process_substitution] = STATE(1429), - [sym__special_characters] = ACTIONS(3248), + [958] = { + [sym_concatenation] = STATE(1379), + [sym_string] = STATE(1398), + [sym_simple_expansion] = STATE(1398), + [sym_string_expansion] = STATE(1398), + [sym_expansion] = STATE(1398), + [sym_command_substitution] = STATE(1398), + [sym_process_substitution] = STATE(1398), + [sym__special_characters] = ACTIONS(3206), [anon_sym_DQUOTE] = ACTIONS(287), [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(3250), + [sym_raw_string] = ACTIONS(3208), [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), [anon_sym_BQUOTE] = ACTIONS(297), [anon_sym_LT_LPAREN] = ACTIONS(299), [anon_sym_GT_LPAREN] = ACTIONS(299), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3250), + [sym_word] = ACTIONS(3208), }, - [969] = { + [959] = { [aux_sym_concatenation_repeat1] = STATE(514), - [sym__simple_heredoc_body] = ACTIONS(2058), - [sym__heredoc_body_beginning] = ACTIONS(2058), - [sym_file_descriptor] = ACTIONS(2058), + [sym__simple_heredoc_body] = ACTIONS(2046), + [sym__heredoc_body_beginning] = ACTIONS(2046), + [sym_file_descriptor] = ACTIONS(2046), [sym__concat] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_PIPE_AMP] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2060), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_AMP_GT] = ACTIONS(2060), - [anon_sym_AMP_GT_GT] = ACTIONS(2058), - [anon_sym_LT_AMP] = ACTIONS(2058), - [anon_sym_GT_AMP] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2060), - [anon_sym_LT_LT_DASH] = ACTIONS(2058), - [anon_sym_LT_LT_LT] = ACTIONS(2058), - [sym__special_characters] = ACTIONS(2058), - [anon_sym_DQUOTE] = ACTIONS(2058), - [anon_sym_DOLLAR] = ACTIONS(2060), - [sym_raw_string] = ACTIONS(2058), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2058), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2058), - [anon_sym_BQUOTE] = ACTIONS(2058), - [anon_sym_LT_LPAREN] = ACTIONS(2058), - [anon_sym_GT_LPAREN] = ACTIONS(2058), + [anon_sym_PIPE] = ACTIONS(2048), + [anon_sym_PIPE_AMP] = ACTIONS(2046), + [anon_sym_AMP_AMP] = ACTIONS(2046), + [anon_sym_PIPE_PIPE] = ACTIONS(2046), + [anon_sym_EQ_TILDE] = ACTIONS(2048), + [anon_sym_EQ_EQ] = ACTIONS(2048), + [anon_sym_LT] = ACTIONS(2048), + [anon_sym_GT] = ACTIONS(2048), + [anon_sym_GT_GT] = ACTIONS(2046), + [anon_sym_AMP_GT] = ACTIONS(2048), + [anon_sym_AMP_GT_GT] = ACTIONS(2046), + [anon_sym_LT_AMP] = ACTIONS(2046), + [anon_sym_GT_AMP] = ACTIONS(2046), + [anon_sym_LT_LT] = ACTIONS(2048), + [anon_sym_LT_LT_DASH] = ACTIONS(2046), + [anon_sym_LT_LT_LT] = ACTIONS(2046), + [sym__special_characters] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2046), + [anon_sym_DOLLAR] = ACTIONS(2048), + [sym_raw_string] = ACTIONS(2046), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2046), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2046), + [anon_sym_BQUOTE] = ACTIONS(2046), + [anon_sym_LT_LPAREN] = ACTIONS(2046), + [anon_sym_GT_LPAREN] = ACTIONS(2046), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2060), + [sym_word] = ACTIONS(2048), }, - [970] = { + [960] = { [aux_sym_concatenation_repeat1] = STATE(514), - [sym__simple_heredoc_body] = ACTIONS(2062), - [sym__heredoc_body_beginning] = ACTIONS(2062), - [sym_file_descriptor] = ACTIONS(2062), + [sym__simple_heredoc_body] = ACTIONS(2050), + [sym__heredoc_body_beginning] = ACTIONS(2050), + [sym_file_descriptor] = ACTIONS(2050), [sym__concat] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(2064), - [anon_sym_PIPE_AMP] = ACTIONS(2062), - [anon_sym_AMP_AMP] = ACTIONS(2062), - [anon_sym_PIPE_PIPE] = ACTIONS(2062), - [anon_sym_EQ_TILDE] = ACTIONS(2064), - [anon_sym_EQ_EQ] = ACTIONS(2064), - [anon_sym_LT] = ACTIONS(2064), - [anon_sym_GT] = ACTIONS(2064), - [anon_sym_GT_GT] = ACTIONS(2062), - [anon_sym_AMP_GT] = ACTIONS(2064), - [anon_sym_AMP_GT_GT] = ACTIONS(2062), - [anon_sym_LT_AMP] = ACTIONS(2062), - [anon_sym_GT_AMP] = ACTIONS(2062), - [anon_sym_LT_LT] = ACTIONS(2064), - [anon_sym_LT_LT_DASH] = ACTIONS(2062), - [anon_sym_LT_LT_LT] = ACTIONS(2062), - [sym__special_characters] = ACTIONS(2062), - [anon_sym_DQUOTE] = ACTIONS(2062), - [anon_sym_DOLLAR] = ACTIONS(2064), - [sym_raw_string] = ACTIONS(2062), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2062), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2062), - [anon_sym_BQUOTE] = ACTIONS(2062), - [anon_sym_LT_LPAREN] = ACTIONS(2062), - [anon_sym_GT_LPAREN] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2052), + [anon_sym_PIPE_AMP] = ACTIONS(2050), + [anon_sym_AMP_AMP] = ACTIONS(2050), + [anon_sym_PIPE_PIPE] = ACTIONS(2050), + [anon_sym_EQ_TILDE] = ACTIONS(2052), + [anon_sym_EQ_EQ] = ACTIONS(2052), + [anon_sym_LT] = ACTIONS(2052), + [anon_sym_GT] = ACTIONS(2052), + [anon_sym_GT_GT] = ACTIONS(2050), + [anon_sym_AMP_GT] = ACTIONS(2052), + [anon_sym_AMP_GT_GT] = ACTIONS(2050), + [anon_sym_LT_AMP] = ACTIONS(2050), + [anon_sym_GT_AMP] = ACTIONS(2050), + [anon_sym_LT_LT] = ACTIONS(2052), + [anon_sym_LT_LT_DASH] = ACTIONS(2050), + [anon_sym_LT_LT_LT] = ACTIONS(2050), + [sym__special_characters] = ACTIONS(2050), + [anon_sym_DQUOTE] = ACTIONS(2050), + [anon_sym_DOLLAR] = ACTIONS(2052), + [sym_raw_string] = ACTIONS(2050), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2050), + [anon_sym_BQUOTE] = ACTIONS(2050), + [anon_sym_LT_LPAREN] = ACTIONS(2050), + [anon_sym_GT_LPAREN] = ACTIONS(2050), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2064), + [sym_word] = ACTIONS(2052), }, - [971] = { - [aux_sym_concatenation_repeat1] = STATE(1430), + [961] = { + [aux_sym_concatenation_repeat1] = STATE(1399), [sym__simple_heredoc_body] = ACTIONS(661), [sym__heredoc_body_beginning] = ACTIONS(661), [sym_file_descriptor] = ACTIONS(661), @@ -35008,8 +31344,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(661), [sym_comment] = ACTIONS(53), }, - [972] = { - [aux_sym_concatenation_repeat1] = STATE(1430), + [962] = { + [aux_sym_concatenation_repeat1] = STATE(1399), [sym__simple_heredoc_body] = ACTIONS(677), [sym__heredoc_body_beginning] = ACTIONS(677), [sym_file_descriptor] = ACTIONS(677), @@ -35031,121 +31367,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(677), [sym_comment] = ACTIONS(53), }, - [973] = { - [aux_sym_concatenation_repeat1] = STATE(1430), - [sym__simple_heredoc_body] = ACTIONS(2070), - [sym__heredoc_body_beginning] = ACTIONS(2070), - [sym_file_descriptor] = ACTIONS(2070), + [963] = { + [aux_sym_concatenation_repeat1] = STATE(1399), + [sym__simple_heredoc_body] = ACTIONS(2058), + [sym__heredoc_body_beginning] = ACTIONS(2058), + [sym_file_descriptor] = ACTIONS(2058), [sym__concat] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_PIPE_AMP] = ACTIONS(2070), - [anon_sym_AMP_AMP] = ACTIONS(2070), - [anon_sym_PIPE_PIPE] = ACTIONS(2070), - [anon_sym_LT] = ACTIONS(2072), - [anon_sym_GT] = ACTIONS(2072), - [anon_sym_GT_GT] = ACTIONS(2070), - [anon_sym_AMP_GT] = ACTIONS(2072), - [anon_sym_AMP_GT_GT] = ACTIONS(2070), - [anon_sym_LT_AMP] = ACTIONS(2070), - [anon_sym_GT_AMP] = ACTIONS(2070), - [anon_sym_LT_LT] = ACTIONS(2072), - [anon_sym_LT_LT_DASH] = ACTIONS(2070), - [anon_sym_LT_LT_LT] = ACTIONS(2070), - [anon_sym_BQUOTE] = ACTIONS(2070), + [anon_sym_PIPE] = ACTIONS(2060), + [anon_sym_PIPE_AMP] = ACTIONS(2058), + [anon_sym_AMP_AMP] = ACTIONS(2058), + [anon_sym_PIPE_PIPE] = ACTIONS(2058), + [anon_sym_LT] = ACTIONS(2060), + [anon_sym_GT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2058), + [anon_sym_AMP_GT] = ACTIONS(2060), + [anon_sym_AMP_GT_GT] = ACTIONS(2058), + [anon_sym_LT_AMP] = ACTIONS(2058), + [anon_sym_GT_AMP] = ACTIONS(2058), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_LT_LT_DASH] = ACTIONS(2058), + [anon_sym_LT_LT_LT] = ACTIONS(2058), + [anon_sym_BQUOTE] = ACTIONS(2058), [sym_comment] = ACTIONS(53), }, - [974] = { - [aux_sym_concatenation_repeat1] = STATE(1430), - [sym__simple_heredoc_body] = ACTIONS(2074), - [sym__heredoc_body_beginning] = ACTIONS(2074), - [sym_file_descriptor] = ACTIONS(2074), - [sym__concat] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_PIPE_AMP] = ACTIONS(2074), - [anon_sym_AMP_AMP] = ACTIONS(2074), - [anon_sym_PIPE_PIPE] = ACTIONS(2074), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_GT_GT] = ACTIONS(2074), - [anon_sym_AMP_GT] = ACTIONS(2076), - [anon_sym_AMP_GT_GT] = ACTIONS(2074), - [anon_sym_LT_AMP] = ACTIONS(2074), - [anon_sym_GT_AMP] = ACTIONS(2074), - [anon_sym_LT_LT] = ACTIONS(2076), - [anon_sym_LT_LT_DASH] = ACTIONS(2074), - [anon_sym_LT_LT_LT] = ACTIONS(2074), - [anon_sym_BQUOTE] = ACTIONS(2074), - [sym_comment] = ACTIONS(53), - }, - [975] = { - [sym_file_redirect] = STATE(975), - [sym_heredoc_redirect] = STATE(975), - [sym_herestring_redirect] = STATE(975), - [aux_sym_while_statement_repeat1] = STATE(975), - [sym__simple_heredoc_body] = ACTIONS(2082), - [sym__heredoc_body_beginning] = ACTIONS(2082), - [sym_file_descriptor] = ACTIONS(3252), - [anon_sym_PIPE] = ACTIONS(2087), - [anon_sym_PIPE_AMP] = ACTIONS(2082), - [anon_sym_AMP_AMP] = ACTIONS(2082), - [anon_sym_PIPE_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_GT] = ACTIONS(3255), - [anon_sym_GT_GT] = ACTIONS(3258), - [anon_sym_AMP_GT] = ACTIONS(3255), - [anon_sym_AMP_GT_GT] = ACTIONS(3258), - [anon_sym_LT_AMP] = ACTIONS(3258), - [anon_sym_GT_AMP] = ACTIONS(3258), - [anon_sym_LT_LT] = ACTIONS(3168), - [anon_sym_LT_LT_DASH] = ACTIONS(3171), - [anon_sym_LT_LT_LT] = ACTIONS(3261), - [anon_sym_BQUOTE] = ACTIONS(2082), - [sym_comment] = ACTIONS(53), - }, - [976] = { - [sym_file_redirect] = STATE(975), - [sym_heredoc_redirect] = STATE(975), - [sym_heredoc_body] = STATE(1412), - [sym_herestring_redirect] = STATE(975), - [aux_sym_while_statement_repeat1] = STATE(975), - [sym__simple_heredoc_body] = ACTIONS(877), - [sym__heredoc_body_beginning] = ACTIONS(879), - [sym_file_descriptor] = ACTIONS(929), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_PIPE_AMP] = ACTIONS(2080), - [anon_sym_AMP_AMP] = ACTIONS(2080), - [anon_sym_PIPE_PIPE] = ACTIONS(2080), - [anon_sym_LT] = ACTIONS(933), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_GT_GT] = ACTIONS(935), - [anon_sym_AMP_GT] = ACTIONS(933), - [anon_sym_AMP_GT_GT] = ACTIONS(935), - [anon_sym_LT_AMP] = ACTIONS(935), - [anon_sym_GT_AMP] = ACTIONS(935), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_LT_LT_DASH] = ACTIONS(891), - [anon_sym_LT_LT_LT] = ACTIONS(937), - [anon_sym_BQUOTE] = ACTIONS(2080), - [sym_comment] = ACTIONS(53), - }, - [977] = { - [sym_concatenation] = STATE(977), - [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), - [aux_sym_command_repeat2] = STATE(977), + [964] = { + [aux_sym_concatenation_repeat1] = STATE(1399), [sym__simple_heredoc_body] = ACTIONS(2062), [sym__heredoc_body_beginning] = ACTIONS(2062), [sym_file_descriptor] = ACTIONS(2062), + [sym__concat] = ACTIONS(845), [anon_sym_PIPE] = ACTIONS(2064), [anon_sym_PIPE_AMP] = ACTIONS(2062), [anon_sym_AMP_AMP] = ACTIONS(2062), [anon_sym_PIPE_PIPE] = ACTIONS(2062), - [anon_sym_EQ_TILDE] = ACTIONS(3264), - [anon_sym_EQ_EQ] = ACTIONS(3264), [anon_sym_LT] = ACTIONS(2064), [anon_sym_GT] = ACTIONS(2064), [anon_sym_GT_GT] = ACTIONS(2062), @@ -35156,39 +31410,121 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(2064), [anon_sym_LT_LT_DASH] = ACTIONS(2062), [anon_sym_LT_LT_LT] = ACTIONS(2062), - [sym__special_characters] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(3183), - [anon_sym_DOLLAR] = ACTIONS(3186), - [sym_raw_string] = ACTIONS(3270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3195), - [anon_sym_BQUOTE] = ACTIONS(3198), - [anon_sym_LT_LPAREN] = ACTIONS(3201), - [anon_sym_GT_LPAREN] = ACTIONS(3201), + [anon_sym_BQUOTE] = ACTIONS(2062), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3273), }, - [978] = { - [sym_file_redirect] = STATE(1431), - [sym_heredoc_redirect] = STATE(1431), - [sym_heredoc_body] = STATE(1412), - [sym_herestring_redirect] = STATE(1431), - [sym_concatenation] = STATE(977), + [965] = { + [sym_file_redirect] = STATE(965), + [sym_heredoc_redirect] = STATE(965), + [sym_herestring_redirect] = STATE(965), + [aux_sym_while_statement_repeat1] = STATE(965), + [sym__simple_heredoc_body] = ACTIONS(2070), + [sym__heredoc_body_beginning] = ACTIONS(2070), + [sym_file_descriptor] = ACTIONS(3210), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_PIPE_AMP] = ACTIONS(2070), + [anon_sym_AMP_AMP] = ACTIONS(2070), + [anon_sym_PIPE_PIPE] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(3213), + [anon_sym_GT] = ACTIONS(3213), + [anon_sym_GT_GT] = ACTIONS(3216), + [anon_sym_AMP_GT] = ACTIONS(3213), + [anon_sym_AMP_GT_GT] = ACTIONS(3216), + [anon_sym_LT_AMP] = ACTIONS(3216), + [anon_sym_GT_AMP] = ACTIONS(3216), + [anon_sym_LT_LT] = ACTIONS(3126), + [anon_sym_LT_LT_DASH] = ACTIONS(3129), + [anon_sym_LT_LT_LT] = ACTIONS(3219), + [anon_sym_BQUOTE] = ACTIONS(2070), + [sym_comment] = ACTIONS(53), + }, + [966] = { + [sym_file_redirect] = STATE(965), + [sym_heredoc_redirect] = STATE(965), + [sym_heredoc_body] = STATE(1381), + [sym_herestring_redirect] = STATE(965), + [aux_sym_while_statement_repeat1] = STATE(965), + [sym__simple_heredoc_body] = ACTIONS(877), + [sym__heredoc_body_beginning] = ACTIONS(879), + [sym_file_descriptor] = ACTIONS(929), + [anon_sym_PIPE] = ACTIONS(2066), + [anon_sym_PIPE_AMP] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(935), + [anon_sym_LT_AMP] = ACTIONS(935), + [anon_sym_GT_AMP] = ACTIONS(935), + [anon_sym_LT_LT] = ACTIONS(889), + [anon_sym_LT_LT_DASH] = ACTIONS(891), + [anon_sym_LT_LT_LT] = ACTIONS(937), + [anon_sym_BQUOTE] = ACTIONS(2068), + [sym_comment] = ACTIONS(53), + }, + [967] = { + [sym_concatenation] = STATE(967), [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), - [aux_sym_while_statement_repeat1] = STATE(1431), - [aux_sym_command_repeat2] = STATE(977), + [aux_sym_command_repeat2] = STATE(967), + [sym__simple_heredoc_body] = ACTIONS(2050), + [sym__heredoc_body_beginning] = ACTIONS(2050), + [sym_file_descriptor] = ACTIONS(2050), + [anon_sym_PIPE] = ACTIONS(2052), + [anon_sym_PIPE_AMP] = ACTIONS(2050), + [anon_sym_AMP_AMP] = ACTIONS(2050), + [anon_sym_PIPE_PIPE] = ACTIONS(2050), + [anon_sym_EQ_TILDE] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(2052), + [anon_sym_GT] = ACTIONS(2052), + [anon_sym_GT_GT] = ACTIONS(2050), + [anon_sym_AMP_GT] = ACTIONS(2052), + [anon_sym_AMP_GT_GT] = ACTIONS(2050), + [anon_sym_LT_AMP] = ACTIONS(2050), + [anon_sym_GT_AMP] = ACTIONS(2050), + [anon_sym_LT_LT] = ACTIONS(2052), + [anon_sym_LT_LT_DASH] = ACTIONS(2050), + [anon_sym_LT_LT_LT] = ACTIONS(2050), + [sym__special_characters] = ACTIONS(3225), + [anon_sym_DQUOTE] = ACTIONS(3141), + [anon_sym_DOLLAR] = ACTIONS(3144), + [sym_raw_string] = ACTIONS(3228), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3153), + [anon_sym_BQUOTE] = ACTIONS(3156), + [anon_sym_LT_LPAREN] = ACTIONS(3159), + [anon_sym_GT_LPAREN] = ACTIONS(3159), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3231), + }, + [968] = { + [sym_file_redirect] = STATE(1400), + [sym_heredoc_redirect] = STATE(1400), + [sym_heredoc_body] = STATE(1381), + [sym_herestring_redirect] = STATE(1400), + [sym_concatenation] = STATE(967), + [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), + [aux_sym_while_statement_repeat1] = STATE(1400), + [aux_sym_command_repeat2] = STATE(967), [sym__simple_heredoc_body] = ACTIONS(877), [sym__heredoc_body_beginning] = ACTIONS(879), [sym_file_descriptor] = ACTIONS(929), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_PIPE_AMP] = ACTIONS(2080), - [anon_sym_AMP_AMP] = ACTIONS(2080), - [anon_sym_PIPE_PIPE] = ACTIONS(2080), + [anon_sym_PIPE] = ACTIONS(2066), + [anon_sym_PIPE_AMP] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), [anon_sym_EQ_TILDE] = ACTIONS(931), [anon_sym_EQ_EQ] = ACTIONS(931), [anon_sym_LT] = ACTIONS(933), @@ -35207,74 +31543,74 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(941), [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(2080), + [anon_sym_BQUOTE] = ACTIONS(2068), [anon_sym_LT_LPAREN] = ACTIONS(299), [anon_sym_GT_LPAREN] = ACTIONS(299), [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(943), }, - [979] = { - [sym_file_redirect] = STATE(1432), - [sym_file_descriptor] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(2376), - [anon_sym_SEMI_SEMI] = ACTIONS(2376), - [anon_sym_PIPE_AMP] = ACTIONS(2376), - [anon_sym_AMP_AMP] = ACTIONS(2376), - [anon_sym_PIPE_PIPE] = ACTIONS(2376), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_GT_GT] = ACTIONS(1247), - [anon_sym_AMP_GT] = ACTIONS(1247), - [anon_sym_AMP_GT_GT] = ACTIONS(1247), - [anon_sym_LT_AMP] = ACTIONS(1247), - [anon_sym_GT_AMP] = ACTIONS(1247), + [969] = { + [sym_file_redirect] = STATE(1401), + [sym_file_descriptor] = ACTIONS(1231), + [anon_sym_PIPE] = ACTIONS(2334), + [anon_sym_SEMI_SEMI] = ACTIONS(2334), + [anon_sym_PIPE_AMP] = ACTIONS(2334), + [anon_sym_AMP_AMP] = ACTIONS(2334), + [anon_sym_PIPE_PIPE] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1235), + [anon_sym_LT_AMP] = ACTIONS(1235), + [anon_sym_GT_AMP] = ACTIONS(1235), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2376), - [anon_sym_LF] = ACTIONS(2378), - [anon_sym_AMP] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2334), + [anon_sym_LF] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2334), }, - [980] = { + [970] = { [sym__heredoc_body_middle] = ACTIONS(727), [sym__heredoc_body_end] = ACTIONS(727), [anon_sym_DOLLAR] = ACTIONS(729), [anon_sym_DOLLAR_LBRACE] = ACTIONS(727), [sym_comment] = ACTIONS(53), }, - [981] = { + [971] = { [sym__heredoc_body_middle] = ACTIONS(735), [sym__heredoc_body_end] = ACTIONS(735), [anon_sym_DOLLAR] = ACTIONS(737), [anon_sym_DOLLAR_LBRACE] = ACTIONS(735), [sym_comment] = ACTIONS(53), }, - [982] = { + [972] = { [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3234), [sym_comment] = ACTIONS(53), }, - [983] = { - [sym_concatenation] = STATE(1436), + [973] = { + [sym_concatenation] = STATE(1405), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1436), - [anon_sym_RBRACE] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3280), + [aux_sym_expansion_repeat1] = STATE(1405), + [anon_sym_RBRACE] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3238), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3282), + [anon_sym_POUND] = ACTIONS(3240), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(3284), - [anon_sym_COLON] = ACTIONS(3280), - [anon_sym_COLON_QMARK] = ACTIONS(3280), - [anon_sym_COLON_DASH] = ACTIONS(3280), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_DASH] = ACTIONS(3280), + [aux_sym_SLASH] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(3238), + [anon_sym_COLON_QMARK] = ACTIONS(3238), + [anon_sym_COLON_DASH] = ACTIONS(3238), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_DASH] = ACTIONS(3238), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -35282,42 +31618,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [984] = { - [sym_subscript] = STATE(1440), - [sym_variable_name] = ACTIONS(3286), - [anon_sym_DOLLAR] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), + [974] = { + [sym_subscript] = STATE(1409), + [sym_variable_name] = ACTIONS(3244), + [anon_sym_DOLLAR] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3290), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_QMARK] = ACTIONS(3288), - [anon_sym_0] = ACTIONS(3292), - [anon_sym__] = ACTIONS(3292), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3246), + [anon_sym_AT] = ACTIONS(3246), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_0] = ACTIONS(3250), + [anon_sym__] = ACTIONS(3250), }, - [985] = { - [sym_concatenation] = STATE(1443), + [975] = { + [sym_concatenation] = STATE(1412), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1443), - [anon_sym_RBRACE] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3296), + [aux_sym_expansion_repeat1] = STATE(1412), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_EQ] = ACTIONS(3254), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3298), + [anon_sym_POUND] = ACTIONS(3256), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(3300), - [anon_sym_COLON] = ACTIONS(3296), - [anon_sym_COLON_QMARK] = ACTIONS(3296), - [anon_sym_COLON_DASH] = ACTIONS(3296), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), + [aux_sym_SLASH] = ACTIONS(3258), + [anon_sym_COLON] = ACTIONS(3254), + [anon_sym_COLON_QMARK] = ACTIONS(3254), + [anon_sym_COLON_DASH] = ACTIONS(3254), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -35325,29 +31661,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [986] = { - [sym_concatenation] = STATE(1446), + [976] = { + [sym_concatenation] = STATE(1415), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1446), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_EQ] = ACTIONS(3304), + [aux_sym_expansion_repeat1] = STATE(1415), + [anon_sym_RBRACE] = ACTIONS(3260), + [anon_sym_EQ] = ACTIONS(3262), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3306), + [anon_sym_POUND] = ACTIONS(3264), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(3308), - [anon_sym_COLON] = ACTIONS(3304), - [anon_sym_COLON_QMARK] = ACTIONS(3304), - [anon_sym_COLON_DASH] = ACTIONS(3304), - [anon_sym_PERCENT] = ACTIONS(3304), - [anon_sym_DASH] = ACTIONS(3304), + [aux_sym_SLASH] = ACTIONS(3266), + [anon_sym_COLON] = ACTIONS(3262), + [anon_sym_COLON_QMARK] = ACTIONS(3262), + [anon_sym_COLON_DASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3262), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -35355,31 +31691,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [987] = { - [anon_sym_esac] = ACTIONS(3310), - [anon_sym_PIPE] = ACTIONS(3310), - [anon_sym_RPAREN] = ACTIONS(3310), - [anon_sym_SEMI_SEMI] = ACTIONS(3310), - [anon_sym_PIPE_AMP] = ACTIONS(3310), - [anon_sym_AMP_AMP] = ACTIONS(3310), - [anon_sym_PIPE_PIPE] = ACTIONS(3310), + [977] = { + [anon_sym_esac] = ACTIONS(3268), + [anon_sym_PIPE] = ACTIONS(3268), + [anon_sym_RPAREN] = ACTIONS(3268), + [anon_sym_SEMI_SEMI] = ACTIONS(3268), + [anon_sym_PIPE_AMP] = ACTIONS(3268), + [anon_sym_AMP_AMP] = ACTIONS(3268), + [anon_sym_PIPE_PIPE] = ACTIONS(3268), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3310), - [anon_sym_LF] = ACTIONS(3312), - [anon_sym_AMP] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_LF] = ACTIONS(3270), + [anon_sym_AMP] = ACTIONS(3268), }, - [988] = { - [sym_simple_expansion] = STATE(988), - [sym_expansion] = STATE(988), - [aux_sym_heredoc_body_repeat1] = STATE(988), - [sym__heredoc_body_middle] = ACTIONS(3314), - [sym__heredoc_body_end] = ACTIONS(3317), - [anon_sym_DOLLAR] = ACTIONS(3319), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3322), + [978] = { + [sym_simple_expansion] = STATE(978), + [sym_expansion] = STATE(978), + [aux_sym_heredoc_body_repeat1] = STATE(978), + [sym__heredoc_body_middle] = ACTIONS(3272), + [sym__heredoc_body_end] = ACTIONS(3275), + [anon_sym_DOLLAR] = ACTIONS(3277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3280), [sym_comment] = ACTIONS(53), }, - [989] = { - [aux_sym_concatenation_repeat1] = STATE(992), + [979] = { + [aux_sym_concatenation_repeat1] = STATE(982), [sym__simple_heredoc_body] = ACTIONS(1089), [sym__heredoc_body_beginning] = ACTIONS(1089), [sym_file_descriptor] = ACTIONS(1089), @@ -35404,8 +31740,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1089), [anon_sym_AMP] = ACTIONS(1091), }, - [990] = { - [aux_sym_concatenation_repeat1] = STATE(992), + [980] = { + [aux_sym_concatenation_repeat1] = STATE(982), [sym__simple_heredoc_body] = ACTIONS(1093), [sym__heredoc_body_beginning] = ACTIONS(1093), [sym_file_descriptor] = ACTIONS(1093), @@ -35430,7 +31766,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1093), [anon_sym_AMP] = ACTIONS(1095), }, - [991] = { + [981] = { [sym__simple_heredoc_body] = ACTIONS(1093), [sym__heredoc_body_beginning] = ACTIONS(1093), [sym_file_descriptor] = ACTIONS(1093), @@ -35456,8 +31792,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1093), [anon_sym_AMP] = ACTIONS(1095), }, - [992] = { - [aux_sym_concatenation_repeat1] = STATE(1447), + [982] = { + [aux_sym_concatenation_repeat1] = STATE(1416), [sym__simple_heredoc_body] = ACTIONS(693), [sym__heredoc_body_beginning] = ACTIONS(693), [sym_file_descriptor] = ACTIONS(693), @@ -35482,33 +31818,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(693), [anon_sym_AMP] = ACTIONS(695), }, - [993] = { - [anon_sym_esac] = ACTIONS(3325), - [anon_sym_PIPE] = ACTIONS(3325), - [anon_sym_RPAREN] = ACTIONS(3325), - [anon_sym_SEMI_SEMI] = ACTIONS(3325), - [anon_sym_PIPE_AMP] = ACTIONS(3325), - [anon_sym_AMP_AMP] = ACTIONS(3325), - [anon_sym_PIPE_PIPE] = ACTIONS(3325), + [983] = { + [anon_sym_esac] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_RPAREN] = ACTIONS(3283), + [anon_sym_SEMI_SEMI] = ACTIONS(3283), + [anon_sym_PIPE_AMP] = ACTIONS(3283), + [anon_sym_AMP_AMP] = ACTIONS(3283), + [anon_sym_PIPE_PIPE] = ACTIONS(3283), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3325), - [anon_sym_LF] = ACTIONS(3327), - [anon_sym_AMP] = ACTIONS(3325), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3283), }, - [994] = { + [984] = { [sym_file_redirect] = STATE(549), [sym_heredoc_redirect] = STATE(549), - [sym_heredoc_body] = STATE(1448), + [sym_heredoc_body] = STATE(1417), [sym_herestring_redirect] = STATE(549), [aux_sym_while_statement_repeat1] = STATE(549), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), [sym_file_descriptor] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(3325), - [anon_sym_SEMI_SEMI] = ACTIONS(3325), - [anon_sym_PIPE_AMP] = ACTIONS(3325), - [anon_sym_AMP_AMP] = ACTIONS(3325), - [anon_sym_PIPE_PIPE] = ACTIONS(3325), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_SEMI_SEMI] = ACTIONS(3283), + [anon_sym_PIPE_AMP] = ACTIONS(3283), + [anon_sym_AMP_AMP] = ACTIONS(3283), + [anon_sym_PIPE_PIPE] = ACTIONS(3283), [anon_sym_LT] = ACTIONS(347), [anon_sym_GT] = ACTIONS(347), [anon_sym_GT_GT] = ACTIONS(347), @@ -35520,60 +31856,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(349), [anon_sym_LT_LT_LT] = ACTIONS(351), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3325), - [anon_sym_LF] = ACTIONS(3327), - [anon_sym_AMP] = ACTIONS(3325), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3283), }, - [995] = { - [sym__concat] = ACTIONS(3329), - [anon_sym_EQ] = ACTIONS(3331), - [anon_sym_PLUS_EQ] = ACTIONS(3331), + [985] = { + [sym__concat] = ACTIONS(3287), + [anon_sym_EQ] = ACTIONS(3289), + [anon_sym_PLUS_EQ] = ACTIONS(3289), [sym_comment] = ACTIONS(53), }, - [996] = { - [anon_sym_EQ] = ACTIONS(3331), - [anon_sym_PLUS_EQ] = ACTIONS(3331), + [986] = { + [anon_sym_EQ] = ACTIONS(3289), + [anon_sym_PLUS_EQ] = ACTIONS(3289), [sym_comment] = ACTIONS(53), }, - [997] = { - [aux_sym_concatenation_repeat1] = STATE(997), - [sym__concat] = ACTIONS(2447), - [anon_sym_RBRACK] = ACTIONS(1654), + [987] = { + [aux_sym_concatenation_repeat1] = STATE(987), + [sym__concat] = ACTIONS(2405), + [anon_sym_RBRACK] = ACTIONS(1642), [sym_comment] = ACTIONS(53), }, - [998] = { - [sym__concat] = ACTIONS(3333), - [anon_sym_EQ] = ACTIONS(3335), - [anon_sym_PLUS_EQ] = ACTIONS(3335), + [988] = { + [sym__concat] = ACTIONS(3291), + [anon_sym_EQ] = ACTIONS(3293), + [anon_sym_PLUS_EQ] = ACTIONS(3293), [sym_comment] = ACTIONS(53), }, - [999] = { - [anon_sym_EQ] = ACTIONS(3335), - [anon_sym_PLUS_EQ] = ACTIONS(3335), + [989] = { + [anon_sym_EQ] = ACTIONS(3293), + [anon_sym_PLUS_EQ] = ACTIONS(3293), [sym_comment] = ACTIONS(53), }, - [1000] = { - [sym_string] = STATE(1451), - [sym_simple_expansion] = STATE(1451), - [sym_string_expansion] = STATE(1451), - [sym_expansion] = STATE(1451), - [sym_command_substitution] = STATE(1451), - [sym_process_substitution] = STATE(1451), - [sym__special_characters] = ACTIONS(3337), + [990] = { + [sym_string] = STATE(1420), + [sym_simple_expansion] = STATE(1420), + [sym_string_expansion] = STATE(1420), + [sym_expansion] = STATE(1420), + [sym_command_substitution] = STATE(1420), + [sym_process_substitution] = STATE(1420), + [sym__special_characters] = ACTIONS(3295), [anon_sym_DQUOTE] = ACTIONS(1115), [anon_sym_DOLLAR] = ACTIONS(1117), - [sym_raw_string] = ACTIONS(3337), + [sym_raw_string] = ACTIONS(3295), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1121), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), [anon_sym_BQUOTE] = ACTIONS(1125), [anon_sym_LT_LPAREN] = ACTIONS(1127), [anon_sym_GT_LPAREN] = ACTIONS(1127), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3337), + [sym_word] = ACTIONS(3295), }, - [1001] = { - [aux_sym_concatenation_repeat1] = STATE(1452), - [sym__concat] = ACTIONS(2143), + [991] = { + [aux_sym_concatenation_repeat1] = STATE(1421), + [sym__concat] = ACTIONS(2131), [anon_sym_RPAREN] = ACTIONS(693), [sym__special_characters] = ACTIONS(693), [anon_sym_DQUOTE] = ACTIONS(693), @@ -35587,7 +31923,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(693), }, - [1002] = { + [992] = { [sym__concat] = ACTIONS(697), [anon_sym_RPAREN] = ACTIONS(697), [sym__special_characters] = ACTIONS(697), @@ -35602,12 +31938,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(697), }, - [1003] = { + [993] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(3297), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -35615,7 +31951,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(237), [sym_comment] = ACTIONS(177), }, - [1004] = { + [994] = { [sym__concat] = ACTIONS(727), [anon_sym_RPAREN] = ACTIONS(727), [sym__special_characters] = ACTIONS(727), @@ -35630,7 +31966,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(727), }, - [1005] = { + [995] = { [sym__concat] = ACTIONS(731), [anon_sym_RPAREN] = ACTIONS(731), [sym__special_characters] = ACTIONS(731), @@ -35645,7 +31981,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(731), }, - [1006] = { + [996] = { [sym__concat] = ACTIONS(735), [anon_sym_RPAREN] = ACTIONS(735), [sym__special_characters] = ACTIONS(735), @@ -35660,446 +31996,677 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(735), }, - [1007] = { + [997] = { [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(3341), + [anon_sym_EQ] = ACTIONS(3299), [sym_comment] = ACTIONS(53), }, + [998] = { + [sym_concatenation] = STATE(1426), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1426), + [anon_sym_RBRACE] = ACTIONS(3301), + [anon_sym_EQ] = ACTIONS(3303), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3305), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(3307), + [anon_sym_COLON] = ACTIONS(3303), + [anon_sym_COLON_QMARK] = ACTIONS(3303), + [anon_sym_COLON_DASH] = ACTIONS(3303), + [anon_sym_PERCENT] = ACTIONS(3303), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [999] = { + [sym_subscript] = STATE(1430), + [sym_variable_name] = ACTIONS(3309), + [anon_sym_DOLLAR] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3313), + [anon_sym_STAR] = ACTIONS(3311), + [anon_sym_AT] = ACTIONS(3311), + [anon_sym_QMARK] = ACTIONS(3311), + [anon_sym_0] = ACTIONS(3315), + [anon_sym__] = ACTIONS(3315), + }, + [1000] = { + [sym_concatenation] = STATE(1433), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1433), + [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_EQ] = ACTIONS(3319), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3321), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1001] = { + [sym_concatenation] = STATE(1436), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1436), + [anon_sym_RBRACE] = ACTIONS(3325), + [anon_sym_EQ] = ACTIONS(3327), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3329), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(3331), + [anon_sym_COLON] = ACTIONS(3327), + [anon_sym_COLON_QMARK] = ACTIONS(3327), + [anon_sym_COLON_DASH] = ACTIONS(3327), + [anon_sym_PERCENT] = ACTIONS(3327), + [anon_sym_DASH] = ACTIONS(3327), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1002] = { + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(3333), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(875), + [anon_sym_PIPE_PIPE] = ACTIONS(875), + [sym_comment] = ACTIONS(53), + }, + [1003] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(3333), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(875), + [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_AMP_GT] = ACTIONS(371), + [anon_sym_AMP_GT_GT] = ACTIONS(369), + [anon_sym_LT_AMP] = ACTIONS(369), + [anon_sym_GT_AMP] = ACTIONS(369), + [sym__special_characters] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(369), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, + [1004] = { + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_PIPE_AMP] = ACTIONS(925), + [anon_sym_AMP_AMP] = ACTIONS(927), + [anon_sym_PIPE_PIPE] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(3333), + [sym_comment] = ACTIONS(53), + }, + [1005] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_PIPE_AMP] = ACTIONS(925), + [anon_sym_AMP_AMP] = ACTIONS(927), + [anon_sym_PIPE_PIPE] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_AMP_GT] = ACTIONS(371), + [anon_sym_AMP_GT_GT] = ACTIONS(369), + [anon_sym_LT_AMP] = ACTIONS(369), + [anon_sym_GT_AMP] = ACTIONS(369), + [sym__special_characters] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(3333), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, + [1006] = { + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(3335), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(875), + [anon_sym_PIPE_PIPE] = ACTIONS(875), + [sym_comment] = ACTIONS(53), + }, + [1007] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(3335), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(875), + [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_AMP_GT] = ACTIONS(371), + [anon_sym_AMP_GT_GT] = ACTIONS(369), + [anon_sym_LT_AMP] = ACTIONS(369), + [anon_sym_GT_AMP] = ACTIONS(369), + [sym__special_characters] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(369), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, [1008] = { - [sym_concatenation] = STATE(1457), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1457), - [anon_sym_RBRACE] = ACTIONS(3343), - [anon_sym_EQ] = ACTIONS(3345), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(3349), - [anon_sym_COLON] = ACTIONS(3345), - [anon_sym_COLON_QMARK] = ACTIONS(3345), - [anon_sym_COLON_DASH] = ACTIONS(3345), - [anon_sym_PERCENT] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(3345), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_file_descriptor] = ACTIONS(3337), + [sym_variable_name] = ACTIONS(3337), + [anon_sym_esac] = ACTIONS(3339), + [anon_sym_PIPE] = ACTIONS(3339), + [anon_sym_RPAREN] = ACTIONS(3339), + [anon_sym_SEMI_SEMI] = ACTIONS(3339), + [anon_sym_PIPE_AMP] = ACTIONS(3339), + [anon_sym_AMP_AMP] = ACTIONS(3339), + [anon_sym_PIPE_PIPE] = ACTIONS(3339), + [anon_sym_LT] = ACTIONS(3339), + [anon_sym_GT] = ACTIONS(3339), + [anon_sym_GT_GT] = ACTIONS(3339), + [anon_sym_AMP_GT] = ACTIONS(3339), + [anon_sym_AMP_GT_GT] = ACTIONS(3339), + [anon_sym_LT_AMP] = ACTIONS(3339), + [anon_sym_GT_AMP] = ACTIONS(3339), + [sym__special_characters] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(3339), + [anon_sym_DOLLAR] = ACTIONS(3339), + [sym_raw_string] = ACTIONS(3339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3339), + [anon_sym_BQUOTE] = ACTIONS(3339), + [anon_sym_LT_LPAREN] = ACTIONS(3339), + [anon_sym_GT_LPAREN] = ACTIONS(3339), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(3339), + [anon_sym_SEMI] = ACTIONS(3339), + [anon_sym_LF] = ACTIONS(3337), + [anon_sym_AMP] = ACTIONS(3339), }, [1009] = { - [sym_subscript] = STATE(1461), - [sym_variable_name] = ACTIONS(3351), - [anon_sym_DOLLAR] = ACTIONS(3353), - [anon_sym_DASH] = ACTIONS(3353), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3355), - [anon_sym_STAR] = ACTIONS(3353), - [anon_sym_AT] = ACTIONS(3353), - [anon_sym_QMARK] = ACTIONS(3353), - [anon_sym_0] = ACTIONS(3357), - [anon_sym__] = ACTIONS(3357), - }, - [1010] = { - [sym_concatenation] = STATE(1464), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1464), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_EQ] = ACTIONS(3361), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3363), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(3365), - [anon_sym_COLON] = ACTIONS(3361), - [anon_sym_COLON_QMARK] = ACTIONS(3361), - [anon_sym_COLON_DASH] = ACTIONS(3361), - [anon_sym_PERCENT] = ACTIONS(3361), - [anon_sym_DASH] = ACTIONS(3361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1011] = { - [sym_concatenation] = STATE(1467), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1467), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_EQ] = ACTIONS(3369), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(3373), - [anon_sym_COLON] = ACTIONS(3369), - [anon_sym_COLON_QMARK] = ACTIONS(3369), - [anon_sym_COLON_DASH] = ACTIONS(3369), - [anon_sym_PERCENT] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1012] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(3375), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [sym_comment] = ACTIONS(53), - }, - [1013] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(3375), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [1014] = { - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_PIPE_AMP] = ACTIONS(925), - [anon_sym_AMP_AMP] = ACTIONS(927), - [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_BQUOTE] = ACTIONS(3375), - [sym_comment] = ACTIONS(53), - }, - [1015] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_PIPE_AMP] = ACTIONS(925), - [anon_sym_AMP_AMP] = ACTIONS(927), - [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(3375), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [1016] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(3377), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [sym_comment] = ACTIONS(53), - }, - [1017] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(3377), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [1018] = { - [sym_file_descriptor] = ACTIONS(3379), - [sym_variable_name] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3381), - [anon_sym_RPAREN] = ACTIONS(3381), - [anon_sym_SEMI_SEMI] = ACTIONS(3381), - [anon_sym_PIPE_AMP] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_PIPE_PIPE] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_GT] = ACTIONS(3381), - [anon_sym_GT_GT] = ACTIONS(3381), - [anon_sym_AMP_GT] = ACTIONS(3381), - [anon_sym_AMP_GT_GT] = ACTIONS(3381), - [anon_sym_LT_AMP] = ACTIONS(3381), - [anon_sym_GT_AMP] = ACTIONS(3381), - [sym__special_characters] = ACTIONS(3381), - [anon_sym_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3381), - [sym_raw_string] = ACTIONS(3381), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3381), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3381), - [anon_sym_BQUOTE] = ACTIONS(3381), - [anon_sym_LT_LPAREN] = ACTIONS(3381), - [anon_sym_GT_LPAREN] = ACTIONS(3381), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3381), - [anon_sym_SEMI] = ACTIONS(3381), - [anon_sym_LF] = ACTIONS(3379), - [anon_sym_AMP] = ACTIONS(3381), - }, - [1019] = { - [sym_concatenation] = STATE(1019), + [sym_concatenation] = STATE(1009), [sym_string] = STATE(563), [sym_simple_expansion] = STATE(563), [sym_string_expansion] = STATE(563), [sym_expansion] = STATE(563), [sym_command_substitution] = STATE(563), [sym_process_substitution] = STATE(563), - [aux_sym_for_statement_repeat1] = STATE(1019), - [anon_sym_RPAREN] = ACTIONS(3383), - [sym__special_characters] = ACTIONS(3385), - [anon_sym_DQUOTE] = ACTIONS(3388), - [anon_sym_DOLLAR] = ACTIONS(3391), - [sym_raw_string] = ACTIONS(3394), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3397), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), - [anon_sym_BQUOTE] = ACTIONS(3403), - [anon_sym_LT_LPAREN] = ACTIONS(3406), - [anon_sym_GT_LPAREN] = ACTIONS(3406), + [aux_sym_for_statement_repeat1] = STATE(1009), + [anon_sym_RPAREN] = ACTIONS(3341), + [sym__special_characters] = ACTIONS(3343), + [anon_sym_DQUOTE] = ACTIONS(3346), + [anon_sym_DOLLAR] = ACTIONS(3349), + [sym_raw_string] = ACTIONS(3352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3355), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3358), + [anon_sym_BQUOTE] = ACTIONS(3361), + [anon_sym_LT_LPAREN] = ACTIONS(3364), + [anon_sym_GT_LPAREN] = ACTIONS(3364), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3394), + [sym_word] = ACTIONS(3352), }, - [1020] = { - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(1654), - [sym_variable_name] = ACTIONS(1654), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1656), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1656), - [anon_sym_LT_AMP] = ACTIONS(1656), - [anon_sym_GT_AMP] = ACTIONS(1656), - [sym__special_characters] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1656), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1656), - [anon_sym_BQUOTE] = ACTIONS(1656), - [anon_sym_LT_LPAREN] = ACTIONS(1656), - [anon_sym_GT_LPAREN] = ACTIONS(1656), + [1010] = { + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(1642), + [sym_variable_name] = ACTIONS(1642), + [anon_sym_esac] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1644), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1644), + [anon_sym_LT_AMP] = ACTIONS(1644), + [anon_sym_GT_AMP] = ACTIONS(1644), + [sym__special_characters] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1644), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1644), + [anon_sym_LT_LPAREN] = ACTIONS(1644), + [anon_sym_GT_LPAREN] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), + [sym_word] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, - [1021] = { - [aux_sym_concatenation_repeat1] = STATE(1021), - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(3409), - [sym_variable_name] = ACTIONS(1654), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1656), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1656), - [anon_sym_LT_AMP] = ACTIONS(1656), - [anon_sym_GT_AMP] = ACTIONS(1656), - [sym__special_characters] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1656), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1656), - [anon_sym_BQUOTE] = ACTIONS(1656), - [anon_sym_LT_LPAREN] = ACTIONS(1656), - [anon_sym_GT_LPAREN] = ACTIONS(1656), + [1011] = { + [aux_sym_concatenation_repeat1] = STATE(1011), + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(3367), + [sym_variable_name] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1644), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1644), + [anon_sym_LT_AMP] = ACTIONS(1644), + [anon_sym_GT_AMP] = ACTIONS(1644), + [sym__special_characters] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1644), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1644), + [anon_sym_LT_LPAREN] = ACTIONS(1644), + [anon_sym_GT_LPAREN] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), + [sym_word] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, - [1022] = { - [sym_file_descriptor] = ACTIONS(1703), - [sym__concat] = ACTIONS(1703), - [sym_variable_name] = ACTIONS(1703), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_RPAREN] = ACTIONS(1705), - [anon_sym_SEMI_SEMI] = ACTIONS(1705), - [anon_sym_PIPE_AMP] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1705), - [anon_sym_PIPE_PIPE] = ACTIONS(1705), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_GT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_AMP_GT] = ACTIONS(1705), - [anon_sym_AMP_GT_GT] = ACTIONS(1705), - [anon_sym_LT_AMP] = ACTIONS(1705), - [anon_sym_GT_AMP] = ACTIONS(1705), - [sym__special_characters] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1705), - [sym_raw_string] = ACTIONS(1705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1705), - [anon_sym_BQUOTE] = ACTIONS(1705), - [anon_sym_LT_LPAREN] = ACTIONS(1705), - [anon_sym_GT_LPAREN] = ACTIONS(1705), + [1012] = { + [sym_file_descriptor] = ACTIONS(1691), + [sym__concat] = ACTIONS(1691), + [sym_variable_name] = ACTIONS(1691), + [anon_sym_esac] = ACTIONS(1693), + [anon_sym_PIPE] = ACTIONS(1693), + [anon_sym_RPAREN] = ACTIONS(1693), + [anon_sym_SEMI_SEMI] = ACTIONS(1693), + [anon_sym_PIPE_AMP] = ACTIONS(1693), + [anon_sym_AMP_AMP] = ACTIONS(1693), + [anon_sym_PIPE_PIPE] = ACTIONS(1693), + [anon_sym_LT] = ACTIONS(1693), + [anon_sym_GT] = ACTIONS(1693), + [anon_sym_GT_GT] = ACTIONS(1693), + [anon_sym_AMP_GT] = ACTIONS(1693), + [anon_sym_AMP_GT_GT] = ACTIONS(1693), + [anon_sym_LT_AMP] = ACTIONS(1693), + [anon_sym_GT_AMP] = ACTIONS(1693), + [sym__special_characters] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1693), + [anon_sym_DOLLAR] = ACTIONS(1693), + [sym_raw_string] = ACTIONS(1693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1693), + [anon_sym_BQUOTE] = ACTIONS(1693), + [anon_sym_LT_LPAREN] = ACTIONS(1693), + [anon_sym_GT_LPAREN] = ACTIONS(1693), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_LF] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1705), + [sym_word] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_LF] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1693), }, - [1023] = { - [sym_concatenation] = STATE(1473), - [sym_string] = STATE(1472), - [sym_simple_expansion] = STATE(1472), - [sym_string_expansion] = STATE(1472), - [sym_expansion] = STATE(1472), - [sym_command_substitution] = STATE(1472), - [sym_process_substitution] = STATE(1472), - [anon_sym_RBRACE] = ACTIONS(3412), - [sym__special_characters] = ACTIONS(3414), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(3416), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), + [1013] = { + [sym_concatenation] = STATE(1442), + [sym_string] = STATE(1441), + [sym_simple_expansion] = STATE(1441), + [sym_string_expansion] = STATE(1441), + [sym_expansion] = STATE(1441), + [sym_command_substitution] = STATE(1441), + [sym_process_substitution] = STATE(1441), + [anon_sym_RBRACE] = ACTIONS(3370), + [sym__special_characters] = ACTIONS(3372), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(3374), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3416), + [sym_word] = ACTIONS(3374), }, - [1024] = { - [sym_file_descriptor] = ACTIONS(1744), - [sym__concat] = ACTIONS(1744), - [sym_variable_name] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_SEMI_SEMI] = ACTIONS(1746), - [anon_sym_PIPE_AMP] = ACTIONS(1746), - [anon_sym_AMP_AMP] = ACTIONS(1746), - [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1746), - [anon_sym_GT] = ACTIONS(1746), - [anon_sym_GT_GT] = ACTIONS(1746), - [anon_sym_AMP_GT] = ACTIONS(1746), - [anon_sym_AMP_GT_GT] = ACTIONS(1746), - [anon_sym_LT_AMP] = ACTIONS(1746), - [anon_sym_GT_AMP] = ACTIONS(1746), - [sym__special_characters] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1746), - [sym_raw_string] = ACTIONS(1746), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1746), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_LT_LPAREN] = ACTIONS(1746), - [anon_sym_GT_LPAREN] = ACTIONS(1746), + [1014] = { + [sym_file_descriptor] = ACTIONS(1732), + [sym__concat] = ACTIONS(1732), + [sym_variable_name] = ACTIONS(1732), + [anon_sym_esac] = ACTIONS(1734), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_SEMI_SEMI] = ACTIONS(1734), + [anon_sym_PIPE_AMP] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_GT_GT] = ACTIONS(1734), + [anon_sym_AMP_GT] = ACTIONS(1734), + [anon_sym_AMP_GT_GT] = ACTIONS(1734), + [anon_sym_LT_AMP] = ACTIONS(1734), + [anon_sym_GT_AMP] = ACTIONS(1734), + [sym__special_characters] = ACTIONS(1734), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1734), + [sym_raw_string] = ACTIONS(1734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1734), + [anon_sym_BQUOTE] = ACTIONS(1734), + [anon_sym_LT_LPAREN] = ACTIONS(1734), + [anon_sym_GT_LPAREN] = ACTIONS(1734), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LF] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1746), + [sym_word] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_LF] = ACTIONS(1732), + [anon_sym_AMP] = ACTIONS(1734), }, - [1025] = { + [1015] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3418), + [sym_regex_without_right_brace] = ACTIONS(3376), }, - [1026] = { - [sym_concatenation] = STATE(839), + [1016] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3420), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3378), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1017] = { + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(3380), + [sym_comment] = ACTIONS(53), + }, + [1018] = { + [sym_concatenation] = STATE(1448), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1448), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_EQ] = ACTIONS(3384), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3386), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(3388), + [anon_sym_COLON] = ACTIONS(3384), + [anon_sym_COLON_QMARK] = ACTIONS(3384), + [anon_sym_COLON_DASH] = ACTIONS(3384), + [anon_sym_PERCENT] = ACTIONS(3384), + [anon_sym_DASH] = ACTIONS(3384), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1019] = { + [sym_concatenation] = STATE(1451), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1451), + [anon_sym_RBRACE] = ACTIONS(3390), + [anon_sym_EQ] = ACTIONS(3392), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(3396), + [anon_sym_COLON] = ACTIONS(3392), + [anon_sym_COLON_QMARK] = ACTIONS(3392), + [anon_sym_COLON_DASH] = ACTIONS(3392), + [anon_sym_PERCENT] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1020] = { + [sym_concatenation] = STATE(1453), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1453), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_EQ] = ACTIONS(3398), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(3402), + [anon_sym_COLON] = ACTIONS(3398), + [anon_sym_COLON_QMARK] = ACTIONS(3398), + [anon_sym_COLON_DASH] = ACTIONS(3398), + [anon_sym_PERCENT] = ACTIONS(3398), + [anon_sym_DASH] = ACTIONS(3398), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1021] = { + [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_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(177), + [sym_word] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_LF] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1800), + }, + [1022] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3404), + }, + [1023] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3406), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1024] = { + [sym_file_descriptor] = ACTIONS(1806), + [sym__concat] = ACTIONS(1806), + [sym_variable_name] = ACTIONS(1806), + [anon_sym_esac] = ACTIONS(1808), + [anon_sym_PIPE] = ACTIONS(1808), + [anon_sym_RPAREN] = ACTIONS(1808), + [anon_sym_SEMI_SEMI] = ACTIONS(1808), + [anon_sym_PIPE_AMP] = ACTIONS(1808), + [anon_sym_AMP_AMP] = ACTIONS(1808), + [anon_sym_PIPE_PIPE] = ACTIONS(1808), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_GT_GT] = ACTIONS(1808), + [anon_sym_AMP_GT] = ACTIONS(1808), + [anon_sym_AMP_GT_GT] = ACTIONS(1808), + [anon_sym_LT_AMP] = ACTIONS(1808), + [anon_sym_GT_AMP] = ACTIONS(1808), + [sym__special_characters] = ACTIONS(1808), + [anon_sym_DQUOTE] = ACTIONS(1808), + [anon_sym_DOLLAR] = ACTIONS(1808), + [sym_raw_string] = ACTIONS(1808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1808), + [anon_sym_BQUOTE] = ACTIONS(1808), + [anon_sym_LT_LPAREN] = ACTIONS(1808), + [anon_sym_GT_LPAREN] = ACTIONS(1808), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1808), + [anon_sym_LF] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1808), + }, + [1025] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3408), + }, + [1026] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -36108,316 +32675,74 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [1027] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(3422), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(1940), + [sym_variable_name] = ACTIONS(1940), + [anon_sym_esac] = ACTIONS(1942), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1942), + [anon_sym_PIPE_AMP] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1942), + [anon_sym_PIPE_PIPE] = ACTIONS(1942), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_GT_GT] = ACTIONS(1942), + [anon_sym_AMP_GT] = ACTIONS(1942), + [anon_sym_AMP_GT_GT] = ACTIONS(1942), + [anon_sym_LT_AMP] = ACTIONS(1942), + [anon_sym_GT_AMP] = ACTIONS(1942), + [sym__special_characters] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [anon_sym_DOLLAR] = ACTIONS(1942), + [sym_raw_string] = ACTIONS(1942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1942), + [anon_sym_BQUOTE] = ACTIONS(1942), + [anon_sym_LT_LPAREN] = ACTIONS(1942), + [anon_sym_GT_LPAREN] = ACTIONS(1942), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1942), }, [1028] = { - [sym_concatenation] = STATE(1479), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1479), - [anon_sym_RBRACE] = ACTIONS(3424), - [anon_sym_EQ] = ACTIONS(3426), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3428), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(3430), - [anon_sym_COLON] = ACTIONS(3426), - [anon_sym_COLON_QMARK] = ACTIONS(3426), - [anon_sym_COLON_DASH] = ACTIONS(3426), - [anon_sym_PERCENT] = ACTIONS(3426), - [anon_sym_DASH] = ACTIONS(3426), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_file_descriptor] = ACTIONS(2006), + [sym__concat] = ACTIONS(2006), + [sym_variable_name] = ACTIONS(2006), + [anon_sym_esac] = ACTIONS(2008), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2008), + [anon_sym_SEMI_SEMI] = ACTIONS(2008), + [anon_sym_PIPE_AMP] = ACTIONS(2008), + [anon_sym_AMP_AMP] = ACTIONS(2008), + [anon_sym_PIPE_PIPE] = ACTIONS(2008), + [anon_sym_LT] = ACTIONS(2008), + [anon_sym_GT] = ACTIONS(2008), + [anon_sym_GT_GT] = ACTIONS(2008), + [anon_sym_AMP_GT] = ACTIONS(2008), + [anon_sym_AMP_GT_GT] = ACTIONS(2008), + [anon_sym_LT_AMP] = ACTIONS(2008), + [anon_sym_GT_AMP] = ACTIONS(2008), + [sym__special_characters] = ACTIONS(2008), + [anon_sym_DQUOTE] = ACTIONS(2008), + [anon_sym_DOLLAR] = ACTIONS(2008), + [sym_raw_string] = ACTIONS(2008), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2008), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2008), + [anon_sym_BQUOTE] = ACTIONS(2008), + [anon_sym_LT_LPAREN] = ACTIONS(2008), + [anon_sym_GT_LPAREN] = ACTIONS(2008), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(2008), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_LF] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2008), }, [1029] = { - [sym_concatenation] = STATE(1482), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1482), - [anon_sym_RBRACE] = ACTIONS(3432), - [anon_sym_EQ] = ACTIONS(3434), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3436), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(3438), - [anon_sym_COLON] = ACTIONS(3434), - [anon_sym_COLON_QMARK] = ACTIONS(3434), - [anon_sym_COLON_DASH] = ACTIONS(3434), - [anon_sym_PERCENT] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1030] = { - [sym_concatenation] = STATE(1484), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1484), - [anon_sym_RBRACE] = ACTIONS(3412), - [anon_sym_EQ] = ACTIONS(3440), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3442), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(3444), - [anon_sym_COLON] = ACTIONS(3440), - [anon_sym_COLON_QMARK] = ACTIONS(3440), - [anon_sym_COLON_DASH] = ACTIONS(3440), - [anon_sym_PERCENT] = ACTIONS(3440), - [anon_sym_DASH] = ACTIONS(3440), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1031] = { - [sym_file_descriptor] = ACTIONS(1810), - [sym__concat] = ACTIONS(1810), - [sym_variable_name] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_SEMI_SEMI] = ACTIONS(1812), - [anon_sym_PIPE_AMP] = ACTIONS(1812), - [anon_sym_AMP_AMP] = ACTIONS(1812), - [anon_sym_PIPE_PIPE] = ACTIONS(1812), - [anon_sym_LT] = ACTIONS(1812), - [anon_sym_GT] = ACTIONS(1812), - [anon_sym_GT_GT] = ACTIONS(1812), - [anon_sym_AMP_GT] = ACTIONS(1812), - [anon_sym_AMP_GT_GT] = ACTIONS(1812), - [anon_sym_LT_AMP] = ACTIONS(1812), - [anon_sym_GT_AMP] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(1812), - [anon_sym_DQUOTE] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1812), - [sym_raw_string] = ACTIONS(1812), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1812), - [anon_sym_GT_LPAREN] = ACTIONS(1812), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_LF] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1812), - }, - [1032] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3446), - }, - [1033] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3448), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1034] = { - [sym_file_descriptor] = ACTIONS(1818), - [sym__concat] = ACTIONS(1818), - [sym_variable_name] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_RPAREN] = ACTIONS(1820), - [anon_sym_SEMI_SEMI] = ACTIONS(1820), - [anon_sym_PIPE_AMP] = ACTIONS(1820), - [anon_sym_AMP_AMP] = ACTIONS(1820), - [anon_sym_PIPE_PIPE] = ACTIONS(1820), - [anon_sym_LT] = ACTIONS(1820), - [anon_sym_GT] = ACTIONS(1820), - [anon_sym_GT_GT] = ACTIONS(1820), - [anon_sym_AMP_GT] = ACTIONS(1820), - [anon_sym_AMP_GT_GT] = ACTIONS(1820), - [anon_sym_LT_AMP] = ACTIONS(1820), - [anon_sym_GT_AMP] = ACTIONS(1820), - [sym__special_characters] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1820), - [sym_raw_string] = ACTIONS(1820), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1820), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1820), - [anon_sym_BQUOTE] = ACTIONS(1820), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_LF] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1820), - }, - [1035] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3450), - }, - [1036] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3412), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1037] = { - [sym_file_descriptor] = ACTIONS(1952), - [sym__concat] = ACTIONS(1952), - [sym_variable_name] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_RPAREN] = ACTIONS(1954), - [anon_sym_SEMI_SEMI] = ACTIONS(1954), - [anon_sym_PIPE_AMP] = ACTIONS(1954), - [anon_sym_AMP_AMP] = ACTIONS(1954), - [anon_sym_PIPE_PIPE] = ACTIONS(1954), - [anon_sym_LT] = ACTIONS(1954), - [anon_sym_GT] = ACTIONS(1954), - [anon_sym_GT_GT] = ACTIONS(1954), - [anon_sym_AMP_GT] = ACTIONS(1954), - [anon_sym_AMP_GT_GT] = ACTIONS(1954), - [anon_sym_LT_AMP] = ACTIONS(1954), - [anon_sym_GT_AMP] = ACTIONS(1954), - [sym__special_characters] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(1954), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1954), - [anon_sym_BQUOTE] = ACTIONS(1954), - [anon_sym_LT_LPAREN] = ACTIONS(1954), - [anon_sym_GT_LPAREN] = ACTIONS(1954), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1954), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_LF] = ACTIONS(1952), - [anon_sym_AMP] = ACTIONS(1954), - }, - [1038] = { - [sym_file_descriptor] = ACTIONS(2018), - [sym__concat] = ACTIONS(2018), - [sym_variable_name] = ACTIONS(2018), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_RPAREN] = ACTIONS(2020), - [anon_sym_SEMI_SEMI] = ACTIONS(2020), - [anon_sym_PIPE_AMP] = ACTIONS(2020), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [anon_sym_LT] = ACTIONS(2020), - [anon_sym_GT] = ACTIONS(2020), - [anon_sym_GT_GT] = ACTIONS(2020), - [anon_sym_AMP_GT] = ACTIONS(2020), - [anon_sym_AMP_GT_GT] = ACTIONS(2020), - [anon_sym_LT_AMP] = ACTIONS(2020), - [anon_sym_GT_AMP] = ACTIONS(2020), - [sym__special_characters] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym_DOLLAR] = ACTIONS(2020), - [sym_raw_string] = ACTIONS(2020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2020), - [anon_sym_BQUOTE] = ACTIONS(2020), - [anon_sym_LT_LPAREN] = ACTIONS(2020), - [anon_sym_GT_LPAREN] = ACTIONS(2020), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2020), - [anon_sym_SEMI] = ACTIONS(2020), - [anon_sym_LF] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2020), - }, - [1039] = { - [sym_string] = STATE(1488), - [sym_simple_expansion] = STATE(1488), - [sym_string_expansion] = STATE(1488), - [sym_expansion] = STATE(1488), - [sym_command_substitution] = STATE(1488), - [sym_process_substitution] = STATE(1488), - [sym__special_characters] = ACTIONS(3452), - [anon_sym_DQUOTE] = ACTIONS(1157), - [anon_sym_DOLLAR] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(3452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1163), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1165), - [anon_sym_BQUOTE] = ACTIONS(1167), - [anon_sym_LT_LPAREN] = ACTIONS(1169), - [anon_sym_GT_LPAREN] = ACTIONS(1169), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3452), - }, - [1040] = { - [aux_sym_concatenation_repeat1] = STATE(1489), - [sym__concat] = ACTIONS(2217), + [aux_sym_concatenation_repeat1] = STATE(1457), + [sym__concat] = ACTIONS(419), [anon_sym_SEMI_SEMI] = ACTIONS(695), [sym__special_characters] = ACTIONS(695), [anon_sym_DQUOTE] = ACTIONS(695), @@ -36434,97 +32759,832 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(693), [anon_sym_AMP] = ACTIONS(695), }, - [1041] = { - [sym__concat] = ACTIONS(697), - [anon_sym_SEMI_SEMI] = ACTIONS(699), - [sym__special_characters] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(699), - [sym_raw_string] = ACTIONS(699), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(699), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(699), - [anon_sym_BQUOTE] = ACTIONS(699), - [anon_sym_LT_LPAREN] = ACTIONS(699), - [anon_sym_GT_LPAREN] = ACTIONS(699), + [1030] = { + [sym_do_group] = STATE(1458), + [anon_sym_do] = ACTIONS(1159), + [sym_comment] = ACTIONS(53), + }, + [1031] = { + [sym_concatenation] = STATE(1031), + [sym_string] = STATE(588), + [sym_simple_expansion] = STATE(588), + [sym_string_expansion] = STATE(588), + [sym_expansion] = STATE(588), + [sym_command_substitution] = STATE(588), + [sym_process_substitution] = STATE(588), + [aux_sym_for_statement_repeat1] = STATE(1031), + [anon_sym_SEMI_SEMI] = ACTIONS(3410), + [sym__special_characters] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3415), + [anon_sym_DOLLAR] = ACTIONS(3418), + [sym_raw_string] = ACTIONS(3421), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3427), + [anon_sym_BQUOTE] = ACTIONS(3430), + [anon_sym_LT_LPAREN] = ACTIONS(3433), + [anon_sym_GT_LPAREN] = ACTIONS(3433), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(699), - [anon_sym_SEMI] = ACTIONS(699), - [anon_sym_LF] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), + [sym_word] = ACTIONS(3421), + [anon_sym_SEMI] = ACTIONS(3410), + [anon_sym_LF] = ACTIONS(3341), + [anon_sym_AMP] = ACTIONS(3410), + }, + [1032] = { + [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(177), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_LF] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + }, + [1033] = { + [sym__terminated_statement] = STATE(1035), + [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_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1035), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_done] = ACTIONS(3436), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), + }, + [1034] = { + [sym__simple_heredoc_body] = ACTIONS(3438), + [sym__heredoc_body_beginning] = ACTIONS(3438), + [sym_file_descriptor] = ACTIONS(3438), + [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), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_GT] = ACTIONS(3440), + [anon_sym_GT_GT] = ACTIONS(3440), + [anon_sym_AMP_GT] = ACTIONS(3440), + [anon_sym_AMP_GT_GT] = ACTIONS(3440), + [anon_sym_LT_AMP] = ACTIONS(3440), + [anon_sym_GT_AMP] = ACTIONS(3440), + [anon_sym_LT_LT] = ACTIONS(3440), + [anon_sym_LT_LT_DASH] = ACTIONS(3440), + [anon_sym_LT_LT_LT] = ACTIONS(3440), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3440), + [anon_sym_LF] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3440), + }, + [1035] = { + [sym__terminated_statement] = STATE(1035), + [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_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1035), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(999), + [sym_variable_name] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1007), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_done] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(1013), + [anon_sym_case] = ACTIONS(1016), + [anon_sym_function] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_LBRACK] = ACTIONS(1028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), + [anon_sym_declare] = ACTIONS(1034), + [anon_sym_typeset] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1034), + [anon_sym_readonly] = ACTIONS(1034), + [anon_sym_local] = ACTIONS(1034), + [anon_sym_unset] = ACTIONS(1037), + [anon_sym_unsetenv] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1040), + [anon_sym_GT] = ACTIONS(1040), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1040), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1049), + [anon_sym_DOLLAR] = ACTIONS(1052), + [sym_raw_string] = ACTIONS(1055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1058), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1061), + [anon_sym_BQUOTE] = ACTIONS(1064), + [anon_sym_LT_LPAREN] = ACTIONS(1067), + [anon_sym_GT_LPAREN] = ACTIONS(1067), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1070), + }, + [1036] = { + [anon_sym_esac] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(3444), + [anon_sym_RPAREN] = ACTIONS(3444), + [anon_sym_SEMI_SEMI] = ACTIONS(3444), + [anon_sym_PIPE_AMP] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(3444), + [anon_sym_PIPE_PIPE] = ACTIONS(3444), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3444), + [anon_sym_LF] = ACTIONS(3446), + [anon_sym_AMP] = ACTIONS(3444), + }, + [1037] = { + [anon_sym_then] = ACTIONS(3448), + [sym_comment] = ACTIONS(53), + }, + [1038] = { + [sym__terminated_statement] = STATE(1461), + [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_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1461), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_fi] = ACTIONS(3450), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), + }, + [1039] = { + [anon_sym_esac] = ACTIONS(3452), + [anon_sym_PIPE] = ACTIONS(3452), + [anon_sym_RPAREN] = ACTIONS(3452), + [anon_sym_SEMI_SEMI] = ACTIONS(3452), + [anon_sym_PIPE_AMP] = ACTIONS(3452), + [anon_sym_AMP_AMP] = ACTIONS(3452), + [anon_sym_PIPE_PIPE] = ACTIONS(3452), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3452), + [anon_sym_LF] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3452), + }, + [1040] = { + [anon_sym_fi] = ACTIONS(3456), + [sym_comment] = ACTIONS(53), + }, + [1041] = { + [sym__terminated_statement] = STATE(1041), + [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_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1041), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(999), + [sym_variable_name] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1007), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1013), + [anon_sym_fi] = ACTIONS(3442), + [anon_sym_elif] = ACTIONS(3442), + [anon_sym_else] = ACTIONS(3442), + [anon_sym_case] = ACTIONS(1016), + [anon_sym_function] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_LBRACK] = ACTIONS(1028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), + [anon_sym_declare] = ACTIONS(1034), + [anon_sym_typeset] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(1034), + [anon_sym_readonly] = ACTIONS(1034), + [anon_sym_local] = ACTIONS(1034), + [anon_sym_unset] = ACTIONS(1037), + [anon_sym_unsetenv] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1040), + [anon_sym_GT] = ACTIONS(1040), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1040), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1049), + [anon_sym_DOLLAR] = ACTIONS(1052), + [sym_raw_string] = ACTIONS(1055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1058), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1061), + [anon_sym_BQUOTE] = ACTIONS(1064), + [anon_sym_LT_LPAREN] = ACTIONS(1067), + [anon_sym_GT_LPAREN] = ACTIONS(1067), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1070), }, [1042] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(3454), - [anon_sym_DOLLAR] = ACTIONS(229), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), + [sym_elif_clause] = STATE(599), + [sym_else_clause] = STATE(1463), + [aux_sym_if_statement_repeat1] = STATE(1043), + [anon_sym_fi] = ACTIONS(3456), + [anon_sym_elif] = ACTIONS(2251), + [anon_sym_else] = ACTIONS(2253), + [sym_comment] = ACTIONS(53), }, [1043] = { - [sym__concat] = ACTIONS(727), - [anon_sym_SEMI_SEMI] = ACTIONS(729), - [sym__special_characters] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(729), - [anon_sym_DOLLAR] = ACTIONS(729), - [sym_raw_string] = ACTIONS(729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(729), - [anon_sym_LT_LPAREN] = ACTIONS(729), - [anon_sym_GT_LPAREN] = ACTIONS(729), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [anon_sym_LF] = ACTIONS(727), - [anon_sym_AMP] = ACTIONS(729), + [sym_elif_clause] = STATE(599), + [aux_sym_if_statement_repeat1] = STATE(1043), + [anon_sym_fi] = ACTIONS(3458), + [anon_sym_elif] = ACTIONS(3460), + [anon_sym_else] = ACTIONS(3458), + [sym_comment] = ACTIONS(53), }, [1044] = { - [sym__concat] = ACTIONS(731), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [sym__special_characters] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), + [anon_sym_esac] = ACTIONS(3463), + [anon_sym_PIPE] = ACTIONS(3463), + [anon_sym_RPAREN] = ACTIONS(3463), + [anon_sym_SEMI_SEMI] = ACTIONS(3463), + [anon_sym_PIPE_AMP] = ACTIONS(3463), + [anon_sym_AMP_AMP] = ACTIONS(3463), + [anon_sym_PIPE_PIPE] = ACTIONS(3463), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(3463), + [anon_sym_LF] = ACTIONS(3465), + [anon_sym_AMP] = ACTIONS(3463), }, [1045] = { - [sym__concat] = ACTIONS(735), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [sym__special_characters] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), - [anon_sym_BQUOTE] = ACTIONS(737), - [anon_sym_LT_LPAREN] = ACTIONS(737), - [anon_sym_GT_LPAREN] = ACTIONS(737), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(737), + [aux_sym_case_item_repeat1] = STATE(1466), + [aux_sym_concatenation_repeat1] = STATE(1467), + [sym__concat] = ACTIONS(551), + [anon_sym_PIPE] = ACTIONS(3467), + [anon_sym_RPAREN] = ACTIONS(3469), + [sym_comment] = ACTIONS(53), }, [1046] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(3456), + [aux_sym_case_item_repeat1] = STATE(1469), + [aux_sym_concatenation_repeat1] = STATE(1467), + [sym__concat] = ACTIONS(551), + [anon_sym_PIPE] = ACTIONS(3467), + [anon_sym_RPAREN] = ACTIONS(3471), [sym_comment] = ACTIONS(53), }, [1047] = { + [anon_sym_esac] = ACTIONS(3473), + [sym_comment] = ACTIONS(53), + }, + [1048] = { + [aux_sym_case_item_repeat1] = STATE(1469), + [anon_sym_PIPE] = ACTIONS(3467), + [anon_sym_RPAREN] = ACTIONS(3471), + [sym_comment] = ACTIONS(53), + }, + [1049] = { + [sym_case_item] = STATE(1472), + [sym_last_case_item] = STATE(1471), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(1046), + [sym_simple_expansion] = STATE(1046), + [sym_string_expansion] = STATE(1046), + [sym_expansion] = STATE(1046), + [sym_command_substitution] = STATE(1046), + [sym_process_substitution] = STATE(1046), + [aux_sym_case_statement_repeat1] = STATE(1472), + [sym__special_characters] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [sym_raw_string] = ACTIONS(2259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_LT_LPAREN] = ACTIONS(151), + [anon_sym_GT_LPAREN] = ACTIONS(151), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2259), + }, + [1050] = { + [sym_case_item] = STATE(1474), + [sym_last_case_item] = STATE(1471), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(1046), + [sym_simple_expansion] = STATE(1046), + [sym_string_expansion] = STATE(1046), + [sym_expansion] = STATE(1046), + [sym_command_substitution] = STATE(1046), + [sym_process_substitution] = STATE(1046), + [aux_sym_case_statement_repeat1] = STATE(1474), + [anon_sym_esac] = ACTIONS(3475), + [sym__special_characters] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [sym_raw_string] = ACTIONS(2259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_LT_LPAREN] = ACTIONS(151), + [anon_sym_GT_LPAREN] = ACTIONS(151), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2261), + }, + [1051] = { + [anon_sym_esac] = ACTIONS(3477), + [anon_sym_PIPE] = ACTIONS(3477), + [anon_sym_RPAREN] = ACTIONS(3477), + [anon_sym_SEMI_SEMI] = ACTIONS(3477), + [anon_sym_PIPE_AMP] = ACTIONS(3477), + [anon_sym_AMP_AMP] = ACTIONS(3477), + [anon_sym_PIPE_PIPE] = ACTIONS(3477), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3477), + [anon_sym_LF] = ACTIONS(3479), + [anon_sym_AMP] = ACTIONS(3477), + }, + [1052] = { + [anon_sym_esac] = ACTIONS(3481), + [sym_comment] = ACTIONS(53), + }, + [1053] = { + [sym_case_item] = STATE(1472), + [sym_last_case_item] = STATE(1476), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(1046), + [sym_simple_expansion] = STATE(1046), + [sym_string_expansion] = STATE(1046), + [sym_expansion] = STATE(1046), + [sym_command_substitution] = STATE(1046), + [sym_process_substitution] = STATE(1046), + [aux_sym_case_statement_repeat1] = STATE(1472), + [sym__special_characters] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [sym_raw_string] = ACTIONS(2259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_LT_LPAREN] = ACTIONS(151), + [anon_sym_GT_LPAREN] = ACTIONS(151), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2259), + }, + [1054] = { + [sym_case_item] = STATE(1478), + [sym_last_case_item] = STATE(1476), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(1046), + [sym_simple_expansion] = STATE(1046), + [sym_string_expansion] = STATE(1046), + [sym_expansion] = STATE(1046), + [sym_command_substitution] = STATE(1046), + [sym_process_substitution] = STATE(1046), + [aux_sym_case_statement_repeat1] = STATE(1478), + [anon_sym_esac] = ACTIONS(3483), + [sym__special_characters] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [sym_raw_string] = ACTIONS(2259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_LT_LPAREN] = ACTIONS(151), + [anon_sym_GT_LPAREN] = ACTIONS(151), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2261), + }, + [1055] = { + [sym__concat] = ACTIONS(2710), + [anon_sym_in] = ACTIONS(2712), + [anon_sym_SEMI_SEMI] = ACTIONS(2712), + [sym__special_characters] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [anon_sym_DOLLAR] = ACTIONS(2712), + [sym_raw_string] = ACTIONS(2712), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2712), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2712), + [anon_sym_BQUOTE] = ACTIONS(2712), + [anon_sym_LT_LPAREN] = ACTIONS(2712), + [anon_sym_GT_LPAREN] = ACTIONS(2712), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2712), + [anon_sym_SEMI] = ACTIONS(2712), + [anon_sym_LF] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2712), + }, + [1056] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(3485), + [sym_comment] = ACTIONS(53), + }, + [1057] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(3487), + [sym_comment] = ACTIONS(53), + }, + [1058] = { + [anon_sym_RBRACE] = ACTIONS(3487), + [sym_comment] = ACTIONS(53), + }, + [1059] = { + [sym_concatenation] = STATE(1482), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1482), + [anon_sym_RBRACE] = ACTIONS(3489), + [anon_sym_EQ] = ACTIONS(3491), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3493), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(3491), + [anon_sym_COLON_QMARK] = ACTIONS(3491), + [anon_sym_COLON_DASH] = ACTIONS(3491), + [anon_sym_PERCENT] = ACTIONS(3491), + [anon_sym_DASH] = ACTIONS(3491), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1060] = { + [sym__concat] = ACTIONS(2788), + [anon_sym_in] = ACTIONS(2790), + [anon_sym_SEMI_SEMI] = ACTIONS(2790), + [sym__special_characters] = ACTIONS(2790), + [anon_sym_DQUOTE] = ACTIONS(2790), + [anon_sym_DOLLAR] = ACTIONS(2790), + [sym_raw_string] = ACTIONS(2790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2790), + [anon_sym_BQUOTE] = ACTIONS(2790), + [anon_sym_LT_LPAREN] = ACTIONS(2790), + [anon_sym_GT_LPAREN] = ACTIONS(2790), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_LF] = ACTIONS(2788), + [anon_sym_AMP] = ACTIONS(2790), + }, + [1061] = { + [sym_concatenation] = STATE(1485), + [sym_string] = STATE(1484), + [sym_simple_expansion] = STATE(1484), + [sym_string_expansion] = STATE(1484), + [sym_expansion] = STATE(1484), + [sym_command_substitution] = STATE(1484), + [sym_process_substitution] = STATE(1484), + [anon_sym_RBRACE] = ACTIONS(3487), + [sym__special_characters] = ACTIONS(3495), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(3497), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3497), + }, + [1062] = { + [sym__concat] = ACTIONS(2831), + [anon_sym_in] = ACTIONS(2833), + [anon_sym_SEMI_SEMI] = ACTIONS(2833), + [sym__special_characters] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_DOLLAR] = ACTIONS(2833), + [sym_raw_string] = ACTIONS(2833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2833), + [anon_sym_BQUOTE] = ACTIONS(2833), + [anon_sym_LT_LPAREN] = ACTIONS(2833), + [anon_sym_GT_LPAREN] = ACTIONS(2833), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2833), + [anon_sym_SEMI] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(2833), + }, + [1063] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3499), + }, + [1064] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3501), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1065] = { + [sym__concat] = ACTIONS(2839), + [anon_sym_in] = ACTIONS(2841), + [anon_sym_SEMI_SEMI] = ACTIONS(2841), + [sym__special_characters] = ACTIONS(2841), + [anon_sym_DQUOTE] = ACTIONS(2841), + [anon_sym_DOLLAR] = ACTIONS(2841), + [sym_raw_string] = ACTIONS(2841), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2841), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2841), + [anon_sym_BQUOTE] = ACTIONS(2841), + [anon_sym_LT_LPAREN] = ACTIONS(2841), + [anon_sym_GT_LPAREN] = ACTIONS(2841), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym_LF] = ACTIONS(2839), + [anon_sym_AMP] = ACTIONS(2841), + }, + [1066] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3503), + }, + [1067] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3505), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1068] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3507), + }, + [1069] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3487), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1070] = { + [sym_concatenation] = STATE(1492), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1492), + [anon_sym_RBRACE] = ACTIONS(3509), + [anon_sym_EQ] = ACTIONS(3511), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3513), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(3511), + [anon_sym_COLON_QMARK] = ACTIONS(3511), + [anon_sym_COLON_DASH] = ACTIONS(3511), + [anon_sym_PERCENT] = ACTIONS(3511), + [anon_sym_DASH] = ACTIONS(3511), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1071] = { + [sym__concat] = ACTIONS(2855), + [anon_sym_in] = ACTIONS(2857), + [anon_sym_SEMI_SEMI] = ACTIONS(2857), + [sym__special_characters] = ACTIONS(2857), + [anon_sym_DQUOTE] = ACTIONS(2857), + [anon_sym_DOLLAR] = ACTIONS(2857), + [sym_raw_string] = ACTIONS(2857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2857), + [anon_sym_BQUOTE] = ACTIONS(2857), + [anon_sym_LT_LPAREN] = ACTIONS(2857), + [anon_sym_GT_LPAREN] = ACTIONS(2857), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_LF] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2857), + }, + [1072] = { [sym_concatenation] = STATE(1494), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), @@ -36533,20 +33593,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), [aux_sym_expansion_repeat1] = STATE(1494), - [anon_sym_RBRACE] = ACTIONS(3458), - [anon_sym_EQ] = ACTIONS(3460), + [anon_sym_RBRACE] = ACTIONS(3515), + [anon_sym_EQ] = ACTIONS(3517), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3462), + [anon_sym_POUND] = ACTIONS(3519), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(3464), - [anon_sym_COLON] = ACTIONS(3460), - [anon_sym_COLON_QMARK] = ACTIONS(3460), - [anon_sym_COLON_DASH] = ACTIONS(3460), - [anon_sym_PERCENT] = ACTIONS(3460), - [anon_sym_DASH] = ACTIONS(3460), + [anon_sym_COLON] = ACTIONS(3517), + [anon_sym_COLON_QMARK] = ACTIONS(3517), + [anon_sym_COLON_DASH] = ACTIONS(3517), + [anon_sym_PERCENT] = ACTIONS(3517), + [anon_sym_DASH] = ACTIONS(3517), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -36554,1129 +33613,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1048] = { - [sym_subscript] = STATE(1498), - [sym_variable_name] = ACTIONS(3466), - [anon_sym_DOLLAR] = ACTIONS(3468), - [anon_sym_DASH] = ACTIONS(3468), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3470), - [anon_sym_STAR] = ACTIONS(3468), - [anon_sym_AT] = ACTIONS(3468), - [anon_sym_QMARK] = ACTIONS(3468), - [anon_sym_0] = ACTIONS(3472), - [anon_sym__] = ACTIONS(3472), - }, - [1049] = { - [sym_concatenation] = STATE(1501), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1501), - [anon_sym_RBRACE] = ACTIONS(3474), - [anon_sym_EQ] = ACTIONS(3476), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(3480), - [anon_sym_COLON] = ACTIONS(3476), - [anon_sym_COLON_QMARK] = ACTIONS(3476), - [anon_sym_COLON_DASH] = ACTIONS(3476), - [anon_sym_PERCENT] = ACTIONS(3476), - [anon_sym_DASH] = ACTIONS(3476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1050] = { - [sym_concatenation] = STATE(1504), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1504), - [anon_sym_RBRACE] = ACTIONS(3482), - [anon_sym_EQ] = ACTIONS(3484), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3486), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(3488), - [anon_sym_COLON] = ACTIONS(3484), - [anon_sym_COLON_QMARK] = ACTIONS(3484), - [anon_sym_COLON_DASH] = ACTIONS(3484), - [anon_sym_PERCENT] = ACTIONS(3484), - [anon_sym_DASH] = ACTIONS(3484), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1051] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(3490), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [sym_comment] = ACTIONS(53), - }, - [1052] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(3490), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [1053] = { - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_PIPE_AMP] = ACTIONS(925), - [anon_sym_AMP_AMP] = ACTIONS(927), - [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_BQUOTE] = ACTIONS(3490), - [sym_comment] = ACTIONS(53), - }, - [1054] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_PIPE_AMP] = ACTIONS(925), - [anon_sym_AMP_AMP] = ACTIONS(927), - [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(3490), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [1055] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(3492), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [sym_comment] = ACTIONS(53), - }, - [1056] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(3492), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [1057] = { - [sym_do_group] = STATE(1507), - [anon_sym_do] = ACTIONS(1171), - [sym_comment] = ACTIONS(53), - }, - [1058] = { - [sym_concatenation] = STATE(1058), - [sym_string] = STATE(590), - [sym_simple_expansion] = STATE(590), - [sym_string_expansion] = STATE(590), - [sym_expansion] = STATE(590), - [sym_command_substitution] = STATE(590), - [sym_process_substitution] = STATE(590), - [aux_sym_for_statement_repeat1] = STATE(1058), - [anon_sym_SEMI_SEMI] = ACTIONS(3494), - [sym__special_characters] = ACTIONS(3496), - [anon_sym_DQUOTE] = ACTIONS(3499), - [anon_sym_DOLLAR] = ACTIONS(3502), - [sym_raw_string] = ACTIONS(3505), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3508), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3511), - [anon_sym_BQUOTE] = ACTIONS(3514), - [anon_sym_LT_LPAREN] = ACTIONS(3517), - [anon_sym_GT_LPAREN] = ACTIONS(3517), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3494), - [anon_sym_LF] = ACTIONS(3383), - [anon_sym_AMP] = ACTIONS(3494), - }, - [1059] = { - [anon_sym_esac] = ACTIONS(2265), - [anon_sym_PIPE] = ACTIONS(2265), - [anon_sym_RPAREN] = ACTIONS(2265), - [anon_sym_SEMI_SEMI] = ACTIONS(2265), - [anon_sym_PIPE_AMP] = ACTIONS(2265), - [anon_sym_AMP_AMP] = ACTIONS(2265), - [anon_sym_PIPE_PIPE] = ACTIONS(2265), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2265), - [anon_sym_LF] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2265), - }, - [1060] = { - [sym__terminated_statement] = STATE(1063), - [sym_for_statement] = STATE(599), - [sym_while_statement] = STATE(599), - [sym_if_statement] = STATE(599), - [sym_case_statement] = STATE(599), - [sym_function_definition] = STATE(599), - [sym_subshell] = STATE(599), - [sym_pipeline] = STATE(599), - [sym_list] = STATE(599), - [sym_negated_command] = STATE(599), - [sym_test_command] = STATE(599), - [sym_declaration_command] = STATE(599), - [sym_unset_command] = STATE(599), - [sym_command] = STATE(599), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(600), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1063), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_done] = ACTIONS(3520), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [1061] = { - [sym_file_descriptor] = ACTIONS(951), - [sym_variable_name] = ACTIONS(951), - [anon_sym_for] = ACTIONS(953), - [anon_sym_while] = ACTIONS(953), - [anon_sym_done] = ACTIONS(953), - [anon_sym_if] = ACTIONS(953), - [anon_sym_case] = ACTIONS(953), - [anon_sym_function] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_BANG] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_LBRACK_LBRACK] = ACTIONS(951), - [anon_sym_declare] = ACTIONS(953), - [anon_sym_typeset] = ACTIONS(953), - [anon_sym_export] = ACTIONS(953), - [anon_sym_readonly] = ACTIONS(953), - [anon_sym_local] = ACTIONS(953), - [anon_sym_unset] = ACTIONS(953), - [anon_sym_unsetenv] = ACTIONS(953), - [anon_sym_LT] = ACTIONS(953), - [anon_sym_GT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_AMP_GT] = ACTIONS(953), - [anon_sym_AMP_GT_GT] = ACTIONS(951), - [anon_sym_LT_AMP] = ACTIONS(951), - [anon_sym_GT_AMP] = ACTIONS(951), - [sym__special_characters] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(953), - [sym_raw_string] = ACTIONS(951), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(951), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(951), - [anon_sym_BQUOTE] = ACTIONS(951), - [anon_sym_LT_LPAREN] = ACTIONS(951), - [anon_sym_GT_LPAREN] = ACTIONS(951), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(953), - }, - [1062] = { - [sym__simple_heredoc_body] = ACTIONS(3522), - [sym__heredoc_body_beginning] = ACTIONS(3522), - [sym_file_descriptor] = ACTIONS(3522), - [anon_sym_esac] = ACTIONS(3524), - [anon_sym_PIPE] = ACTIONS(3524), - [anon_sym_RPAREN] = ACTIONS(3524), - [anon_sym_SEMI_SEMI] = ACTIONS(3524), - [anon_sym_PIPE_AMP] = ACTIONS(3524), - [anon_sym_AMP_AMP] = ACTIONS(3524), - [anon_sym_PIPE_PIPE] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3524), - [anon_sym_GT] = ACTIONS(3524), - [anon_sym_GT_GT] = ACTIONS(3524), - [anon_sym_AMP_GT] = ACTIONS(3524), - [anon_sym_AMP_GT_GT] = ACTIONS(3524), - [anon_sym_LT_AMP] = ACTIONS(3524), - [anon_sym_GT_AMP] = ACTIONS(3524), - [anon_sym_LT_LT] = ACTIONS(3524), - [anon_sym_LT_LT_DASH] = ACTIONS(3524), - [anon_sym_LT_LT_LT] = ACTIONS(3524), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3524), - [anon_sym_LF] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3524), - }, - [1063] = { - [sym__terminated_statement] = STATE(1063), - [sym_for_statement] = STATE(599), - [sym_while_statement] = STATE(599), - [sym_if_statement] = STATE(599), - [sym_case_statement] = STATE(599), - [sym_function_definition] = STATE(599), - [sym_subshell] = STATE(599), - [sym_pipeline] = STATE(599), - [sym_list] = STATE(599), - [sym_negated_command] = STATE(599), - [sym_test_command] = STATE(599), - [sym_declaration_command] = STATE(599), - [sym_unset_command] = STATE(599), - [sym_command] = STATE(599), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(600), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1063), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(999), - [sym_variable_name] = ACTIONS(1002), - [anon_sym_for] = ACTIONS(1007), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_done] = ACTIONS(3526), - [anon_sym_if] = ACTIONS(1013), - [anon_sym_case] = ACTIONS(1016), - [anon_sym_function] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1022), - [anon_sym_BANG] = ACTIONS(1025), - [anon_sym_LBRACK] = ACTIONS(1028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_declare] = ACTIONS(1034), - [anon_sym_typeset] = ACTIONS(1034), - [anon_sym_export] = ACTIONS(1034), - [anon_sym_readonly] = ACTIONS(1034), - [anon_sym_local] = ACTIONS(1034), - [anon_sym_unset] = ACTIONS(1037), - [anon_sym_unsetenv] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1040), - [anon_sym_GT] = ACTIONS(1040), - [anon_sym_GT_GT] = ACTIONS(1043), - [anon_sym_AMP_GT] = ACTIONS(1040), - [anon_sym_AMP_GT_GT] = ACTIONS(1043), - [anon_sym_LT_AMP] = ACTIONS(1043), - [anon_sym_GT_AMP] = ACTIONS(1043), - [sym__special_characters] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1049), - [anon_sym_DOLLAR] = ACTIONS(1052), - [sym_raw_string] = ACTIONS(1055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1058), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1061), - [anon_sym_BQUOTE] = ACTIONS(1064), - [anon_sym_LT_LPAREN] = ACTIONS(1067), - [anon_sym_GT_LPAREN] = ACTIONS(1067), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1070), - }, - [1064] = { - [anon_sym_esac] = ACTIONS(3528), - [anon_sym_PIPE] = ACTIONS(3528), - [anon_sym_RPAREN] = ACTIONS(3528), - [anon_sym_SEMI_SEMI] = ACTIONS(3528), - [anon_sym_PIPE_AMP] = ACTIONS(3528), - [anon_sym_AMP_AMP] = ACTIONS(3528), - [anon_sym_PIPE_PIPE] = ACTIONS(3528), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3528), - [anon_sym_LF] = ACTIONS(3530), - [anon_sym_AMP] = ACTIONS(3528), - }, - [1065] = { - [anon_sym_then] = ACTIONS(3532), - [sym_comment] = ACTIONS(53), - }, - [1066] = { - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(3534), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3534), - [anon_sym_LF] = ACTIONS(3536), - [anon_sym_AMP] = ACTIONS(3534), - }, - [1067] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(3534), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(3534), - [anon_sym_LF] = ACTIONS(3536), - [anon_sym_AMP] = ACTIONS(3534), - }, - [1068] = { - [sym__terminated_statement] = STATE(1511), - [sym_for_statement] = STATE(1066), - [sym_while_statement] = STATE(1066), - [sym_if_statement] = STATE(1066), - [sym_case_statement] = STATE(1066), - [sym_function_definition] = STATE(1066), - [sym_subshell] = STATE(1066), - [sym_pipeline] = STATE(1066), - [sym_list] = STATE(1066), - [sym_negated_command] = STATE(1066), - [sym_test_command] = STATE(1066), - [sym_declaration_command] = STATE(1066), - [sym_unset_command] = STATE(1066), - [sym_command] = STATE(1066), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(1067), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1511), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(3538), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [1069] = { - [sym_file_descriptor] = ACTIONS(951), - [sym_variable_name] = ACTIONS(951), - [anon_sym_for] = ACTIONS(953), - [anon_sym_while] = ACTIONS(953), - [anon_sym_if] = ACTIONS(953), - [anon_sym_fi] = ACTIONS(953), - [anon_sym_elif] = ACTIONS(953), - [anon_sym_else] = ACTIONS(953), - [anon_sym_case] = ACTIONS(953), - [anon_sym_function] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_BANG] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_LBRACK_LBRACK] = ACTIONS(951), - [anon_sym_declare] = ACTIONS(953), - [anon_sym_typeset] = ACTIONS(953), - [anon_sym_export] = ACTIONS(953), - [anon_sym_readonly] = ACTIONS(953), - [anon_sym_local] = ACTIONS(953), - [anon_sym_unset] = ACTIONS(953), - [anon_sym_unsetenv] = ACTIONS(953), - [anon_sym_LT] = ACTIONS(953), - [anon_sym_GT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_AMP_GT] = ACTIONS(953), - [anon_sym_AMP_GT_GT] = ACTIONS(951), - [anon_sym_LT_AMP] = ACTIONS(951), - [anon_sym_GT_AMP] = ACTIONS(951), - [sym__special_characters] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(953), - [sym_raw_string] = ACTIONS(951), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(951), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(951), - [anon_sym_BQUOTE] = ACTIONS(951), - [anon_sym_LT_LPAREN] = ACTIONS(951), - [anon_sym_GT_LPAREN] = ACTIONS(951), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(953), - }, - [1070] = { - [anon_sym_esac] = ACTIONS(3540), - [anon_sym_PIPE] = ACTIONS(3540), - [anon_sym_RPAREN] = ACTIONS(3540), - [anon_sym_SEMI_SEMI] = ACTIONS(3540), - [anon_sym_PIPE_AMP] = ACTIONS(3540), - [anon_sym_AMP_AMP] = ACTIONS(3540), - [anon_sym_PIPE_PIPE] = ACTIONS(3540), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3540), - [anon_sym_LF] = ACTIONS(3542), - [anon_sym_AMP] = ACTIONS(3540), - }, - [1071] = { - [anon_sym_fi] = ACTIONS(3544), - [sym_comment] = ACTIONS(53), - }, - [1072] = { - [sym__terminated_statement] = STATE(1072), - [sym_for_statement] = STATE(607), - [sym_while_statement] = STATE(607), - [sym_if_statement] = STATE(607), - [sym_case_statement] = STATE(607), - [sym_function_definition] = STATE(607), - [sym_subshell] = STATE(607), - [sym_pipeline] = STATE(607), - [sym_list] = STATE(607), - [sym_negated_command] = STATE(607), - [sym_test_command] = STATE(607), - [sym_declaration_command] = STATE(607), - [sym_unset_command] = STATE(607), - [sym_command] = STATE(607), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(610), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1072), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(999), - [sym_variable_name] = ACTIONS(1002), - [anon_sym_for] = ACTIONS(1007), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1013), - [anon_sym_fi] = ACTIONS(3526), - [anon_sym_elif] = ACTIONS(3526), - [anon_sym_else] = ACTIONS(3526), - [anon_sym_case] = ACTIONS(1016), - [anon_sym_function] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1022), - [anon_sym_BANG] = ACTIONS(1025), - [anon_sym_LBRACK] = ACTIONS(1028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_declare] = ACTIONS(1034), - [anon_sym_typeset] = ACTIONS(1034), - [anon_sym_export] = ACTIONS(1034), - [anon_sym_readonly] = ACTIONS(1034), - [anon_sym_local] = ACTIONS(1034), - [anon_sym_unset] = ACTIONS(1037), - [anon_sym_unsetenv] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1040), - [anon_sym_GT] = ACTIONS(1040), - [anon_sym_GT_GT] = ACTIONS(1043), - [anon_sym_AMP_GT] = ACTIONS(1040), - [anon_sym_AMP_GT_GT] = ACTIONS(1043), - [anon_sym_LT_AMP] = ACTIONS(1043), - [anon_sym_GT_AMP] = ACTIONS(1043), - [sym__special_characters] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1049), - [anon_sym_DOLLAR] = ACTIONS(1052), - [sym_raw_string] = ACTIONS(1055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1058), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1061), - [anon_sym_BQUOTE] = ACTIONS(1064), - [anon_sym_LT_LPAREN] = ACTIONS(1067), - [anon_sym_GT_LPAREN] = ACTIONS(1067), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1070), - }, [1073] = { - [sym_elif_clause] = STATE(608), - [sym_else_clause] = STATE(1513), - [aux_sym_if_statement_repeat1] = STATE(1074), - [anon_sym_fi] = ACTIONS(3544), - [anon_sym_elif] = ACTIONS(2293), - [anon_sym_else] = ACTIONS(2295), - [sym_comment] = ACTIONS(53), + [sym_file_redirect] = STATE(1495), + [sym_file_descriptor] = ACTIONS(1231), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_SEMI_SEMI] = ACTIONS(3521), + [anon_sym_PIPE_AMP] = ACTIONS(3521), + [anon_sym_AMP_AMP] = ACTIONS(3521), + [anon_sym_PIPE_PIPE] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1235), + [anon_sym_LT_AMP] = ACTIONS(1235), + [anon_sym_GT_AMP] = ACTIONS(1235), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3521), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3521), }, [1074] = { - [sym_elif_clause] = STATE(608), - [aux_sym_if_statement_repeat1] = STATE(1074), - [anon_sym_fi] = ACTIONS(3546), - [anon_sym_elif] = ACTIONS(3548), - [anon_sym_else] = ACTIONS(3546), - [sym_comment] = ACTIONS(53), - }, - [1075] = { - [anon_sym_esac] = ACTIONS(3551), - [anon_sym_PIPE] = ACTIONS(3551), - [anon_sym_RPAREN] = ACTIONS(3551), - [anon_sym_SEMI_SEMI] = ACTIONS(3551), - [anon_sym_PIPE_AMP] = ACTIONS(3551), - [anon_sym_AMP_AMP] = ACTIONS(3551), - [anon_sym_PIPE_PIPE] = ACTIONS(3551), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3551), - [anon_sym_LF] = ACTIONS(3553), - [anon_sym_AMP] = ACTIONS(3551), - }, - [1076] = { - [aux_sym_case_item_repeat1] = STATE(1516), - [aux_sym_concatenation_repeat1] = STATE(1517), - [sym__concat] = ACTIONS(551), - [anon_sym_PIPE] = ACTIONS(3555), - [anon_sym_RPAREN] = ACTIONS(3557), - [sym_comment] = ACTIONS(53), - }, - [1077] = { - [aux_sym_case_item_repeat1] = STATE(1519), - [aux_sym_concatenation_repeat1] = STATE(1517), - [sym__concat] = ACTIONS(551), - [anon_sym_PIPE] = ACTIONS(3555), - [anon_sym_RPAREN] = ACTIONS(3559), - [sym_comment] = ACTIONS(53), - }, - [1078] = { - [anon_sym_esac] = ACTIONS(3561), - [sym_comment] = ACTIONS(53), - }, - [1079] = { - [aux_sym_case_item_repeat1] = STATE(1519), - [anon_sym_PIPE] = ACTIONS(3555), - [anon_sym_RPAREN] = ACTIONS(3559), - [sym_comment] = ACTIONS(53), - }, - [1080] = { - [sym_case_item] = STATE(1522), - [sym_last_case_item] = STATE(1521), - [sym_concatenation] = STATE(1079), - [sym_string] = STATE(1077), - [sym_simple_expansion] = STATE(1077), - [sym_string_expansion] = STATE(1077), - [sym_expansion] = STATE(1077), - [sym_command_substitution] = STATE(1077), - [sym_process_substitution] = STATE(1077), - [aux_sym_case_statement_repeat1] = STATE(1522), - [sym__special_characters] = ACTIONS(2299), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2301), - }, - [1081] = { - [sym_case_item] = STATE(1524), - [sym_last_case_item] = STATE(1521), - [sym_concatenation] = STATE(1079), - [sym_string] = STATE(1077), - [sym_simple_expansion] = STATE(1077), - [sym_string_expansion] = STATE(1077), - [sym_expansion] = STATE(1077), - [sym_command_substitution] = STATE(1077), - [sym_process_substitution] = STATE(1077), - [aux_sym_case_statement_repeat1] = STATE(1524), - [anon_sym_esac] = ACTIONS(3563), - [sym__special_characters] = ACTIONS(2299), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2303), - }, - [1082] = { - [anon_sym_esac] = ACTIONS(3565), - [anon_sym_PIPE] = ACTIONS(3565), - [anon_sym_RPAREN] = ACTIONS(3565), - [anon_sym_SEMI_SEMI] = ACTIONS(3565), - [anon_sym_PIPE_AMP] = ACTIONS(3565), - [anon_sym_AMP_AMP] = ACTIONS(3565), - [anon_sym_PIPE_PIPE] = ACTIONS(3565), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3565), - [anon_sym_LF] = ACTIONS(3567), - [anon_sym_AMP] = ACTIONS(3565), - }, - [1083] = { - [anon_sym_esac] = ACTIONS(3569), - [sym_comment] = ACTIONS(53), - }, - [1084] = { - [sym_case_item] = STATE(1522), - [sym_last_case_item] = STATE(1526), - [sym_concatenation] = STATE(1079), - [sym_string] = STATE(1077), - [sym_simple_expansion] = STATE(1077), - [sym_string_expansion] = STATE(1077), - [sym_expansion] = STATE(1077), - [sym_command_substitution] = STATE(1077), - [sym_process_substitution] = STATE(1077), - [aux_sym_case_statement_repeat1] = STATE(1522), - [sym__special_characters] = ACTIONS(2299), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2301), - }, - [1085] = { - [sym_case_item] = STATE(1528), - [sym_last_case_item] = STATE(1526), - [sym_concatenation] = STATE(1079), - [sym_string] = STATE(1077), - [sym_simple_expansion] = STATE(1077), - [sym_string_expansion] = STATE(1077), - [sym_expansion] = STATE(1077), - [sym_command_substitution] = STATE(1077), - [sym_process_substitution] = STATE(1077), - [aux_sym_case_statement_repeat1] = STATE(1528), - [anon_sym_esac] = ACTIONS(3571), - [sym__special_characters] = ACTIONS(2299), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2303), - }, - [1086] = { - [sym__concat] = ACTIONS(2752), - [anon_sym_in] = ACTIONS(2754), - [anon_sym_SEMI_SEMI] = ACTIONS(2754), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_LF] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2754), - }, - [1087] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(3573), - [sym_comment] = ACTIONS(53), - }, - [1088] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(3575), - [sym_comment] = ACTIONS(53), - }, - [1089] = { - [anon_sym_RBRACE] = ACTIONS(3575), - [sym_comment] = ACTIONS(53), - }, - [1090] = { - [sym_concatenation] = STATE(1532), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1532), - [anon_sym_RBRACE] = ACTIONS(3577), - [anon_sym_EQ] = ACTIONS(3579), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3581), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3579), - [anon_sym_COLON_QMARK] = ACTIONS(3579), - [anon_sym_COLON_DASH] = ACTIONS(3579), - [anon_sym_PERCENT] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3579), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1091] = { - [sym__concat] = ACTIONS(2830), - [anon_sym_in] = ACTIONS(2832), - [anon_sym_SEMI_SEMI] = ACTIONS(2832), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_LF] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2832), - }, - [1092] = { - [sym_concatenation] = STATE(1535), - [sym_string] = STATE(1534), - [sym_simple_expansion] = STATE(1534), - [sym_string_expansion] = STATE(1534), - [sym_expansion] = STATE(1534), - [sym_command_substitution] = STATE(1534), - [sym_process_substitution] = STATE(1534), - [anon_sym_RBRACE] = ACTIONS(3575), - [sym__special_characters] = ACTIONS(3583), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(3585), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3585), - }, - [1093] = { - [sym__concat] = ACTIONS(2873), - [anon_sym_in] = ACTIONS(2875), - [anon_sym_SEMI_SEMI] = ACTIONS(2875), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym_LF] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2875), - }, - [1094] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3587), - }, - [1095] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3589), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1096] = { - [sym__concat] = ACTIONS(2881), - [anon_sym_in] = ACTIONS(2883), - [anon_sym_SEMI_SEMI] = ACTIONS(2883), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym_LF] = ACTIONS(2881), - [anon_sym_AMP] = ACTIONS(2883), - }, - [1097] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3591), - }, - [1098] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3593), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1099] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3595), - }, - [1100] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3575), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1101] = { - [sym_concatenation] = STATE(1542), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1542), - [anon_sym_RBRACE] = ACTIONS(3597), - [anon_sym_EQ] = ACTIONS(3599), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3601), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3599), - [anon_sym_COLON_QMARK] = ACTIONS(3599), - [anon_sym_COLON_DASH] = ACTIONS(3599), - [anon_sym_PERCENT] = ACTIONS(3599), - [anon_sym_DASH] = ACTIONS(3599), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1102] = { - [sym__concat] = ACTIONS(2897), - [anon_sym_in] = ACTIONS(2899), - [anon_sym_SEMI_SEMI] = ACTIONS(2899), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym_LF] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2899), - }, - [1103] = { - [sym_concatenation] = STATE(1544), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1544), - [anon_sym_RBRACE] = ACTIONS(3603), - [anon_sym_EQ] = ACTIONS(3605), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3607), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3605), - [anon_sym_COLON_QMARK] = ACTIONS(3605), - [anon_sym_COLON_DASH] = ACTIONS(3605), - [anon_sym_PERCENT] = ACTIONS(3605), - [anon_sym_DASH] = ACTIONS(3605), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1104] = { - [sym_file_redirect] = STATE(1545), - [sym_file_descriptor] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(3609), - [anon_sym_SEMI_SEMI] = ACTIONS(3609), - [anon_sym_PIPE_AMP] = ACTIONS(3609), - [anon_sym_AMP_AMP] = ACTIONS(3609), - [anon_sym_PIPE_PIPE] = ACTIONS(3609), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_GT_GT] = ACTIONS(1247), - [anon_sym_AMP_GT] = ACTIONS(1247), - [anon_sym_AMP_GT_GT] = ACTIONS(1247), - [anon_sym_LT_AMP] = ACTIONS(1247), - [anon_sym_GT_AMP] = ACTIONS(1247), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3609), - [anon_sym_LF] = ACTIONS(3611), - [anon_sym_AMP] = ACTIONS(3609), - }, - [1105] = { [sym_file_descriptor] = ACTIONS(951), [sym_variable_name] = ACTIONS(951), [anon_sym_for] = ACTIONS(953), @@ -37715,44 +33672,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(953), }, - [1106] = { - [sym_file_descriptor] = ACTIONS(3613), - [anon_sym_esac] = ACTIONS(3615), - [anon_sym_PIPE] = ACTIONS(3615), - [anon_sym_RPAREN] = ACTIONS(3615), - [anon_sym_SEMI_SEMI] = ACTIONS(3615), - [anon_sym_PIPE_AMP] = ACTIONS(3615), - [anon_sym_AMP_AMP] = ACTIONS(3615), - [anon_sym_PIPE_PIPE] = ACTIONS(3615), - [anon_sym_LT] = ACTIONS(3615), - [anon_sym_GT] = ACTIONS(3615), - [anon_sym_GT_GT] = ACTIONS(3615), - [anon_sym_AMP_GT] = ACTIONS(3615), - [anon_sym_AMP_GT_GT] = ACTIONS(3615), - [anon_sym_LT_AMP] = ACTIONS(3615), - [anon_sym_GT_AMP] = ACTIONS(3615), + [1075] = { + [sym_file_descriptor] = ACTIONS(3525), + [anon_sym_esac] = ACTIONS(3527), + [anon_sym_PIPE] = ACTIONS(3527), + [anon_sym_RPAREN] = ACTIONS(3527), + [anon_sym_SEMI_SEMI] = ACTIONS(3527), + [anon_sym_PIPE_AMP] = ACTIONS(3527), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_PIPE_PIPE] = ACTIONS(3527), + [anon_sym_LT] = ACTIONS(3527), + [anon_sym_GT] = ACTIONS(3527), + [anon_sym_GT_GT] = ACTIONS(3527), + [anon_sym_AMP_GT] = ACTIONS(3527), + [anon_sym_AMP_GT_GT] = ACTIONS(3527), + [anon_sym_LT_AMP] = ACTIONS(3527), + [anon_sym_GT_AMP] = ACTIONS(3527), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3615), - [anon_sym_LF] = ACTIONS(3613), - [anon_sym_AMP] = ACTIONS(3615), + [anon_sym_SEMI] = ACTIONS(3527), + [anon_sym_LF] = ACTIONS(3525), + [anon_sym_AMP] = ACTIONS(3527), }, - [1107] = { - [sym__terminated_statement] = STATE(1107), - [sym_for_statement] = STATE(638), - [sym_while_statement] = STATE(638), - [sym_if_statement] = STATE(638), - [sym_case_statement] = STATE(638), - [sym_function_definition] = STATE(638), - [sym_subshell] = STATE(638), - [sym_pipeline] = STATE(638), - [sym_list] = STATE(638), - [sym_negated_command] = STATE(638), - [sym_test_command] = STATE(638), - [sym_declaration_command] = STATE(638), - [sym_unset_command] = STATE(638), - [sym_command] = STATE(638), + [1076] = { + [sym__terminated_statement] = STATE(1076), + [sym_for_statement] = STATE(628), + [sym_while_statement] = STATE(628), + [sym_if_statement] = STATE(628), + [sym_case_statement] = STATE(628), + [sym_function_definition] = STATE(628), + [sym_subshell] = STATE(628), + [sym_pipeline] = STATE(628), + [sym_list] = STATE(628), + [sym_negated_command] = STATE(628), + [sym_test_command] = STATE(628), + [sym_declaration_command] = STATE(628), + [sym_unset_command] = STATE(628), + [sym_command] = STATE(628), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(639), + [sym_variable_assignment] = STATE(629), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -37762,7 +33719,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1107), + [aux_sym_program_repeat1] = STATE(1076), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(999), [sym_variable_name] = ACTIONS(1002), @@ -37802,28 +33759,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(1070), }, - [1108] = { - [sym_concatenation] = STATE(1548), - [sym_string] = STATE(1547), - [sym_simple_expansion] = STATE(1547), - [sym_string_expansion] = STATE(1547), - [sym_expansion] = STATE(1547), - [sym_command_substitution] = STATE(1547), - [sym_process_substitution] = STATE(1547), - [sym__special_characters] = ACTIONS(3617), + [1077] = { + [sym_concatenation] = STATE(1498), + [sym_string] = STATE(1497), + [sym_simple_expansion] = STATE(1497), + [sym_string_expansion] = STATE(1497), + [sym_expansion] = STATE(1497), + [sym_command_substitution] = STATE(1497), + [sym_process_substitution] = STATE(1497), + [sym__special_characters] = ACTIONS(3529), [anon_sym_DQUOTE] = ACTIONS(629), [anon_sym_DOLLAR] = ACTIONS(189), - [sym_raw_string] = ACTIONS(3619), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1533), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1535), - [anon_sym_BQUOTE] = ACTIONS(1537), - [anon_sym_LT_LPAREN] = ACTIONS(1539), - [anon_sym_GT_LPAREN] = ACTIONS(1539), + [sym_raw_string] = ACTIONS(3531), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1521), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1523), + [anon_sym_BQUOTE] = ACTIONS(1525), + [anon_sym_LT_LPAREN] = ACTIONS(1527), + [anon_sym_GT_LPAREN] = ACTIONS(1527), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3619), + [sym_word] = ACTIONS(3531), }, - [1109] = { - [aux_sym_concatenation_repeat1] = STATE(1549), + [1078] = { + [aux_sym_concatenation_repeat1] = STATE(1499), [sym__concat] = ACTIONS(621), [anon_sym_PIPE] = ACTIONS(665), [anon_sym_SEMI_SEMI] = ACTIONS(665), @@ -37835,8 +33792,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(661), [anon_sym_AMP] = ACTIONS(665), }, - [1110] = { - [aux_sym_concatenation_repeat1] = STATE(1549), + [1079] = { + [aux_sym_concatenation_repeat1] = STATE(1499), [sym__concat] = ACTIONS(621), [anon_sym_PIPE] = ACTIONS(679), [anon_sym_SEMI_SEMI] = ACTIONS(679), @@ -37848,7 +33805,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(677), [anon_sym_AMP] = ACTIONS(679), }, - [1111] = { + [1080] = { [anon_sym_esac] = ACTIONS(679), [anon_sym_PIPE] = ACTIONS(679), [anon_sym_RPAREN] = ACTIONS(679), @@ -37861,8 +33818,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(677), [anon_sym_AMP] = ACTIONS(679), }, - [1112] = { - [aux_sym_concatenation_repeat1] = STATE(1550), + [1081] = { + [aux_sym_concatenation_repeat1] = STATE(1500), [sym_file_descriptor] = ACTIONS(693), [sym__concat] = ACTIONS(1131), [sym_variable_name] = ACTIONS(693), @@ -37894,21 +33851,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(693), [anon_sym_AMP] = ACTIONS(695), }, - [1113] = { - [sym_file_redirect] = STATE(667), - [sym_heredoc_redirect] = STATE(667), - [sym_heredoc_body] = STATE(1064), - [sym_herestring_redirect] = STATE(667), - [aux_sym_while_statement_repeat1] = STATE(667), + [1082] = { + [sym_file_redirect] = STATE(657), + [sym_heredoc_redirect] = STATE(657), + [sym_heredoc_body] = STATE(1036), + [sym_herestring_redirect] = STATE(657), + [aux_sym_while_statement_repeat1] = STATE(657), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), [sym_file_descriptor] = ACTIONS(483), - [anon_sym_PIPE] = ACTIONS(2273), - [anon_sym_RPAREN] = ACTIONS(2273), - [anon_sym_SEMI_SEMI] = ACTIONS(2273), - [anon_sym_PIPE_AMP] = ACTIONS(2273), - [anon_sym_AMP_AMP] = ACTIONS(2273), - [anon_sym_PIPE_PIPE] = ACTIONS(2273), + [anon_sym_PIPE] = ACTIONS(2235), + [anon_sym_RPAREN] = ACTIONS(2235), + [anon_sym_SEMI_SEMI] = ACTIONS(2235), + [anon_sym_PIPE_AMP] = ACTIONS(2235), + [anon_sym_AMP_AMP] = ACTIONS(2235), + [anon_sym_PIPE_PIPE] = ACTIONS(2235), [anon_sym_LT] = ACTIONS(487), [anon_sym_GT] = ACTIONS(487), [anon_sym_GT_GT] = ACTIONS(487), @@ -37920,124 +33877,124 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(349), [anon_sym_LT_LT_LT] = ACTIONS(489), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2273), - [anon_sym_LF] = ACTIONS(2275), - [anon_sym_AMP] = ACTIONS(2273), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_LF] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(2235), }, - [1114] = { - [sym_compound_statement] = STATE(1551), + [1083] = { + [sym_compound_statement] = STATE(1501), [anon_sym_LBRACE] = ACTIONS(455), [sym_comment] = ACTIONS(53), }, - [1115] = { - [anon_sym_LT] = ACTIONS(3621), - [anon_sym_GT] = ACTIONS(3621), - [anon_sym_GT_GT] = ACTIONS(3623), - [anon_sym_AMP_GT] = ACTIONS(3621), - [anon_sym_AMP_GT_GT] = ACTIONS(3623), - [anon_sym_LT_AMP] = ACTIONS(3623), - [anon_sym_GT_AMP] = ACTIONS(3623), + [1084] = { + [anon_sym_LT] = ACTIONS(3533), + [anon_sym_GT] = ACTIONS(3533), + [anon_sym_GT_GT] = ACTIONS(3535), + [anon_sym_AMP_GT] = ACTIONS(3533), + [anon_sym_AMP_GT_GT] = ACTIONS(3535), + [anon_sym_LT_AMP] = ACTIONS(3535), + [anon_sym_GT_AMP] = ACTIONS(3535), [sym_comment] = ACTIONS(53), }, - [1116] = { - [sym_concatenation] = STATE(1111), - [sym_string] = STATE(1554), - [sym_simple_expansion] = STATE(1554), - [sym_string_expansion] = STATE(1554), - [sym_expansion] = STATE(1554), - [sym_command_substitution] = STATE(1554), - [sym_process_substitution] = STATE(1554), - [sym__special_characters] = ACTIONS(3625), + [1085] = { + [sym_concatenation] = STATE(1080), + [sym_string] = STATE(1504), + [sym_simple_expansion] = STATE(1504), + [sym_string_expansion] = STATE(1504), + [sym_expansion] = STATE(1504), + [sym_command_substitution] = STATE(1504), + [sym_process_substitution] = STATE(1504), + [sym__special_characters] = ACTIONS(3537), [anon_sym_DQUOTE] = ACTIONS(629), [anon_sym_DOLLAR] = ACTIONS(189), - [sym_raw_string] = ACTIONS(3627), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1533), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1535), - [anon_sym_BQUOTE] = ACTIONS(1537), - [anon_sym_LT_LPAREN] = ACTIONS(1539), - [anon_sym_GT_LPAREN] = ACTIONS(1539), + [sym_raw_string] = ACTIONS(3539), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1521), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1523), + [anon_sym_BQUOTE] = ACTIONS(1525), + [anon_sym_LT_LPAREN] = ACTIONS(1527), + [anon_sym_GT_LPAREN] = ACTIONS(1527), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3627), + [sym_word] = ACTIONS(3539), }, - [1117] = { - [anon_sym_LT] = ACTIONS(3629), - [anon_sym_GT] = ACTIONS(3629), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_AMP_GT] = ACTIONS(3629), - [anon_sym_AMP_GT_GT] = ACTIONS(3631), - [anon_sym_LT_AMP] = ACTIONS(3631), - [anon_sym_GT_AMP] = ACTIONS(3631), + [1086] = { + [anon_sym_LT] = ACTIONS(3541), + [anon_sym_GT] = ACTIONS(3541), + [anon_sym_GT_GT] = ACTIONS(3543), + [anon_sym_AMP_GT] = ACTIONS(3541), + [anon_sym_AMP_GT_GT] = ACTIONS(3543), + [anon_sym_LT_AMP] = ACTIONS(3543), + [anon_sym_GT_AMP] = ACTIONS(3543), [sym_comment] = ACTIONS(53), }, - [1118] = { - [sym_concatenation] = STATE(1161), - [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), - [sym__special_characters] = ACTIONS(3633), - [anon_sym_DQUOTE] = ACTIONS(2500), - [anon_sym_DOLLAR] = ACTIONS(2502), - [sym_raw_string] = ACTIONS(3635), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2506), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2508), - [anon_sym_BQUOTE] = ACTIONS(2510), - [anon_sym_LT_LPAREN] = ACTIONS(2512), - [anon_sym_GT_LPAREN] = ACTIONS(2512), + [1087] = { + [sym_concatenation] = STATE(1130), + [sym_string] = STATE(1507), + [sym_simple_expansion] = STATE(1507), + [sym_string_expansion] = STATE(1507), + [sym_expansion] = STATE(1507), + [sym_command_substitution] = STATE(1507), + [sym_process_substitution] = STATE(1507), + [sym__special_characters] = ACTIONS(3545), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_DOLLAR] = ACTIONS(2460), + [sym_raw_string] = ACTIONS(3547), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2466), + [anon_sym_BQUOTE] = ACTIONS(2468), + [anon_sym_LT_LPAREN] = ACTIONS(2470), + [anon_sym_GT_LPAREN] = ACTIONS(2470), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3635), + [sym_word] = ACTIONS(3547), }, - [1119] = { - [sym_concatenation] = STATE(1165), - [sym_string] = STATE(1559), - [sym_simple_expansion] = STATE(1559), - [sym_string_expansion] = STATE(1559), - [sym_expansion] = STATE(1559), - [sym_command_substitution] = STATE(1559), - [sym_process_substitution] = STATE(1559), - [sym__special_characters] = ACTIONS(3637), - [anon_sym_DQUOTE] = ACTIONS(2500), - [anon_sym_DOLLAR] = ACTIONS(2502), - [sym_raw_string] = ACTIONS(3639), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2506), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2508), - [anon_sym_BQUOTE] = ACTIONS(2510), - [anon_sym_LT_LPAREN] = ACTIONS(2512), - [anon_sym_GT_LPAREN] = ACTIONS(2512), + [1088] = { + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(1509), + [sym_simple_expansion] = STATE(1509), + [sym_string_expansion] = STATE(1509), + [sym_expansion] = STATE(1509), + [sym_command_substitution] = STATE(1509), + [sym_process_substitution] = STATE(1509), + [sym__special_characters] = ACTIONS(3549), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_DOLLAR] = ACTIONS(2460), + [sym_raw_string] = ACTIONS(3551), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2466), + [anon_sym_BQUOTE] = ACTIONS(2468), + [anon_sym_LT_LPAREN] = ACTIONS(2470), + [anon_sym_GT_LPAREN] = ACTIONS(2470), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3639), + [sym_word] = ACTIONS(3551), }, - [1120] = { - [sym_file_redirect] = STATE(1560), - [sym_heredoc_redirect] = STATE(1560), - [sym_herestring_redirect] = STATE(1560), - [aux_sym_while_statement_repeat1] = STATE(1560), - [sym_file_descriptor] = ACTIONS(2386), - [anon_sym_PIPE] = ACTIONS(2520), - [anon_sym_RPAREN] = ACTIONS(2520), - [anon_sym_SEMI_SEMI] = ACTIONS(2520), - [anon_sym_PIPE_AMP] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_LT] = ACTIONS(2388), - [anon_sym_GT] = ACTIONS(2388), - [anon_sym_GT_GT] = ACTIONS(2388), - [anon_sym_AMP_GT] = ACTIONS(2388), - [anon_sym_AMP_GT_GT] = ACTIONS(2388), - [anon_sym_LT_AMP] = ACTIONS(2388), - [anon_sym_GT_AMP] = ACTIONS(2388), - [anon_sym_LT_LT] = ACTIONS(1357), - [anon_sym_LT_LT_DASH] = ACTIONS(1357), - [anon_sym_LT_LT_LT] = ACTIONS(2390), + [1089] = { + [sym_file_redirect] = STATE(1510), + [sym_heredoc_redirect] = STATE(1510), + [sym_herestring_redirect] = STATE(1510), + [aux_sym_while_statement_repeat1] = STATE(1510), + [sym_file_descriptor] = ACTIONS(2344), + [anon_sym_PIPE] = ACTIONS(2478), + [anon_sym_RPAREN] = ACTIONS(2478), + [anon_sym_SEMI_SEMI] = ACTIONS(2478), + [anon_sym_PIPE_AMP] = ACTIONS(2478), + [anon_sym_AMP_AMP] = ACTIONS(2478), + [anon_sym_PIPE_PIPE] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2346), + [anon_sym_GT] = ACTIONS(2346), + [anon_sym_GT_GT] = ACTIONS(2346), + [anon_sym_AMP_GT] = ACTIONS(2346), + [anon_sym_AMP_GT_GT] = ACTIONS(2346), + [anon_sym_LT_AMP] = ACTIONS(2346), + [anon_sym_GT_AMP] = ACTIONS(2346), + [anon_sym_LT_LT] = ACTIONS(1345), + [anon_sym_LT_LT_DASH] = ACTIONS(1345), + [anon_sym_LT_LT_LT] = ACTIONS(2348), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_LF] = ACTIONS(2522), - [anon_sym_AMP] = ACTIONS(2520), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_LF] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2478), }, - [1121] = { - [aux_sym_concatenation_repeat1] = STATE(651), + [1090] = { + [aux_sym_concatenation_repeat1] = STATE(641), [sym__concat] = ACTIONS(581), [sym_variable_name] = ACTIONS(1129), [anon_sym_PIPE] = ACTIONS(1133), @@ -38062,8 +34019,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(1133), }, - [1122] = { - [aux_sym_concatenation_repeat1] = STATE(651), + [1091] = { + [aux_sym_concatenation_repeat1] = STATE(641), [sym__concat] = ACTIONS(581), [sym_variable_name] = ACTIONS(1107), [anon_sym_PIPE] = ACTIONS(1109), @@ -38088,80 +34045,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1107), [anon_sym_AMP] = ACTIONS(1109), }, - [1123] = { - [aux_sym_concatenation_repeat1] = STATE(1123), - [sym__concat] = ACTIONS(2569), - [sym_variable_name] = ACTIONS(1654), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [sym__special_characters] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1656), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1656), - [anon_sym_BQUOTE] = ACTIONS(1656), - [anon_sym_LT_LPAREN] = ACTIONS(1656), - [anon_sym_GT_LPAREN] = ACTIONS(1656), + [1092] = { + [aux_sym_concatenation_repeat1] = STATE(1092), + [sym__concat] = ACTIONS(2527), + [sym_variable_name] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [sym__special_characters] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1644), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1644), + [anon_sym_LT_LPAREN] = ACTIONS(1644), + [anon_sym_GT_LPAREN] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1656), - [sym_word] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1644), + [sym_word] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, - [1124] = { - [aux_sym_concatenation_repeat1] = STATE(1124), - [sym__concat] = ACTIONS(2612), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [sym__special_characters] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1656), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1656), - [anon_sym_BQUOTE] = ACTIONS(1656), - [anon_sym_LT_LPAREN] = ACTIONS(1656), - [anon_sym_GT_LPAREN] = ACTIONS(1656), + [1093] = { + [aux_sym_concatenation_repeat1] = STATE(1093), + [sym__concat] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [sym__special_characters] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1644), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1644), + [anon_sym_LT_LPAREN] = ACTIONS(1644), + [anon_sym_GT_LPAREN] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1656), - [sym_word] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1644), + [sym_word] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, - [1125] = { - [sym_file_redirect] = STATE(1432), - [sym_file_descriptor] = ACTIONS(2382), - [anon_sym_PIPE] = ACTIONS(2376), - [anon_sym_RPAREN] = ACTIONS(2376), - [anon_sym_SEMI_SEMI] = ACTIONS(2376), - [anon_sym_PIPE_AMP] = ACTIONS(2376), - [anon_sym_AMP_AMP] = ACTIONS(2376), - [anon_sym_PIPE_PIPE] = ACTIONS(2376), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_GT_GT] = ACTIONS(2384), - [anon_sym_AMP_GT] = ACTIONS(2384), - [anon_sym_AMP_GT_GT] = ACTIONS(2384), - [anon_sym_LT_AMP] = ACTIONS(2384), - [anon_sym_GT_AMP] = ACTIONS(2384), + [1094] = { + [sym_file_redirect] = STATE(1401), + [sym_file_descriptor] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2334), + [anon_sym_RPAREN] = ACTIONS(2334), + [anon_sym_SEMI_SEMI] = ACTIONS(2334), + [anon_sym_PIPE_AMP] = ACTIONS(2334), + [anon_sym_AMP_AMP] = ACTIONS(2334), + [anon_sym_PIPE_PIPE] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(2342), + [anon_sym_GT] = ACTIONS(2342), + [anon_sym_GT_GT] = ACTIONS(2342), + [anon_sym_AMP_GT] = ACTIONS(2342), + [anon_sym_AMP_GT_GT] = ACTIONS(2342), + [anon_sym_LT_AMP] = ACTIONS(2342), + [anon_sym_GT_AMP] = ACTIONS(2342), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2376), - [anon_sym_LF] = ACTIONS(2378), - [anon_sym_AMP] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2334), + [anon_sym_LF] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2334), }, - [1126] = { - [aux_sym_concatenation_repeat1] = STATE(1128), + [1095] = { + [aux_sym_concatenation_repeat1] = STATE(1097), [sym__simple_heredoc_body] = ACTIONS(1089), [sym__heredoc_body_beginning] = ACTIONS(1089), [sym_file_descriptor] = ACTIONS(1089), @@ -38187,8 +34144,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1089), [anon_sym_AMP] = ACTIONS(1091), }, - [1127] = { - [aux_sym_concatenation_repeat1] = STATE(1128), + [1096] = { + [aux_sym_concatenation_repeat1] = STATE(1097), [sym__simple_heredoc_body] = ACTIONS(1093), [sym__heredoc_body_beginning] = ACTIONS(1093), [sym_file_descriptor] = ACTIONS(1093), @@ -38214,8 +34171,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1093), [anon_sym_AMP] = ACTIONS(1095), }, - [1128] = { - [aux_sym_concatenation_repeat1] = STATE(1561), + [1097] = { + [aux_sym_concatenation_repeat1] = STATE(1511), [sym__simple_heredoc_body] = ACTIONS(693), [sym__heredoc_body_beginning] = ACTIONS(693), [sym_file_descriptor] = ACTIONS(693), @@ -38241,34 +34198,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(693), [anon_sym_AMP] = ACTIONS(695), }, - [1129] = { - [anon_sym_esac] = ACTIONS(3641), - [anon_sym_PIPE] = ACTIONS(3641), - [anon_sym_RPAREN] = ACTIONS(3641), - [anon_sym_SEMI_SEMI] = ACTIONS(3641), - [anon_sym_PIPE_AMP] = ACTIONS(3641), - [anon_sym_AMP_AMP] = ACTIONS(3641), - [anon_sym_PIPE_PIPE] = ACTIONS(3641), + [1098] = { + [anon_sym_esac] = ACTIONS(3553), + [anon_sym_PIPE] = ACTIONS(3553), + [anon_sym_RPAREN] = ACTIONS(3553), + [anon_sym_SEMI_SEMI] = ACTIONS(3553), + [anon_sym_PIPE_AMP] = ACTIONS(3553), + [anon_sym_AMP_AMP] = ACTIONS(3553), + [anon_sym_PIPE_PIPE] = ACTIONS(3553), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3641), - [anon_sym_LF] = ACTIONS(3643), - [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_SEMI] = ACTIONS(3553), + [anon_sym_LF] = ACTIONS(3555), + [anon_sym_AMP] = ACTIONS(3553), }, - [1130] = { - [sym_file_redirect] = STATE(667), - [sym_heredoc_redirect] = STATE(667), - [sym_heredoc_body] = STATE(1448), - [sym_herestring_redirect] = STATE(667), - [aux_sym_while_statement_repeat1] = STATE(667), + [1099] = { + [sym_file_redirect] = STATE(657), + [sym_heredoc_redirect] = STATE(657), + [sym_heredoc_body] = STATE(1417), + [sym_herestring_redirect] = STATE(657), + [aux_sym_while_statement_repeat1] = STATE(657), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), [sym_file_descriptor] = ACTIONS(483), - [anon_sym_PIPE] = ACTIONS(3325), - [anon_sym_RPAREN] = ACTIONS(3325), - [anon_sym_SEMI_SEMI] = ACTIONS(3325), - [anon_sym_PIPE_AMP] = ACTIONS(3325), - [anon_sym_AMP_AMP] = ACTIONS(3325), - [anon_sym_PIPE_PIPE] = ACTIONS(3325), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_RPAREN] = ACTIONS(3283), + [anon_sym_SEMI_SEMI] = ACTIONS(3283), + [anon_sym_PIPE_AMP] = ACTIONS(3283), + [anon_sym_AMP_AMP] = ACTIONS(3283), + [anon_sym_PIPE_PIPE] = ACTIONS(3283), [anon_sym_LT] = ACTIONS(487), [anon_sym_GT] = ACTIONS(487), [anon_sym_GT_GT] = ACTIONS(487), @@ -38280,47 +34237,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(349), [anon_sym_LT_LT_LT] = ACTIONS(489), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3325), - [anon_sym_LF] = ACTIONS(3327), - [anon_sym_AMP] = ACTIONS(3325), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3283), }, - [1131] = { - [sym_file_descriptor] = ACTIONS(2139), - [sym_variable_name] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(2141), - [anon_sym_RPAREN] = ACTIONS(2139), - [anon_sym_PIPE_AMP] = ACTIONS(2139), - [anon_sym_AMP_AMP] = ACTIONS(2139), - [anon_sym_PIPE_PIPE] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2141), - [anon_sym_GT] = ACTIONS(2141), - [anon_sym_GT_GT] = ACTIONS(2139), - [anon_sym_AMP_GT] = ACTIONS(2141), - [anon_sym_AMP_GT_GT] = ACTIONS(2139), - [anon_sym_LT_AMP] = ACTIONS(2139), - [anon_sym_GT_AMP] = ACTIONS(2139), - [sym__special_characters] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2139), - [anon_sym_DOLLAR] = ACTIONS(2141), - [sym_raw_string] = ACTIONS(2139), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2139), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2139), - [anon_sym_BQUOTE] = ACTIONS(2139), - [anon_sym_LT_LPAREN] = ACTIONS(2139), - [anon_sym_GT_LPAREN] = ACTIONS(2139), + [1100] = { + [sym_file_descriptor] = ACTIONS(2127), + [sym_variable_name] = ACTIONS(2127), + [anon_sym_PIPE] = ACTIONS(2129), + [anon_sym_RPAREN] = ACTIONS(2127), + [anon_sym_PIPE_AMP] = ACTIONS(2127), + [anon_sym_AMP_AMP] = ACTIONS(2127), + [anon_sym_PIPE_PIPE] = ACTIONS(2127), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_GT] = ACTIONS(2129), + [anon_sym_GT_GT] = ACTIONS(2127), + [anon_sym_AMP_GT] = ACTIONS(2129), + [anon_sym_AMP_GT_GT] = ACTIONS(2127), + [anon_sym_LT_AMP] = ACTIONS(2127), + [anon_sym_GT_AMP] = ACTIONS(2127), + [sym__special_characters] = ACTIONS(2127), + [anon_sym_DQUOTE] = ACTIONS(2127), + [anon_sym_DOLLAR] = ACTIONS(2129), + [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(53), - [sym_word] = ACTIONS(2139), + [sym_word] = ACTIONS(2127), }, - [1132] = { - [sym_concatenation] = STATE(1019), + [1101] = { + [sym_concatenation] = STATE(1009), [sym_string] = STATE(563), [sym_simple_expansion] = STATE(563), [sym_string_expansion] = STATE(563), [sym_expansion] = STATE(563), [sym_command_substitution] = STATE(563), [sym_process_substitution] = STATE(563), - [aux_sym_for_statement_repeat1] = STATE(1019), - [anon_sym_RPAREN] = ACTIONS(3645), + [aux_sym_for_statement_repeat1] = STATE(1009), + [anon_sym_RPAREN] = ACTIONS(3557), [sym__special_characters] = ACTIONS(1113), [anon_sym_DQUOTE] = ACTIONS(1115), [anon_sym_DOLLAR] = ACTIONS(1117), @@ -38333,73 +34290,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(1119), }, - [1133] = { - [aux_sym_concatenation_repeat1] = STATE(1133), - [sym__concat] = ACTIONS(2524), - [anon_sym_RPAREN] = ACTIONS(1654), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_PIPE_PIPE] = ACTIONS(1654), - [anon_sym_EQ_TILDE] = ACTIONS(1654), - [anon_sym_EQ_EQ] = ACTIONS(1654), - [anon_sym_EQ] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1654), - [anon_sym_GT] = ACTIONS(1654), - [anon_sym_BANG_EQ] = ACTIONS(1654), + [1102] = { + [aux_sym_concatenation_repeat1] = STATE(1102), + [sym__concat] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_AMP_AMP] = ACTIONS(1642), + [anon_sym_PIPE_PIPE] = ACTIONS(1642), + [anon_sym_EQ_TILDE] = ACTIONS(1642), + [anon_sym_EQ_EQ] = ACTIONS(1642), + [anon_sym_EQ] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_BANG_EQ] = ACTIONS(1642), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1654), + [sym_test_operator] = ACTIONS(1642), }, - [1134] = { - [sym__concat] = ACTIONS(2752), - [anon_sym_AMP_AMP] = ACTIONS(2752), - [anon_sym_PIPE_PIPE] = ACTIONS(2752), - [anon_sym_RBRACK] = ACTIONS(2752), - [anon_sym_EQ_TILDE] = ACTIONS(2752), - [anon_sym_EQ_EQ] = ACTIONS(2752), - [anon_sym_EQ] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_GT] = ACTIONS(2752), - [anon_sym_BANG_EQ] = ACTIONS(2752), + [1103] = { + [sym__concat] = ACTIONS(2710), + [anon_sym_AMP_AMP] = ACTIONS(2710), + [anon_sym_PIPE_PIPE] = ACTIONS(2710), + [anon_sym_RBRACK] = ACTIONS(2710), + [anon_sym_EQ_TILDE] = ACTIONS(2710), + [anon_sym_EQ_EQ] = ACTIONS(2710), + [anon_sym_EQ] = ACTIONS(2712), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_GT] = ACTIONS(2710), + [anon_sym_BANG_EQ] = ACTIONS(2710), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2752), + [sym_test_operator] = ACTIONS(2710), }, - [1135] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(3647), + [1104] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(3559), [sym_comment] = ACTIONS(53), }, - [1136] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(3649), + [1105] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(3561), [sym_comment] = ACTIONS(53), }, - [1137] = { - [anon_sym_RBRACE] = ACTIONS(3649), + [1106] = { + [anon_sym_RBRACE] = ACTIONS(3561), [sym_comment] = ACTIONS(53), }, - [1138] = { - [sym_concatenation] = STATE(1566), + [1107] = { + [sym_concatenation] = STATE(1516), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1566), - [anon_sym_RBRACE] = ACTIONS(3651), - [anon_sym_EQ] = ACTIONS(3653), + [aux_sym_expansion_repeat1] = STATE(1516), + [anon_sym_RBRACE] = ACTIONS(3563), + [anon_sym_EQ] = ACTIONS(3565), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3655), + [anon_sym_POUND] = ACTIONS(3567), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3653), - [anon_sym_COLON_QMARK] = ACTIONS(3653), - [anon_sym_COLON_DASH] = ACTIONS(3653), - [anon_sym_PERCENT] = ACTIONS(3653), - [anon_sym_DASH] = ACTIONS(3653), + [anon_sym_COLON] = ACTIONS(3565), + [anon_sym_COLON_QMARK] = ACTIONS(3565), + [anon_sym_COLON_DASH] = ACTIONS(3565), + [anon_sym_PERCENT] = ACTIONS(3565), + [anon_sym_DASH] = ACTIONS(3565), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -38407,81 +34364,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1139] = { - [sym__concat] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_RBRACK] = ACTIONS(2830), - [anon_sym_EQ_TILDE] = ACTIONS(2830), - [anon_sym_EQ_EQ] = ACTIONS(2830), - [anon_sym_EQ] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2830), - [anon_sym_GT] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2830), + [1108] = { + [sym__concat] = ACTIONS(2788), + [anon_sym_AMP_AMP] = ACTIONS(2788), + [anon_sym_PIPE_PIPE] = ACTIONS(2788), + [anon_sym_RBRACK] = ACTIONS(2788), + [anon_sym_EQ_TILDE] = ACTIONS(2788), + [anon_sym_EQ_EQ] = ACTIONS(2788), + [anon_sym_EQ] = ACTIONS(2790), + [anon_sym_LT] = ACTIONS(2788), + [anon_sym_GT] = ACTIONS(2788), + [anon_sym_BANG_EQ] = ACTIONS(2788), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2830), + [sym_test_operator] = ACTIONS(2788), }, - [1140] = { - [sym_concatenation] = STATE(1569), - [sym_string] = STATE(1568), - [sym_simple_expansion] = STATE(1568), - [sym_string_expansion] = STATE(1568), - [sym_expansion] = STATE(1568), - [sym_command_substitution] = STATE(1568), - [sym_process_substitution] = STATE(1568), - [anon_sym_RBRACE] = ACTIONS(3649), - [sym__special_characters] = ACTIONS(3657), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(3659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), + [1109] = { + [sym_concatenation] = STATE(1519), + [sym_string] = STATE(1518), + [sym_simple_expansion] = STATE(1518), + [sym_string_expansion] = STATE(1518), + [sym_expansion] = STATE(1518), + [sym_command_substitution] = STATE(1518), + [sym_process_substitution] = STATE(1518), + [anon_sym_RBRACE] = ACTIONS(3561), + [sym__special_characters] = ACTIONS(3569), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(3571), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3659), + [sym_word] = ACTIONS(3571), }, - [1141] = { - [sym__concat] = ACTIONS(2873), - [anon_sym_AMP_AMP] = ACTIONS(2873), - [anon_sym_PIPE_PIPE] = ACTIONS(2873), - [anon_sym_RBRACK] = ACTIONS(2873), - [anon_sym_EQ_TILDE] = ACTIONS(2873), - [anon_sym_EQ_EQ] = ACTIONS(2873), - [anon_sym_EQ] = ACTIONS(2875), - [anon_sym_LT] = ACTIONS(2873), - [anon_sym_GT] = ACTIONS(2873), - [anon_sym_BANG_EQ] = ACTIONS(2873), + [1110] = { + [sym__concat] = ACTIONS(2831), + [anon_sym_AMP_AMP] = ACTIONS(2831), + [anon_sym_PIPE_PIPE] = ACTIONS(2831), + [anon_sym_RBRACK] = ACTIONS(2831), + [anon_sym_EQ_TILDE] = ACTIONS(2831), + [anon_sym_EQ_EQ] = ACTIONS(2831), + [anon_sym_EQ] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2831), + [anon_sym_GT] = ACTIONS(2831), + [anon_sym_BANG_EQ] = ACTIONS(2831), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2873), + [sym_test_operator] = ACTIONS(2831), }, - [1142] = { + [1111] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3661), + [sym_regex_without_right_brace] = ACTIONS(3573), }, - [1143] = { - [sym_concatenation] = STATE(839), + [1112] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3663), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3575), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -38489,46 +34446,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1144] = { - [sym__concat] = ACTIONS(2881), - [anon_sym_AMP_AMP] = ACTIONS(2881), - [anon_sym_PIPE_PIPE] = ACTIONS(2881), - [anon_sym_RBRACK] = ACTIONS(2881), - [anon_sym_EQ_TILDE] = ACTIONS(2881), - [anon_sym_EQ_EQ] = ACTIONS(2881), - [anon_sym_EQ] = ACTIONS(2883), - [anon_sym_LT] = ACTIONS(2881), - [anon_sym_GT] = ACTIONS(2881), - [anon_sym_BANG_EQ] = ACTIONS(2881), + [1113] = { + [sym__concat] = ACTIONS(2839), + [anon_sym_AMP_AMP] = ACTIONS(2839), + [anon_sym_PIPE_PIPE] = ACTIONS(2839), + [anon_sym_RBRACK] = ACTIONS(2839), + [anon_sym_EQ_TILDE] = ACTIONS(2839), + [anon_sym_EQ_EQ] = ACTIONS(2839), + [anon_sym_EQ] = ACTIONS(2841), + [anon_sym_LT] = ACTIONS(2839), + [anon_sym_GT] = ACTIONS(2839), + [anon_sym_BANG_EQ] = ACTIONS(2839), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2881), + [sym_test_operator] = ACTIONS(2839), }, - [1145] = { + [1114] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3665), + [sym_regex_without_right_brace] = ACTIONS(3577), }, - [1146] = { - [sym_concatenation] = STATE(839), + [1115] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3667), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3579), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -38536,32 +34493,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1147] = { + [1116] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3669), + [sym_regex_without_right_brace] = ACTIONS(3581), }, - [1148] = { - [sym_concatenation] = STATE(839), + [1117] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3649), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3561), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -38569,28 +34526,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1149] = { - [sym_concatenation] = STATE(1576), + [1118] = { + [sym_concatenation] = STATE(1526), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1576), - [anon_sym_RBRACE] = ACTIONS(3671), - [anon_sym_EQ] = ACTIONS(3673), + [aux_sym_expansion_repeat1] = STATE(1526), + [anon_sym_RBRACE] = ACTIONS(3583), + [anon_sym_EQ] = ACTIONS(3585), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3675), + [anon_sym_POUND] = ACTIONS(3587), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3673), - [anon_sym_COLON_QMARK] = ACTIONS(3673), - [anon_sym_COLON_DASH] = ACTIONS(3673), - [anon_sym_PERCENT] = ACTIONS(3673), - [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_COLON] = ACTIONS(3585), + [anon_sym_COLON_QMARK] = ACTIONS(3585), + [anon_sym_COLON_DASH] = ACTIONS(3585), + [anon_sym_PERCENT] = ACTIONS(3585), + [anon_sym_DASH] = ACTIONS(3585), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -38598,42 +34555,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1150] = { - [sym__concat] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2897), - [anon_sym_PIPE_PIPE] = ACTIONS(2897), - [anon_sym_RBRACK] = ACTIONS(2897), - [anon_sym_EQ_TILDE] = ACTIONS(2897), - [anon_sym_EQ_EQ] = ACTIONS(2897), - [anon_sym_EQ] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2897), - [anon_sym_GT] = ACTIONS(2897), - [anon_sym_BANG_EQ] = ACTIONS(2897), + [1119] = { + [sym__concat] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [anon_sym_RBRACK] = ACTIONS(2855), + [anon_sym_EQ_TILDE] = ACTIONS(2855), + [anon_sym_EQ_EQ] = ACTIONS(2855), + [anon_sym_EQ] = ACTIONS(2857), + [anon_sym_LT] = ACTIONS(2855), + [anon_sym_GT] = ACTIONS(2855), + [anon_sym_BANG_EQ] = ACTIONS(2855), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2897), + [sym_test_operator] = ACTIONS(2855), }, - [1151] = { - [sym_concatenation] = STATE(1578), + [1120] = { + [sym_concatenation] = STATE(1528), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1578), - [anon_sym_RBRACE] = ACTIONS(3677), - [anon_sym_EQ] = ACTIONS(3679), + [aux_sym_expansion_repeat1] = STATE(1528), + [anon_sym_RBRACE] = ACTIONS(3589), + [anon_sym_EQ] = ACTIONS(3591), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3681), + [anon_sym_POUND] = ACTIONS(3593), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3679), - [anon_sym_COLON_QMARK] = ACTIONS(3679), - [anon_sym_COLON_DASH] = ACTIONS(3679), - [anon_sym_PERCENT] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_COLON] = ACTIONS(3591), + [anon_sym_COLON_QMARK] = ACTIONS(3591), + [anon_sym_COLON_DASH] = ACTIONS(3591), + [anon_sym_PERCENT] = ACTIONS(3591), + [anon_sym_DASH] = ACTIONS(3591), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -38641,30 +34598,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1152] = { - [sym_concatenation] = STATE(1581), - [sym_string] = STATE(1580), - [sym_simple_expansion] = STATE(1580), - [sym_string_expansion] = STATE(1580), - [sym_expansion] = STATE(1580), - [sym_command_substitution] = STATE(1580), - [sym_process_substitution] = STATE(1580), - [sym__special_characters] = ACTIONS(3683), - [anon_sym_DQUOTE] = ACTIONS(2500), - [anon_sym_DOLLAR] = ACTIONS(2502), - [sym_raw_string] = ACTIONS(3685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2506), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2508), - [anon_sym_BQUOTE] = ACTIONS(2510), - [anon_sym_LT_LPAREN] = ACTIONS(2512), - [anon_sym_GT_LPAREN] = ACTIONS(2512), + [1121] = { + [sym_concatenation] = STATE(1531), + [sym_string] = STATE(1530), + [sym_simple_expansion] = STATE(1530), + [sym_string_expansion] = STATE(1530), + [sym_expansion] = STATE(1530), + [sym_command_substitution] = STATE(1530), + [sym_process_substitution] = STATE(1530), + [sym__special_characters] = ACTIONS(3595), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_DOLLAR] = ACTIONS(2460), + [sym_raw_string] = ACTIONS(3597), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2466), + [anon_sym_BQUOTE] = ACTIONS(2468), + [anon_sym_LT_LPAREN] = ACTIONS(2470), + [anon_sym_GT_LPAREN] = ACTIONS(2470), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3685), + [sym_word] = ACTIONS(3597), }, - [1153] = { - [aux_sym_concatenation_repeat1] = STATE(1583), + [1122] = { + [aux_sym_concatenation_repeat1] = STATE(1533), [sym_file_descriptor] = ACTIONS(661), - [sym__concat] = ACTIONS(3687), + [sym__concat] = ACTIONS(3599), [anon_sym_PIPE] = ACTIONS(665), [anon_sym_SEMI_SEMI] = ACTIONS(665), [anon_sym_PIPE_AMP] = ACTIONS(665), @@ -38685,12 +34642,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(661), [anon_sym_AMP] = ACTIONS(665), }, - [1154] = { + [1123] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(1585), - [anon_sym_DQUOTE] = ACTIONS(3689), + [aux_sym_string_repeat1] = STATE(1535), + [anon_sym_DQUOTE] = ACTIONS(3601), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -38698,25 +34655,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(237), [sym_comment] = ACTIONS(177), }, - [1155] = { - [sym_string] = STATE(1587), - [anon_sym_DQUOTE] = ACTIONS(2500), - [anon_sym_DOLLAR] = ACTIONS(3691), - [sym_raw_string] = ACTIONS(3693), - [anon_sym_POUND] = ACTIONS(3691), - [anon_sym_DASH] = ACTIONS(3691), + [1124] = { + [sym_string] = STATE(1537), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_DOLLAR] = ACTIONS(3603), + [sym_raw_string] = ACTIONS(3605), + [anon_sym_POUND] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3695), - [anon_sym_STAR] = ACTIONS(3691), - [anon_sym_AT] = ACTIONS(3691), - [anon_sym_QMARK] = ACTIONS(3691), - [anon_sym_0] = ACTIONS(3697), - [anon_sym__] = ACTIONS(3697), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3607), + [anon_sym_STAR] = ACTIONS(3603), + [anon_sym_AT] = ACTIONS(3603), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_0] = ACTIONS(3609), + [anon_sym__] = ACTIONS(3609), }, - [1156] = { - [aux_sym_concatenation_repeat1] = STATE(1583), + [1125] = { + [aux_sym_concatenation_repeat1] = STATE(1533), [sym_file_descriptor] = ACTIONS(677), - [sym__concat] = ACTIONS(3687), + [sym__concat] = ACTIONS(3599), [anon_sym_PIPE] = ACTIONS(679), [anon_sym_SEMI_SEMI] = ACTIONS(679), [anon_sym_PIPE_AMP] = ACTIONS(679), @@ -38737,36 +34694,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(677), [anon_sym_AMP] = ACTIONS(679), }, - [1157] = { - [sym_subscript] = STATE(1593), - [sym_variable_name] = ACTIONS(3699), - [anon_sym_DOLLAR] = ACTIONS(3701), - [anon_sym_POUND] = ACTIONS(3703), - [anon_sym_DASH] = ACTIONS(3701), + [1126] = { + [sym_subscript] = STATE(1543), + [sym_variable_name] = ACTIONS(3611), + [anon_sym_DOLLAR] = ACTIONS(3613), + [anon_sym_POUND] = ACTIONS(3615), + [anon_sym_DASH] = ACTIONS(3613), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3705), - [anon_sym_STAR] = ACTIONS(3701), - [anon_sym_AT] = ACTIONS(3701), - [anon_sym_QMARK] = ACTIONS(3701), - [anon_sym_0] = ACTIONS(3707), - [anon_sym__] = ACTIONS(3707), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(3613), + [anon_sym_AT] = ACTIONS(3613), + [anon_sym_QMARK] = ACTIONS(3613), + [anon_sym_0] = ACTIONS(3619), + [anon_sym__] = ACTIONS(3619), }, - [1158] = { - [sym_for_statement] = STATE(1594), - [sym_while_statement] = STATE(1594), - [sym_if_statement] = STATE(1594), - [sym_case_statement] = STATE(1594), - [sym_function_definition] = STATE(1594), - [sym_subshell] = STATE(1594), - [sym_pipeline] = STATE(1594), - [sym_list] = STATE(1594), - [sym_negated_command] = STATE(1594), - [sym_test_command] = STATE(1594), - [sym_declaration_command] = STATE(1594), - [sym_unset_command] = STATE(1594), - [sym_command] = STATE(1594), + [1127] = { + [sym_for_statement] = STATE(1544), + [sym_while_statement] = STATE(1544), + [sym_if_statement] = STATE(1544), + [sym_case_statement] = STATE(1544), + [sym_function_definition] = STATE(1544), + [sym_subshell] = STATE(1544), + [sym_pipeline] = STATE(1544), + [sym_list] = STATE(1544), + [sym_negated_command] = STATE(1544), + [sym_test_command] = STATE(1544), + [sym_declaration_command] = STATE(1544), + [sym_unset_command] = STATE(1544), + [sym_command] = STATE(1544), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(1595), + [sym_variable_assignment] = STATE(1545), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -38814,22 +34771,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(301), }, - [1159] = { - [sym_for_statement] = STATE(1596), - [sym_while_statement] = STATE(1596), - [sym_if_statement] = STATE(1596), - [sym_case_statement] = STATE(1596), - [sym_function_definition] = STATE(1596), - [sym_subshell] = STATE(1596), - [sym_pipeline] = STATE(1596), - [sym_list] = STATE(1596), - [sym_negated_command] = STATE(1596), - [sym_test_command] = STATE(1596), - [sym_declaration_command] = STATE(1596), - [sym_unset_command] = STATE(1596), - [sym_command] = STATE(1596), + [1128] = { + [sym_for_statement] = STATE(1546), + [sym_while_statement] = STATE(1546), + [sym_if_statement] = STATE(1546), + [sym_case_statement] = STATE(1546), + [sym_function_definition] = STATE(1546), + [sym_subshell] = STATE(1546), + [sym_pipeline] = STATE(1546), + [sym_list] = STATE(1546), + [sym_negated_command] = STATE(1546), + [sym_test_command] = STATE(1546), + [sym_declaration_command] = STATE(1546), + [sym_unset_command] = STATE(1546), + [sym_command] = STATE(1546), [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(1597), + [sym_variable_assignment] = STATE(1547), [sym_subscript] = STATE(183), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -38877,22 +34834,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(323), }, - [1160] = { - [sym_for_statement] = STATE(1598), - [sym_while_statement] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_case_statement] = STATE(1598), - [sym_function_definition] = STATE(1598), - [sym_subshell] = STATE(1598), - [sym_pipeline] = STATE(1598), - [sym_list] = STATE(1598), - [sym_negated_command] = STATE(1598), - [sym_test_command] = STATE(1598), - [sym_declaration_command] = STATE(1598), - [sym_unset_command] = STATE(1598), - [sym_command] = STATE(1598), + [1129] = { + [sym_for_statement] = STATE(1548), + [sym_while_statement] = STATE(1548), + [sym_if_statement] = STATE(1548), + [sym_case_statement] = STATE(1548), + [sym_function_definition] = STATE(1548), + [sym_subshell] = STATE(1548), + [sym_pipeline] = STATE(1548), + [sym_list] = STATE(1548), + [sym_negated_command] = STATE(1548), + [sym_test_command] = STATE(1548), + [sym_declaration_command] = STATE(1548), + [sym_unset_command] = STATE(1548), + [sym_command] = STATE(1548), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(1599), + [sym_variable_assignment] = STATE(1549), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -38940,7 +34897,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(301), }, - [1161] = { + [1130] = { [sym_file_descriptor] = ACTIONS(677), [anon_sym_esac] = ACTIONS(679), [anon_sym_PIPE] = ACTIONS(679), @@ -38964,182 +34921,182 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(677), [anon_sym_AMP] = ACTIONS(679), }, - [1162] = { - [sym_file_descriptor] = ACTIONS(2066), - [anon_sym_esac] = ACTIONS(2068), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_RPAREN] = ACTIONS(2068), - [anon_sym_SEMI_SEMI] = ACTIONS(2068), - [anon_sym_PIPE_AMP] = ACTIONS(2068), - [anon_sym_AMP_AMP] = ACTIONS(2068), - [anon_sym_PIPE_PIPE] = ACTIONS(2068), - [anon_sym_LT] = ACTIONS(2068), - [anon_sym_GT] = ACTIONS(2068), - [anon_sym_GT_GT] = ACTIONS(2068), - [anon_sym_AMP_GT] = ACTIONS(2068), - [anon_sym_AMP_GT_GT] = ACTIONS(2068), - [anon_sym_LT_AMP] = ACTIONS(2068), - [anon_sym_GT_AMP] = ACTIONS(2068), - [anon_sym_LT_LT] = ACTIONS(2068), - [anon_sym_LT_LT_DASH] = ACTIONS(2068), - [anon_sym_LT_LT_LT] = ACTIONS(2068), + [1131] = { + [sym_file_descriptor] = ACTIONS(2054), + [anon_sym_esac] = ACTIONS(2056), + [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(2056), + [anon_sym_GT] = ACTIONS(2056), + [anon_sym_GT_GT] = ACTIONS(2056), + [anon_sym_AMP_GT] = ACTIONS(2056), + [anon_sym_AMP_GT_GT] = ACTIONS(2056), + [anon_sym_LT_AMP] = ACTIONS(2056), + [anon_sym_GT_AMP] = ACTIONS(2056), + [anon_sym_LT_LT] = ACTIONS(2056), + [anon_sym_LT_LT_DASH] = ACTIONS(2056), + [anon_sym_LT_LT_LT] = ACTIONS(2056), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_LF] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2056), + [anon_sym_LF] = ACTIONS(2054), + [anon_sym_AMP] = ACTIONS(2056), }, - [1163] = { - [aux_sym_concatenation_repeat1] = STATE(1583), - [sym_file_descriptor] = ACTIONS(2070), - [sym__concat] = ACTIONS(3687), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_SEMI_SEMI] = ACTIONS(2072), - [anon_sym_PIPE_AMP] = ACTIONS(2072), - [anon_sym_AMP_AMP] = ACTIONS(2072), - [anon_sym_PIPE_PIPE] = ACTIONS(2072), - [anon_sym_LT] = ACTIONS(2072), - [anon_sym_GT] = ACTIONS(2072), - [anon_sym_GT_GT] = ACTIONS(2072), - [anon_sym_AMP_GT] = ACTIONS(2072), - [anon_sym_AMP_GT_GT] = ACTIONS(2072), - [anon_sym_LT_AMP] = ACTIONS(2072), - [anon_sym_GT_AMP] = ACTIONS(2072), - [anon_sym_LT_LT] = ACTIONS(2072), - [anon_sym_LT_LT_DASH] = ACTIONS(2072), - [anon_sym_LT_LT_LT] = ACTIONS(2072), + [1132] = { + [aux_sym_concatenation_repeat1] = STATE(1533), + [sym_file_descriptor] = ACTIONS(2058), + [sym__concat] = ACTIONS(3599), + [anon_sym_PIPE] = ACTIONS(2060), + [anon_sym_SEMI_SEMI] = ACTIONS(2060), + [anon_sym_PIPE_AMP] = ACTIONS(2060), + [anon_sym_AMP_AMP] = ACTIONS(2060), + [anon_sym_PIPE_PIPE] = ACTIONS(2060), + [anon_sym_LT] = ACTIONS(2060), + [anon_sym_GT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2060), + [anon_sym_AMP_GT] = ACTIONS(2060), + [anon_sym_AMP_GT_GT] = ACTIONS(2060), + [anon_sym_LT_AMP] = ACTIONS(2060), + [anon_sym_GT_AMP] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_LT_LT_DASH] = ACTIONS(2060), + [anon_sym_LT_LT_LT] = ACTIONS(2060), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_LF] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2060), + }, + [1133] = { + [aux_sym_concatenation_repeat1] = STATE(1533), + [sym_file_descriptor] = ACTIONS(2062), + [sym__concat] = ACTIONS(3599), + [anon_sym_PIPE] = ACTIONS(2064), + [anon_sym_SEMI_SEMI] = ACTIONS(2064), + [anon_sym_PIPE_AMP] = ACTIONS(2064), + [anon_sym_AMP_AMP] = ACTIONS(2064), + [anon_sym_PIPE_PIPE] = ACTIONS(2064), + [anon_sym_LT] = ACTIONS(2064), + [anon_sym_GT] = ACTIONS(2064), + [anon_sym_GT_GT] = ACTIONS(2064), + [anon_sym_AMP_GT] = ACTIONS(2064), + [anon_sym_AMP_GT_GT] = ACTIONS(2064), + [anon_sym_LT_AMP] = ACTIONS(2064), + [anon_sym_GT_AMP] = ACTIONS(2064), + [anon_sym_LT_LT] = ACTIONS(2064), + [anon_sym_LT_LT_DASH] = ACTIONS(2064), + [anon_sym_LT_LT_LT] = ACTIONS(2064), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2064), + [anon_sym_LF] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2064), + }, + [1134] = { + [sym_file_descriptor] = ACTIONS(2062), + [anon_sym_esac] = ACTIONS(2064), + [anon_sym_PIPE] = ACTIONS(2064), + [anon_sym_RPAREN] = ACTIONS(2064), + [anon_sym_SEMI_SEMI] = ACTIONS(2064), + [anon_sym_PIPE_AMP] = ACTIONS(2064), + [anon_sym_AMP_AMP] = ACTIONS(2064), + [anon_sym_PIPE_PIPE] = ACTIONS(2064), + [anon_sym_LT] = ACTIONS(2064), + [anon_sym_GT] = ACTIONS(2064), + [anon_sym_GT_GT] = ACTIONS(2064), + [anon_sym_AMP_GT] = ACTIONS(2064), + [anon_sym_AMP_GT_GT] = ACTIONS(2064), + [anon_sym_LT_AMP] = ACTIONS(2064), + [anon_sym_GT_AMP] = ACTIONS(2064), + [anon_sym_LT_LT] = ACTIONS(2064), + [anon_sym_LT_LT_DASH] = ACTIONS(2064), + [anon_sym_LT_LT_LT] = ACTIONS(2064), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2064), + [anon_sym_LF] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2064), + }, + [1135] = { + [sym_file_redirect] = STATE(1135), + [sym_heredoc_redirect] = STATE(1135), + [sym_herestring_redirect] = STATE(1135), + [aux_sym_while_statement_repeat1] = STATE(1135), + [sym_file_descriptor] = ACTIONS(3621), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_SEMI_SEMI] = ACTIONS(2075), + [anon_sym_PIPE_AMP] = ACTIONS(2075), + [anon_sym_AMP_AMP] = ACTIONS(2075), + [anon_sym_PIPE_PIPE] = ACTIONS(2075), + [anon_sym_LT] = ACTIONS(3624), + [anon_sym_GT] = ACTIONS(3624), + [anon_sym_GT_GT] = ACTIONS(3624), + [anon_sym_AMP_GT] = ACTIONS(3624), + [anon_sym_AMP_GT_GT] = ACTIONS(3624), + [anon_sym_LT_AMP] = ACTIONS(3624), + [anon_sym_GT_AMP] = ACTIONS(3624), + [anon_sym_LT_LT] = ACTIONS(3627), + [anon_sym_LT_LT_DASH] = ACTIONS(3627), + [anon_sym_LT_LT_LT] = ACTIONS(3630), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2075), [anon_sym_LF] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(2072), + [anon_sym_AMP] = ACTIONS(2075), }, - [1164] = { - [aux_sym_concatenation_repeat1] = STATE(1583), - [sym_file_descriptor] = ACTIONS(2074), - [sym__concat] = ACTIONS(3687), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_SEMI_SEMI] = ACTIONS(2076), - [anon_sym_PIPE_AMP] = ACTIONS(2076), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_GT_GT] = ACTIONS(2076), - [anon_sym_AMP_GT] = ACTIONS(2076), - [anon_sym_AMP_GT_GT] = ACTIONS(2076), - [anon_sym_LT_AMP] = ACTIONS(2076), - [anon_sym_GT_AMP] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(2076), - [anon_sym_LT_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT_LT] = ACTIONS(2076), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2076), - }, - [1165] = { - [sym_file_descriptor] = ACTIONS(2074), - [anon_sym_esac] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2076), - [anon_sym_SEMI_SEMI] = ACTIONS(2076), - [anon_sym_PIPE_AMP] = ACTIONS(2076), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_GT_GT] = ACTIONS(2076), - [anon_sym_AMP_GT] = ACTIONS(2076), - [anon_sym_AMP_GT_GT] = ACTIONS(2076), - [anon_sym_LT_AMP] = ACTIONS(2076), - [anon_sym_GT_AMP] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(2076), - [anon_sym_LT_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT_LT] = ACTIONS(2076), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2076), - }, - [1166] = { - [sym_file_redirect] = STATE(1166), - [sym_heredoc_redirect] = STATE(1166), - [sym_herestring_redirect] = STATE(1166), - [aux_sym_while_statement_repeat1] = STATE(1166), - [sym_file_descriptor] = ACTIONS(3709), - [anon_sym_PIPE] = ACTIONS(2087), - [anon_sym_SEMI_SEMI] = ACTIONS(2087), - [anon_sym_PIPE_AMP] = ACTIONS(2087), - [anon_sym_AMP_AMP] = ACTIONS(2087), - [anon_sym_PIPE_PIPE] = ACTIONS(2087), - [anon_sym_LT] = ACTIONS(3712), - [anon_sym_GT] = ACTIONS(3712), - [anon_sym_GT_GT] = ACTIONS(3712), - [anon_sym_AMP_GT] = ACTIONS(3712), - [anon_sym_AMP_GT_GT] = ACTIONS(3712), - [anon_sym_LT_AMP] = ACTIONS(3712), - [anon_sym_GT_AMP] = ACTIONS(3712), - [anon_sym_LT_LT] = ACTIONS(3715), - [anon_sym_LT_LT_DASH] = ACTIONS(3715), - [anon_sym_LT_LT_LT] = ACTIONS(3718), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym_LF] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2087), - }, - [1167] = { - [sym__concat] = ACTIONS(2752), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_RPAREN] = ACTIONS(2752), - [anon_sym_AMP_AMP] = ACTIONS(2752), - [anon_sym_PIPE_PIPE] = ACTIONS(2752), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2752), - [anon_sym_EQ_TILDE] = ACTIONS(2752), - [anon_sym_EQ_EQ] = ACTIONS(2752), - [anon_sym_EQ] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_GT] = ACTIONS(2752), - [anon_sym_BANG_EQ] = ACTIONS(2752), + [1136] = { + [sym__concat] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2712), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_AMP_AMP] = ACTIONS(2710), + [anon_sym_PIPE_PIPE] = ACTIONS(2710), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2710), + [anon_sym_EQ_TILDE] = ACTIONS(2710), + [anon_sym_EQ_EQ] = ACTIONS(2710), + [anon_sym_EQ] = ACTIONS(2712), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_GT] = ACTIONS(2710), + [anon_sym_BANG_EQ] = ACTIONS(2710), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2752), + [sym_test_operator] = ACTIONS(2710), }, - [1168] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(3721), + [1137] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(3633), [sym_comment] = ACTIONS(53), }, - [1169] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(3723), + [1138] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(3635), [sym_comment] = ACTIONS(53), }, - [1170] = { - [anon_sym_RBRACE] = ACTIONS(3723), + [1139] = { + [anon_sym_RBRACE] = ACTIONS(3635), [sym_comment] = ACTIONS(53), }, - [1171] = { - [sym_concatenation] = STATE(1603), + [1140] = { + [sym_concatenation] = STATE(1553), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1603), - [anon_sym_RBRACE] = ACTIONS(3725), - [anon_sym_EQ] = ACTIONS(3727), + [aux_sym_expansion_repeat1] = STATE(1553), + [anon_sym_RBRACE] = ACTIONS(3637), + [anon_sym_EQ] = ACTIONS(3639), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3729), + [anon_sym_POUND] = ACTIONS(3641), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3727), - [anon_sym_COLON_QMARK] = ACTIONS(3727), - [anon_sym_COLON_DASH] = ACTIONS(3727), - [anon_sym_PERCENT] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3727), + [anon_sym_COLON] = ACTIONS(3639), + [anon_sym_COLON_QMARK] = ACTIONS(3639), + [anon_sym_COLON_DASH] = ACTIONS(3639), + [anon_sym_PERCENT] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3639), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -39147,85 +35104,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1172] = { - [sym__concat] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_RPAREN] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2830), - [anon_sym_EQ_TILDE] = ACTIONS(2830), - [anon_sym_EQ_EQ] = ACTIONS(2830), - [anon_sym_EQ] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2830), - [anon_sym_GT] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2830), + [1141] = { + [sym__concat] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_RPAREN] = ACTIONS(2788), + [anon_sym_AMP_AMP] = ACTIONS(2788), + [anon_sym_PIPE_PIPE] = ACTIONS(2788), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2788), + [anon_sym_EQ_TILDE] = ACTIONS(2788), + [anon_sym_EQ_EQ] = ACTIONS(2788), + [anon_sym_EQ] = ACTIONS(2790), + [anon_sym_LT] = ACTIONS(2788), + [anon_sym_GT] = ACTIONS(2788), + [anon_sym_BANG_EQ] = ACTIONS(2788), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2830), + [sym_test_operator] = ACTIONS(2788), }, - [1173] = { - [sym_concatenation] = STATE(1606), - [sym_string] = STATE(1605), - [sym_simple_expansion] = STATE(1605), - [sym_string_expansion] = STATE(1605), - [sym_expansion] = STATE(1605), - [sym_command_substitution] = STATE(1605), - [sym_process_substitution] = STATE(1605), - [anon_sym_RBRACE] = ACTIONS(3723), - [sym__special_characters] = ACTIONS(3731), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(3733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), + [1142] = { + [sym_concatenation] = STATE(1556), + [sym_string] = STATE(1555), + [sym_simple_expansion] = STATE(1555), + [sym_string_expansion] = STATE(1555), + [sym_expansion] = STATE(1555), + [sym_command_substitution] = STATE(1555), + [sym_process_substitution] = STATE(1555), + [anon_sym_RBRACE] = ACTIONS(3635), + [sym__special_characters] = ACTIONS(3643), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(3645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3733), + [sym_word] = ACTIONS(3645), }, - [1174] = { - [sym__concat] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(2875), - [anon_sym_RPAREN] = ACTIONS(2873), - [anon_sym_AMP_AMP] = ACTIONS(2873), - [anon_sym_PIPE_PIPE] = ACTIONS(2873), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2873), - [anon_sym_EQ_TILDE] = ACTIONS(2873), - [anon_sym_EQ_EQ] = ACTIONS(2873), - [anon_sym_EQ] = ACTIONS(2875), - [anon_sym_LT] = ACTIONS(2873), - [anon_sym_GT] = ACTIONS(2873), - [anon_sym_BANG_EQ] = ACTIONS(2873), + [1143] = { + [sym__concat] = ACTIONS(2831), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_RPAREN] = ACTIONS(2831), + [anon_sym_AMP_AMP] = ACTIONS(2831), + [anon_sym_PIPE_PIPE] = ACTIONS(2831), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2831), + [anon_sym_EQ_TILDE] = ACTIONS(2831), + [anon_sym_EQ_EQ] = ACTIONS(2831), + [anon_sym_EQ] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2831), + [anon_sym_GT] = ACTIONS(2831), + [anon_sym_BANG_EQ] = ACTIONS(2831), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2873), + [sym_test_operator] = ACTIONS(2831), }, - [1175] = { + [1144] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3735), + [sym_regex_without_right_brace] = ACTIONS(3647), }, - [1176] = { - [sym_concatenation] = STATE(839), + [1145] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3737), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3649), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -39233,48 +35190,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1177] = { - [sym__concat] = ACTIONS(2881), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_RPAREN] = ACTIONS(2881), - [anon_sym_AMP_AMP] = ACTIONS(2881), - [anon_sym_PIPE_PIPE] = ACTIONS(2881), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2881), - [anon_sym_EQ_TILDE] = ACTIONS(2881), - [anon_sym_EQ_EQ] = ACTIONS(2881), - [anon_sym_EQ] = ACTIONS(2883), - [anon_sym_LT] = ACTIONS(2881), - [anon_sym_GT] = ACTIONS(2881), - [anon_sym_BANG_EQ] = ACTIONS(2881), + [1146] = { + [sym__concat] = ACTIONS(2839), + [anon_sym_PIPE] = ACTIONS(2841), + [anon_sym_RPAREN] = ACTIONS(2839), + [anon_sym_AMP_AMP] = ACTIONS(2839), + [anon_sym_PIPE_PIPE] = ACTIONS(2839), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2839), + [anon_sym_EQ_TILDE] = ACTIONS(2839), + [anon_sym_EQ_EQ] = ACTIONS(2839), + [anon_sym_EQ] = ACTIONS(2841), + [anon_sym_LT] = ACTIONS(2839), + [anon_sym_GT] = ACTIONS(2839), + [anon_sym_BANG_EQ] = ACTIONS(2839), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2881), + [sym_test_operator] = ACTIONS(2839), }, - [1178] = { + [1147] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3739), + [sym_regex_without_right_brace] = ACTIONS(3651), }, - [1179] = { - [sym_concatenation] = STATE(839), + [1148] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3741), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3653), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -39282,32 +35239,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1180] = { + [1149] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3743), + [sym_regex_without_right_brace] = ACTIONS(3655), }, - [1181] = { - [sym_concatenation] = STATE(839), + [1150] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3723), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3635), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -39315,28 +35272,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1182] = { - [sym_concatenation] = STATE(1613), + [1151] = { + [sym_concatenation] = STATE(1563), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1613), - [anon_sym_RBRACE] = ACTIONS(3745), - [anon_sym_EQ] = ACTIONS(3747), + [aux_sym_expansion_repeat1] = STATE(1563), + [anon_sym_RBRACE] = ACTIONS(3657), + [anon_sym_EQ] = ACTIONS(3659), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3749), + [anon_sym_POUND] = ACTIONS(3661), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3747), - [anon_sym_COLON_QMARK] = ACTIONS(3747), - [anon_sym_COLON_DASH] = ACTIONS(3747), - [anon_sym_PERCENT] = ACTIONS(3747), - [anon_sym_DASH] = ACTIONS(3747), + [anon_sym_COLON] = ACTIONS(3659), + [anon_sym_COLON_QMARK] = ACTIONS(3659), + [anon_sym_COLON_DASH] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -39344,44 +35301,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1183] = { - [sym__concat] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_RPAREN] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2897), - [anon_sym_PIPE_PIPE] = ACTIONS(2897), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2897), - [anon_sym_EQ_TILDE] = ACTIONS(2897), - [anon_sym_EQ_EQ] = ACTIONS(2897), - [anon_sym_EQ] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2897), - [anon_sym_GT] = ACTIONS(2897), - [anon_sym_BANG_EQ] = ACTIONS(2897), + [1152] = { + [sym__concat] = ACTIONS(2855), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2855), + [anon_sym_EQ_TILDE] = ACTIONS(2855), + [anon_sym_EQ_EQ] = ACTIONS(2855), + [anon_sym_EQ] = ACTIONS(2857), + [anon_sym_LT] = ACTIONS(2855), + [anon_sym_GT] = ACTIONS(2855), + [anon_sym_BANG_EQ] = ACTIONS(2855), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2897), + [sym_test_operator] = ACTIONS(2855), }, - [1184] = { - [sym_concatenation] = STATE(1615), + [1153] = { + [sym_concatenation] = STATE(1565), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1615), - [anon_sym_RBRACE] = ACTIONS(3751), - [anon_sym_EQ] = ACTIONS(3753), + [aux_sym_expansion_repeat1] = STATE(1565), + [anon_sym_RBRACE] = ACTIONS(3663), + [anon_sym_EQ] = ACTIONS(3665), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3755), + [anon_sym_POUND] = ACTIONS(3667), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3753), - [anon_sym_COLON_QMARK] = ACTIONS(3753), - [anon_sym_COLON_DASH] = ACTIONS(3753), - [anon_sym_PERCENT] = ACTIONS(3753), - [anon_sym_DASH] = ACTIONS(3753), + [anon_sym_COLON] = ACTIONS(3665), + [anon_sym_COLON_QMARK] = ACTIONS(3665), + [anon_sym_COLON_DASH] = ACTIONS(3665), + [anon_sym_PERCENT] = ACTIONS(3665), + [anon_sym_DASH] = ACTIONS(3665), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -39389,40 +35346,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1185] = { - [sym_variable_name] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(2141), - [anon_sym_RPAREN] = ACTIONS(2141), - [anon_sym_SEMI_SEMI] = ACTIONS(2141), - [anon_sym_PIPE_AMP] = ACTIONS(2141), - [anon_sym_AMP_AMP] = ACTIONS(2141), - [anon_sym_PIPE_PIPE] = ACTIONS(2141), - [sym__special_characters] = ACTIONS(2141), - [anon_sym_DQUOTE] = ACTIONS(2141), - [anon_sym_DOLLAR] = ACTIONS(2141), - [sym_raw_string] = ACTIONS(2141), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2141), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2141), - [anon_sym_BQUOTE] = ACTIONS(2141), - [anon_sym_LT_LPAREN] = ACTIONS(2141), - [anon_sym_GT_LPAREN] = ACTIONS(2141), + [1154] = { + [sym_variable_name] = ACTIONS(2127), + [anon_sym_PIPE] = ACTIONS(2129), + [anon_sym_RPAREN] = ACTIONS(2129), + [anon_sym_SEMI_SEMI] = ACTIONS(2129), + [anon_sym_PIPE_AMP] = ACTIONS(2129), + [anon_sym_AMP_AMP] = ACTIONS(2129), + [anon_sym_PIPE_PIPE] = ACTIONS(2129), + [sym__special_characters] = ACTIONS(2129), + [anon_sym_DQUOTE] = ACTIONS(2129), + [anon_sym_DOLLAR] = ACTIONS(2129), + [sym_raw_string] = ACTIONS(2129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2129), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2129), + [anon_sym_BQUOTE] = ACTIONS(2129), + [anon_sym_LT_LPAREN] = ACTIONS(2129), + [anon_sym_GT_LPAREN] = ACTIONS(2129), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2141), - [sym_word] = ACTIONS(2141), - [anon_sym_SEMI] = ACTIONS(2141), - [anon_sym_LF] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2141), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2129), + [sym_word] = ACTIONS(2129), + [anon_sym_SEMI] = ACTIONS(2129), + [anon_sym_LF] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2129), }, - [1186] = { - [sym_concatenation] = STATE(1019), + [1155] = { + [sym_concatenation] = STATE(1009), [sym_string] = STATE(563), [sym_simple_expansion] = STATE(563), [sym_string_expansion] = STATE(563), [sym_expansion] = STATE(563), [sym_command_substitution] = STATE(563), [sym_process_substitution] = STATE(563), - [aux_sym_for_statement_repeat1] = STATE(1019), - [anon_sym_RPAREN] = ACTIONS(3757), + [aux_sym_for_statement_repeat1] = STATE(1009), + [anon_sym_RPAREN] = ACTIONS(3669), [sym__special_characters] = ACTIONS(1113), [anon_sym_DQUOTE] = ACTIONS(1115), [anon_sym_DOLLAR] = ACTIONS(1117), @@ -39435,69 +35392,690 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(1119), }, - [1187] = { - [sym__concat] = ACTIONS(2752), - [sym_variable_name] = ACTIONS(2752), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_SEMI_SEMI] = ACTIONS(2754), - [anon_sym_PIPE_AMP] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [sym__special_characters] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2754), - [anon_sym_DOLLAR] = ACTIONS(2754), - [sym_raw_string] = ACTIONS(2754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2754), - [anon_sym_BQUOTE] = ACTIONS(2754), - [anon_sym_LT_LPAREN] = ACTIONS(2754), - [anon_sym_GT_LPAREN] = ACTIONS(2754), + [1156] = { + [sym__concat] = ACTIONS(2710), + [sym_variable_name] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2712), + [anon_sym_RPAREN] = ACTIONS(2712), + [anon_sym_SEMI_SEMI] = ACTIONS(2712), + [anon_sym_PIPE_AMP] = ACTIONS(2712), + [anon_sym_AMP_AMP] = ACTIONS(2712), + [anon_sym_PIPE_PIPE] = ACTIONS(2712), + [sym__special_characters] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [anon_sym_DOLLAR] = ACTIONS(2712), + [sym_raw_string] = ACTIONS(2712), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2712), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2712), + [anon_sym_BQUOTE] = ACTIONS(2712), + [anon_sym_LT_LPAREN] = ACTIONS(2712), + [anon_sym_GT_LPAREN] = ACTIONS(2712), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2754), - [sym_word] = ACTIONS(2754), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_LF] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2754), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2712), + [sym_word] = ACTIONS(2712), + [anon_sym_SEMI] = ACTIONS(2712), + [anon_sym_LF] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2712), }, - [1188] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(3759), + [1157] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(3671), [sym_comment] = ACTIONS(53), }, - [1189] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(3761), + [1158] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(3673), [sym_comment] = ACTIONS(53), }, - [1190] = { - [anon_sym_RBRACE] = ACTIONS(3761), + [1159] = { + [anon_sym_RBRACE] = ACTIONS(3673), [sym_comment] = ACTIONS(53), }, - [1191] = { - [sym_concatenation] = STATE(1620), + [1160] = { + [sym_concatenation] = STATE(1570), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1620), - [anon_sym_RBRACE] = ACTIONS(3763), - [anon_sym_EQ] = ACTIONS(3765), + [aux_sym_expansion_repeat1] = STATE(1570), + [anon_sym_RBRACE] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3677), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3767), + [anon_sym_POUND] = ACTIONS(3679), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3765), - [anon_sym_COLON_QMARK] = ACTIONS(3765), - [anon_sym_COLON_DASH] = ACTIONS(3765), - [anon_sym_PERCENT] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), + [anon_sym_COLON] = ACTIONS(3677), + [anon_sym_COLON_QMARK] = ACTIONS(3677), + [anon_sym_COLON_DASH] = ACTIONS(3677), + [anon_sym_PERCENT] = ACTIONS(3677), + [anon_sym_DASH] = ACTIONS(3677), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1161] = { + [sym__concat] = ACTIONS(2788), + [sym_variable_name] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_RPAREN] = ACTIONS(2790), + [anon_sym_SEMI_SEMI] = ACTIONS(2790), + [anon_sym_PIPE_AMP] = ACTIONS(2790), + [anon_sym_AMP_AMP] = ACTIONS(2790), + [anon_sym_PIPE_PIPE] = ACTIONS(2790), + [sym__special_characters] = ACTIONS(2790), + [anon_sym_DQUOTE] = ACTIONS(2790), + [anon_sym_DOLLAR] = ACTIONS(2790), + [sym_raw_string] = ACTIONS(2790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2790), + [anon_sym_BQUOTE] = ACTIONS(2790), + [anon_sym_LT_LPAREN] = ACTIONS(2790), + [anon_sym_GT_LPAREN] = ACTIONS(2790), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2790), + [sym_word] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_LF] = ACTIONS(2788), + [anon_sym_AMP] = ACTIONS(2790), + }, + [1162] = { + [sym_concatenation] = STATE(1573), + [sym_string] = STATE(1572), + [sym_simple_expansion] = STATE(1572), + [sym_string_expansion] = STATE(1572), + [sym_expansion] = STATE(1572), + [sym_command_substitution] = STATE(1572), + [sym_process_substitution] = STATE(1572), + [anon_sym_RBRACE] = ACTIONS(3673), + [sym__special_characters] = ACTIONS(3681), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(3683), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3683), + }, + [1163] = { + [sym__concat] = ACTIONS(2831), + [sym_variable_name] = ACTIONS(2831), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_RPAREN] = ACTIONS(2833), + [anon_sym_SEMI_SEMI] = ACTIONS(2833), + [anon_sym_PIPE_AMP] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [sym__special_characters] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_DOLLAR] = ACTIONS(2833), + [sym_raw_string] = ACTIONS(2833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2833), + [anon_sym_BQUOTE] = ACTIONS(2833), + [anon_sym_LT_LPAREN] = ACTIONS(2833), + [anon_sym_GT_LPAREN] = ACTIONS(2833), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2833), + [sym_word] = ACTIONS(2833), + [anon_sym_SEMI] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(2833), + }, + [1164] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3685), + }, + [1165] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3687), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1166] = { + [sym__concat] = ACTIONS(2839), + [sym_variable_name] = ACTIONS(2839), + [anon_sym_PIPE] = ACTIONS(2841), + [anon_sym_RPAREN] = ACTIONS(2841), + [anon_sym_SEMI_SEMI] = ACTIONS(2841), + [anon_sym_PIPE_AMP] = ACTIONS(2841), + [anon_sym_AMP_AMP] = ACTIONS(2841), + [anon_sym_PIPE_PIPE] = ACTIONS(2841), + [sym__special_characters] = ACTIONS(2841), + [anon_sym_DQUOTE] = ACTIONS(2841), + [anon_sym_DOLLAR] = ACTIONS(2841), + [sym_raw_string] = ACTIONS(2841), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2841), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2841), + [anon_sym_BQUOTE] = ACTIONS(2841), + [anon_sym_LT_LPAREN] = ACTIONS(2841), + [anon_sym_GT_LPAREN] = ACTIONS(2841), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2841), + [sym_word] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym_LF] = ACTIONS(2839), + [anon_sym_AMP] = ACTIONS(2841), + }, + [1167] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3689), + }, + [1168] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1169] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3693), + }, + [1170] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3673), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1171] = { + [sym_concatenation] = STATE(1580), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1580), + [anon_sym_RBRACE] = ACTIONS(3695), + [anon_sym_EQ] = ACTIONS(3697), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(3697), + [anon_sym_COLON_QMARK] = ACTIONS(3697), + [anon_sym_COLON_DASH] = ACTIONS(3697), + [anon_sym_PERCENT] = ACTIONS(3697), + [anon_sym_DASH] = ACTIONS(3697), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1172] = { + [sym__concat] = ACTIONS(2855), + [sym_variable_name] = ACTIONS(2855), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2857), + [anon_sym_SEMI_SEMI] = ACTIONS(2857), + [anon_sym_PIPE_AMP] = ACTIONS(2857), + [anon_sym_AMP_AMP] = ACTIONS(2857), + [anon_sym_PIPE_PIPE] = ACTIONS(2857), + [sym__special_characters] = ACTIONS(2857), + [anon_sym_DQUOTE] = ACTIONS(2857), + [anon_sym_DOLLAR] = ACTIONS(2857), + [sym_raw_string] = ACTIONS(2857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2857), + [anon_sym_BQUOTE] = ACTIONS(2857), + [anon_sym_LT_LPAREN] = ACTIONS(2857), + [anon_sym_GT_LPAREN] = ACTIONS(2857), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2857), + [sym_word] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_LF] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2857), + }, + [1173] = { + [sym_concatenation] = STATE(1582), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1582), + [anon_sym_RBRACE] = ACTIONS(3701), + [anon_sym_EQ] = ACTIONS(3703), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3705), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(3703), + [anon_sym_COLON_QMARK] = ACTIONS(3703), + [anon_sym_COLON_DASH] = ACTIONS(3703), + [anon_sym_PERCENT] = ACTIONS(3703), + [anon_sym_DASH] = ACTIONS(3703), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1174] = { + [sym__concat] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2712), + [anon_sym_RPAREN] = ACTIONS(2712), + [anon_sym_SEMI_SEMI] = ACTIONS(2712), + [anon_sym_PIPE_AMP] = ACTIONS(2712), + [anon_sym_AMP_AMP] = ACTIONS(2712), + [anon_sym_PIPE_PIPE] = ACTIONS(2712), + [sym__special_characters] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [anon_sym_DOLLAR] = ACTIONS(2712), + [sym_raw_string] = ACTIONS(2712), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2712), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2712), + [anon_sym_BQUOTE] = ACTIONS(2712), + [anon_sym_LT_LPAREN] = ACTIONS(2712), + [anon_sym_GT_LPAREN] = ACTIONS(2712), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2712), + [sym_word] = ACTIONS(2712), + [anon_sym_SEMI] = ACTIONS(2712), + [anon_sym_LF] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2712), + }, + [1175] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(3707), + [sym_comment] = ACTIONS(53), + }, + [1176] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(3709), + [sym_comment] = ACTIONS(53), + }, + [1177] = { + [anon_sym_RBRACE] = ACTIONS(3709), + [sym_comment] = ACTIONS(53), + }, + [1178] = { + [sym_concatenation] = STATE(1586), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1586), + [anon_sym_RBRACE] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3713), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3715), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(3713), + [anon_sym_COLON_QMARK] = ACTIONS(3713), + [anon_sym_COLON_DASH] = ACTIONS(3713), + [anon_sym_PERCENT] = ACTIONS(3713), + [anon_sym_DASH] = ACTIONS(3713), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1179] = { + [sym__concat] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_RPAREN] = ACTIONS(2790), + [anon_sym_SEMI_SEMI] = ACTIONS(2790), + [anon_sym_PIPE_AMP] = ACTIONS(2790), + [anon_sym_AMP_AMP] = ACTIONS(2790), + [anon_sym_PIPE_PIPE] = ACTIONS(2790), + [sym__special_characters] = ACTIONS(2790), + [anon_sym_DQUOTE] = ACTIONS(2790), + [anon_sym_DOLLAR] = ACTIONS(2790), + [sym_raw_string] = ACTIONS(2790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2790), + [anon_sym_BQUOTE] = ACTIONS(2790), + [anon_sym_LT_LPAREN] = ACTIONS(2790), + [anon_sym_GT_LPAREN] = ACTIONS(2790), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2790), + [sym_word] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_LF] = ACTIONS(2788), + [anon_sym_AMP] = ACTIONS(2790), + }, + [1180] = { + [sym_concatenation] = STATE(1589), + [sym_string] = STATE(1588), + [sym_simple_expansion] = STATE(1588), + [sym_string_expansion] = STATE(1588), + [sym_expansion] = STATE(1588), + [sym_command_substitution] = STATE(1588), + [sym_process_substitution] = STATE(1588), + [anon_sym_RBRACE] = ACTIONS(3709), + [sym__special_characters] = ACTIONS(3717), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(3719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3719), + }, + [1181] = { + [sym__concat] = ACTIONS(2831), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_RPAREN] = ACTIONS(2833), + [anon_sym_SEMI_SEMI] = ACTIONS(2833), + [anon_sym_PIPE_AMP] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [sym__special_characters] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_DOLLAR] = ACTIONS(2833), + [sym_raw_string] = ACTIONS(2833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2833), + [anon_sym_BQUOTE] = ACTIONS(2833), + [anon_sym_LT_LPAREN] = ACTIONS(2833), + [anon_sym_GT_LPAREN] = ACTIONS(2833), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2833), + [sym_word] = ACTIONS(2833), + [anon_sym_SEMI] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(2833), + }, + [1182] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3721), + }, + [1183] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3723), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1184] = { + [sym__concat] = ACTIONS(2839), + [anon_sym_PIPE] = ACTIONS(2841), + [anon_sym_RPAREN] = ACTIONS(2841), + [anon_sym_SEMI_SEMI] = ACTIONS(2841), + [anon_sym_PIPE_AMP] = ACTIONS(2841), + [anon_sym_AMP_AMP] = ACTIONS(2841), + [anon_sym_PIPE_PIPE] = ACTIONS(2841), + [sym__special_characters] = ACTIONS(2841), + [anon_sym_DQUOTE] = ACTIONS(2841), + [anon_sym_DOLLAR] = ACTIONS(2841), + [sym_raw_string] = ACTIONS(2841), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2841), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2841), + [anon_sym_BQUOTE] = ACTIONS(2841), + [anon_sym_LT_LPAREN] = ACTIONS(2841), + [anon_sym_GT_LPAREN] = ACTIONS(2841), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2841), + [sym_word] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym_LF] = ACTIONS(2839), + [anon_sym_AMP] = ACTIONS(2841), + }, + [1185] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3725), + }, + [1186] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3727), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1187] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3729), + }, + [1188] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3709), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1189] = { + [sym_concatenation] = STATE(1596), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1596), + [anon_sym_RBRACE] = ACTIONS(3731), + [anon_sym_EQ] = ACTIONS(3733), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(3733), + [anon_sym_COLON_QMARK] = ACTIONS(3733), + [anon_sym_COLON_DASH] = ACTIONS(3733), + [anon_sym_PERCENT] = ACTIONS(3733), + [anon_sym_DASH] = ACTIONS(3733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1190] = { + [sym__concat] = ACTIONS(2855), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2857), + [anon_sym_SEMI_SEMI] = ACTIONS(2857), + [anon_sym_PIPE_AMP] = ACTIONS(2857), + [anon_sym_AMP_AMP] = ACTIONS(2857), + [anon_sym_PIPE_PIPE] = ACTIONS(2857), + [sym__special_characters] = ACTIONS(2857), + [anon_sym_DQUOTE] = ACTIONS(2857), + [anon_sym_DOLLAR] = ACTIONS(2857), + [sym_raw_string] = ACTIONS(2857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2857), + [anon_sym_BQUOTE] = ACTIONS(2857), + [anon_sym_LT_LPAREN] = ACTIONS(2857), + [anon_sym_GT_LPAREN] = ACTIONS(2857), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2857), + [sym_word] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_LF] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2857), + }, + [1191] = { + [sym_concatenation] = STATE(1598), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1598), + [anon_sym_RBRACE] = ACTIONS(3737), + [anon_sym_EQ] = ACTIONS(3739), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3741), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(3739), + [anon_sym_COLON_QMARK] = ACTIONS(3739), + [anon_sym_COLON_DASH] = ACTIONS(3739), + [anon_sym_PERCENT] = ACTIONS(3739), + [anon_sym_DASH] = ACTIONS(3739), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -39506,102 +36084,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [1192] = { - [sym__concat] = ACTIONS(2830), - [sym_variable_name] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_RPAREN] = ACTIONS(2832), - [anon_sym_SEMI_SEMI] = ACTIONS(2832), - [anon_sym_PIPE_AMP] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_PIPE_PIPE] = ACTIONS(2832), - [sym__special_characters] = ACTIONS(2832), - [anon_sym_DQUOTE] = ACTIONS(2832), - [anon_sym_DOLLAR] = ACTIONS(2832), - [sym_raw_string] = ACTIONS(2832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2832), - [anon_sym_BQUOTE] = ACTIONS(2832), - [anon_sym_LT_LPAREN] = ACTIONS(2832), - [anon_sym_GT_LPAREN] = ACTIONS(2832), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2832), - [sym_word] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_LF] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2832), + [sym_file_descriptor] = ACTIONS(2710), + [sym__concat] = ACTIONS(2710), + [sym_variable_name] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2712), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_PIPE_AMP] = ACTIONS(2710), + [anon_sym_AMP_AMP] = ACTIONS(2710), + [anon_sym_PIPE_PIPE] = ACTIONS(2710), + [anon_sym_LT] = ACTIONS(2712), + [anon_sym_GT] = ACTIONS(2712), + [anon_sym_GT_GT] = ACTIONS(2710), + [anon_sym_AMP_GT] = ACTIONS(2712), + [anon_sym_AMP_GT_GT] = ACTIONS(2710), + [anon_sym_LT_AMP] = ACTIONS(2710), + [anon_sym_GT_AMP] = ACTIONS(2710), + [sym__special_characters] = ACTIONS(2710), + [anon_sym_DQUOTE] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2712), + [sym_raw_string] = ACTIONS(2710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2710), + [anon_sym_BQUOTE] = ACTIONS(2710), + [anon_sym_LT_LPAREN] = ACTIONS(2710), + [anon_sym_GT_LPAREN] = ACTIONS(2710), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2710), }, [1193] = { - [sym_concatenation] = STATE(1623), - [sym_string] = STATE(1622), - [sym_simple_expansion] = STATE(1622), - [sym_string_expansion] = STATE(1622), - [sym_expansion] = STATE(1622), - [sym_command_substitution] = STATE(1622), - [sym_process_substitution] = STATE(1622), - [anon_sym_RBRACE] = ACTIONS(3761), - [sym__special_characters] = ACTIONS(3769), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(3771), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(3743), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3771), }, [1194] = { - [sym__concat] = ACTIONS(2873), - [sym_variable_name] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(2875), - [anon_sym_RPAREN] = ACTIONS(2875), - [anon_sym_SEMI_SEMI] = ACTIONS(2875), - [anon_sym_PIPE_AMP] = ACTIONS(2875), - [anon_sym_AMP_AMP] = ACTIONS(2875), - [anon_sym_PIPE_PIPE] = ACTIONS(2875), - [sym__special_characters] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2875), - [anon_sym_DOLLAR] = ACTIONS(2875), - [sym_raw_string] = ACTIONS(2875), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2875), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2875), - [anon_sym_BQUOTE] = ACTIONS(2875), - [anon_sym_LT_LPAREN] = ACTIONS(2875), - [anon_sym_GT_LPAREN] = ACTIONS(2875), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2875), - [sym_word] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym_LF] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2875), + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(3745), + [sym_comment] = ACTIONS(53), }, [1195] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3773), + [anon_sym_RBRACE] = ACTIONS(3745), + [sym_comment] = ACTIONS(53), }, [1196] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(1602), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3775), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(1602), + [anon_sym_RBRACE] = ACTIONS(3747), + [anon_sym_EQ] = ACTIONS(3749), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(3751), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_COLON] = ACTIONS(3749), + [anon_sym_COLON_QMARK] = ACTIONS(3749), + [anon_sym_COLON_DASH] = ACTIONS(3749), + [anon_sym_PERCENT] = ACTIONS(3749), + [anon_sym_DASH] = ACTIONS(3749), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -39610,89 +36157,108 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [1197] = { - [sym__concat] = ACTIONS(2881), - [sym_variable_name] = ACTIONS(2881), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_RPAREN] = ACTIONS(2883), - [anon_sym_SEMI_SEMI] = ACTIONS(2883), - [anon_sym_PIPE_AMP] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_PIPE_PIPE] = ACTIONS(2883), - [sym__special_characters] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2883), - [sym_raw_string] = ACTIONS(2883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2883), - [anon_sym_BQUOTE] = ACTIONS(2883), - [anon_sym_LT_LPAREN] = ACTIONS(2883), - [anon_sym_GT_LPAREN] = ACTIONS(2883), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2883), - [sym_word] = ACTIONS(2883), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym_LF] = ACTIONS(2881), - [anon_sym_AMP] = ACTIONS(2883), + [sym_file_descriptor] = ACTIONS(2788), + [sym__concat] = ACTIONS(2788), + [sym_variable_name] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_RPAREN] = ACTIONS(2788), + [anon_sym_PIPE_AMP] = ACTIONS(2788), + [anon_sym_AMP_AMP] = ACTIONS(2788), + [anon_sym_PIPE_PIPE] = ACTIONS(2788), + [anon_sym_LT] = ACTIONS(2790), + [anon_sym_GT] = ACTIONS(2790), + [anon_sym_GT_GT] = ACTIONS(2788), + [anon_sym_AMP_GT] = ACTIONS(2790), + [anon_sym_AMP_GT_GT] = ACTIONS(2788), + [anon_sym_LT_AMP] = ACTIONS(2788), + [anon_sym_GT_AMP] = ACTIONS(2788), + [sym__special_characters] = ACTIONS(2788), + [anon_sym_DQUOTE] = ACTIONS(2788), + [anon_sym_DOLLAR] = ACTIONS(2790), + [sym_raw_string] = ACTIONS(2788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2788), + [anon_sym_BQUOTE] = ACTIONS(2788), + [anon_sym_LT_LPAREN] = ACTIONS(2788), + [anon_sym_GT_LPAREN] = ACTIONS(2788), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2788), }, [1198] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3777), + [sym_concatenation] = STATE(1605), + [sym_string] = STATE(1604), + [sym_simple_expansion] = STATE(1604), + [sym_string_expansion] = STATE(1604), + [sym_expansion] = STATE(1604), + [sym_command_substitution] = STATE(1604), + [sym_process_substitution] = STATE(1604), + [anon_sym_RBRACE] = ACTIONS(3745), + [sym__special_characters] = ACTIONS(3753), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(3755), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3755), }, [1199] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3779), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(2831), + [sym__concat] = ACTIONS(2831), + [sym_variable_name] = ACTIONS(2831), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_RPAREN] = ACTIONS(2831), + [anon_sym_PIPE_AMP] = ACTIONS(2831), + [anon_sym_AMP_AMP] = ACTIONS(2831), + [anon_sym_PIPE_PIPE] = ACTIONS(2831), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_GT_GT] = ACTIONS(2831), + [anon_sym_AMP_GT] = ACTIONS(2833), + [anon_sym_AMP_GT_GT] = ACTIONS(2831), + [anon_sym_LT_AMP] = ACTIONS(2831), + [anon_sym_GT_AMP] = ACTIONS(2831), + [sym__special_characters] = ACTIONS(2831), + [anon_sym_DQUOTE] = ACTIONS(2831), + [anon_sym_DOLLAR] = ACTIONS(2833), + [sym_raw_string] = ACTIONS(2831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2831), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2831), + [anon_sym_BQUOTE] = ACTIONS(2831), + [anon_sym_LT_LPAREN] = ACTIONS(2831), + [anon_sym_GT_LPAREN] = ACTIONS(2831), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2831), }, [1200] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3781), + [sym_regex_without_right_brace] = ACTIONS(3757), }, [1201] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3761), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3759), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -39701,14 +36267,220 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [1202] = { - [sym_concatenation] = STATE(1630), + [sym_file_descriptor] = ACTIONS(2839), + [sym__concat] = ACTIONS(2839), + [sym_variable_name] = ACTIONS(2839), + [anon_sym_PIPE] = ACTIONS(2841), + [anon_sym_RPAREN] = ACTIONS(2839), + [anon_sym_PIPE_AMP] = ACTIONS(2839), + [anon_sym_AMP_AMP] = ACTIONS(2839), + [anon_sym_PIPE_PIPE] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2841), + [anon_sym_GT] = ACTIONS(2841), + [anon_sym_GT_GT] = ACTIONS(2839), + [anon_sym_AMP_GT] = ACTIONS(2841), + [anon_sym_AMP_GT_GT] = ACTIONS(2839), + [anon_sym_LT_AMP] = ACTIONS(2839), + [anon_sym_GT_AMP] = ACTIONS(2839), + [sym__special_characters] = ACTIONS(2839), + [anon_sym_DQUOTE] = ACTIONS(2839), + [anon_sym_DOLLAR] = ACTIONS(2841), + [sym_raw_string] = ACTIONS(2839), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2839), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2839), + [anon_sym_BQUOTE] = ACTIONS(2839), + [anon_sym_LT_LPAREN] = ACTIONS(2839), + [anon_sym_GT_LPAREN] = ACTIONS(2839), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2839), + }, + [1203] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3761), + }, + [1204] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1630), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3763), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1205] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3765), + }, + [1206] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3745), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1207] = { + [sym_concatenation] = STATE(1612), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1612), + [anon_sym_RBRACE] = ACTIONS(3767), + [anon_sym_EQ] = ACTIONS(3769), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(3769), + [anon_sym_COLON_QMARK] = ACTIONS(3769), + [anon_sym_COLON_DASH] = ACTIONS(3769), + [anon_sym_PERCENT] = ACTIONS(3769), + [anon_sym_DASH] = ACTIONS(3769), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1208] = { + [sym_file_descriptor] = ACTIONS(2855), + [sym__concat] = ACTIONS(2855), + [sym_variable_name] = ACTIONS(2855), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2855), + [anon_sym_PIPE_AMP] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [anon_sym_LT] = ACTIONS(2857), + [anon_sym_GT] = ACTIONS(2857), + [anon_sym_GT_GT] = ACTIONS(2855), + [anon_sym_AMP_GT] = ACTIONS(2857), + [anon_sym_AMP_GT_GT] = ACTIONS(2855), + [anon_sym_LT_AMP] = ACTIONS(2855), + [anon_sym_GT_AMP] = ACTIONS(2855), + [sym__special_characters] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(2855), + [anon_sym_DOLLAR] = ACTIONS(2857), + [sym_raw_string] = ACTIONS(2855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2855), + [anon_sym_BQUOTE] = ACTIONS(2855), + [anon_sym_LT_LPAREN] = ACTIONS(2855), + [anon_sym_GT_LPAREN] = ACTIONS(2855), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2855), + }, + [1209] = { + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1614), + [anon_sym_RBRACE] = ACTIONS(3773), + [anon_sym_EQ] = ACTIONS(3775), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3777), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(3775), + [anon_sym_COLON_QMARK] = ACTIONS(3775), + [anon_sym_COLON_DASH] = ACTIONS(3775), + [anon_sym_PERCENT] = ACTIONS(3775), + [anon_sym_DASH] = ACTIONS(3775), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1210] = { + [sym__concat] = ACTIONS(2710), + [anon_sym_DQUOTE] = ACTIONS(2712), + [anon_sym_DOLLAR] = ACTIONS(2712), + [sym__string_content] = ACTIONS(2710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2712), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2712), + [anon_sym_BQUOTE] = ACTIONS(2712), + [sym_comment] = ACTIONS(177), + }, + [1211] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(3779), + [sym_comment] = ACTIONS(53), + }, + [1212] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(3781), + [sym_comment] = ACTIONS(53), + }, + [1213] = { + [anon_sym_RBRACE] = ACTIONS(3781), + [sym_comment] = ACTIONS(53), + }, + [1214] = { + [sym_concatenation] = STATE(1618), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1618), [anon_sym_RBRACE] = ACTIONS(3783), [anon_sym_EQ] = ACTIONS(3785), [sym__special_characters] = ACTIONS(747), @@ -39729,314 +36501,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1203] = { - [sym__concat] = ACTIONS(2897), - [sym_variable_name] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_RPAREN] = ACTIONS(2899), - [anon_sym_SEMI_SEMI] = ACTIONS(2899), - [anon_sym_PIPE_AMP] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_PIPE_PIPE] = ACTIONS(2899), - [sym__special_characters] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2899), - [anon_sym_DOLLAR] = ACTIONS(2899), - [sym_raw_string] = ACTIONS(2899), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2899), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2899), - [anon_sym_BQUOTE] = ACTIONS(2899), - [anon_sym_LT_LPAREN] = ACTIONS(2899), - [anon_sym_GT_LPAREN] = ACTIONS(2899), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2899), - [sym_word] = ACTIONS(2899), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym_LF] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2899), - }, - [1204] = { - [sym_concatenation] = STATE(1632), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1632), - [anon_sym_RBRACE] = ACTIONS(3789), - [anon_sym_EQ] = ACTIONS(3791), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3793), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3791), - [anon_sym_COLON_QMARK] = ACTIONS(3791), - [anon_sym_COLON_DASH] = ACTIONS(3791), - [anon_sym_PERCENT] = ACTIONS(3791), - [anon_sym_DASH] = ACTIONS(3791), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1205] = { - [sym__concat] = ACTIONS(2752), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_SEMI_SEMI] = ACTIONS(2754), - [anon_sym_PIPE_AMP] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [sym__special_characters] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2754), - [anon_sym_DOLLAR] = ACTIONS(2754), - [sym_raw_string] = ACTIONS(2754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2754), - [anon_sym_BQUOTE] = ACTIONS(2754), - [anon_sym_LT_LPAREN] = ACTIONS(2754), - [anon_sym_GT_LPAREN] = ACTIONS(2754), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2754), - [sym_word] = ACTIONS(2754), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_LF] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2754), - }, - [1206] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(3795), - [sym_comment] = ACTIONS(53), - }, - [1207] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(3797), - [sym_comment] = ACTIONS(53), - }, - [1208] = { - [anon_sym_RBRACE] = ACTIONS(3797), - [sym_comment] = ACTIONS(53), - }, - [1209] = { - [sym_concatenation] = STATE(1636), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1636), - [anon_sym_RBRACE] = ACTIONS(3799), - [anon_sym_EQ] = ACTIONS(3801), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3803), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3801), - [anon_sym_COLON_QMARK] = ACTIONS(3801), - [anon_sym_COLON_DASH] = ACTIONS(3801), - [anon_sym_PERCENT] = ACTIONS(3801), - [anon_sym_DASH] = ACTIONS(3801), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1210] = { - [sym__concat] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_RPAREN] = ACTIONS(2832), - [anon_sym_SEMI_SEMI] = ACTIONS(2832), - [anon_sym_PIPE_AMP] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_PIPE_PIPE] = ACTIONS(2832), - [sym__special_characters] = ACTIONS(2832), - [anon_sym_DQUOTE] = ACTIONS(2832), - [anon_sym_DOLLAR] = ACTIONS(2832), - [sym_raw_string] = ACTIONS(2832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2832), - [anon_sym_BQUOTE] = ACTIONS(2832), - [anon_sym_LT_LPAREN] = ACTIONS(2832), - [anon_sym_GT_LPAREN] = ACTIONS(2832), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2832), - [sym_word] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_LF] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2832), - }, - [1211] = { - [sym_concatenation] = STATE(1639), - [sym_string] = STATE(1638), - [sym_simple_expansion] = STATE(1638), - [sym_string_expansion] = STATE(1638), - [sym_expansion] = STATE(1638), - [sym_command_substitution] = STATE(1638), - [sym_process_substitution] = STATE(1638), - [anon_sym_RBRACE] = ACTIONS(3797), - [sym__special_characters] = ACTIONS(3805), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(3807), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3807), - }, - [1212] = { - [sym__concat] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(2875), - [anon_sym_RPAREN] = ACTIONS(2875), - [anon_sym_SEMI_SEMI] = ACTIONS(2875), - [anon_sym_PIPE_AMP] = ACTIONS(2875), - [anon_sym_AMP_AMP] = ACTIONS(2875), - [anon_sym_PIPE_PIPE] = ACTIONS(2875), - [sym__special_characters] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2875), - [anon_sym_DOLLAR] = ACTIONS(2875), - [sym_raw_string] = ACTIONS(2875), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2875), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2875), - [anon_sym_BQUOTE] = ACTIONS(2875), - [anon_sym_LT_LPAREN] = ACTIONS(2875), - [anon_sym_GT_LPAREN] = ACTIONS(2875), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2875), - [sym_word] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym_LF] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2875), - }, - [1213] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3809), - }, - [1214] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3811), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, [1215] = { - [sym__concat] = ACTIONS(2881), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_RPAREN] = ACTIONS(2883), - [anon_sym_SEMI_SEMI] = ACTIONS(2883), - [anon_sym_PIPE_AMP] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_PIPE_PIPE] = ACTIONS(2883), - [sym__special_characters] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2883), - [sym_raw_string] = ACTIONS(2883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2883), - [anon_sym_BQUOTE] = ACTIONS(2883), - [anon_sym_LT_LPAREN] = ACTIONS(2883), - [anon_sym_GT_LPAREN] = ACTIONS(2883), + [sym__concat] = ACTIONS(2788), + [anon_sym_DQUOTE] = ACTIONS(2790), + [anon_sym_DOLLAR] = ACTIONS(2790), + [sym__string_content] = ACTIONS(2788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2790), + [anon_sym_BQUOTE] = ACTIONS(2790), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2883), - [sym_word] = ACTIONS(2883), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym_LF] = ACTIONS(2881), - [anon_sym_AMP] = ACTIONS(2883), }, [1216] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3813), + [sym_concatenation] = STATE(1621), + [sym_string] = STATE(1620), + [sym_simple_expansion] = STATE(1620), + [sym_string_expansion] = STATE(1620), + [sym_expansion] = STATE(1620), + [sym_command_substitution] = STATE(1620), + [sym_process_substitution] = STATE(1620), + [anon_sym_RBRACE] = ACTIONS(3781), + [sym__special_characters] = ACTIONS(3789), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(3791), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3791), }, [1217] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3815), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym__concat] = ACTIONS(2831), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_DOLLAR] = ACTIONS(2833), + [sym__string_content] = ACTIONS(2831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2833), + [anon_sym_BQUOTE] = ACTIONS(2833), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), }, [1218] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3817), + [sym_regex_without_right_brace] = ACTIONS(3793), }, [1219] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3797), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3795), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -40045,80 +36576,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [1220] = { - [sym_concatenation] = STATE(1646), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1646), - [anon_sym_RBRACE] = ACTIONS(3819), - [anon_sym_EQ] = ACTIONS(3821), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3821), - [anon_sym_COLON_QMARK] = ACTIONS(3821), - [anon_sym_COLON_DASH] = ACTIONS(3821), - [anon_sym_PERCENT] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym__concat] = ACTIONS(2839), + [anon_sym_DQUOTE] = ACTIONS(2841), + [anon_sym_DOLLAR] = ACTIONS(2841), + [sym__string_content] = ACTIONS(2839), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2841), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2841), + [anon_sym_BQUOTE] = ACTIONS(2841), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), }, [1221] = { - [sym__concat] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_RPAREN] = ACTIONS(2899), - [anon_sym_SEMI_SEMI] = ACTIONS(2899), - [anon_sym_PIPE_AMP] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_PIPE_PIPE] = ACTIONS(2899), - [sym__special_characters] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2899), - [anon_sym_DOLLAR] = ACTIONS(2899), - [sym_raw_string] = ACTIONS(2899), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2899), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2899), - [anon_sym_BQUOTE] = ACTIONS(2899), - [anon_sym_LT_LPAREN] = ACTIONS(2899), - [anon_sym_GT_LPAREN] = ACTIONS(2899), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2899), - [sym_word] = ACTIONS(2899), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym_LF] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2899), + [sym_regex_without_right_brace] = ACTIONS(3797), }, [1222] = { - [sym_concatenation] = STATE(1648), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1648), - [anon_sym_RBRACE] = ACTIONS(3825), - [anon_sym_EQ] = ACTIONS(3827), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3799), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3829), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3827), - [anon_sym_COLON_QMARK] = ACTIONS(3827), - [anon_sym_COLON_DASH] = ACTIONS(3827), - [anon_sym_PERCENT] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3827), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -40127,71 +36619,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [1223] = { - [sym_file_descriptor] = ACTIONS(2752), - [sym__concat] = ACTIONS(2752), - [sym_variable_name] = ACTIONS(2752), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_RPAREN] = ACTIONS(2752), - [anon_sym_PIPE_AMP] = ACTIONS(2752), - [anon_sym_AMP_AMP] = ACTIONS(2752), - [anon_sym_PIPE_PIPE] = ACTIONS(2752), - [anon_sym_LT] = ACTIONS(2754), - [anon_sym_GT] = ACTIONS(2754), - [anon_sym_GT_GT] = ACTIONS(2752), - [anon_sym_AMP_GT] = ACTIONS(2754), - [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(2754), - [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(53), - [sym_word] = ACTIONS(2752), + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3801), }, [1224] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(3831), - [sym_comment] = ACTIONS(53), - }, - [1225] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(3833), - [sym_comment] = ACTIONS(53), - }, - [1226] = { - [anon_sym_RBRACE] = ACTIONS(3833), - [sym_comment] = ACTIONS(53), - }, - [1227] = { - [sym_concatenation] = STATE(1652), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1652), - [anon_sym_RBRACE] = ACTIONS(3835), - [anon_sym_EQ] = ACTIONS(3837), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3781), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3839), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3837), - [anon_sym_COLON_QMARK] = ACTIONS(3837), - [anon_sym_COLON_DASH] = ACTIONS(3837), - [anon_sym_PERCENT] = ACTIONS(3837), - [anon_sym_DASH] = ACTIONS(3837), + [anon_sym_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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1225] = { + [sym_concatenation] = STATE(1628), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1628), + [anon_sym_RBRACE] = ACTIONS(3803), + [anon_sym_EQ] = ACTIONS(3805), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3807), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1226] = { + [sym__concat] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(2857), + [anon_sym_DOLLAR] = ACTIONS(2857), + [sym__string_content] = ACTIONS(2855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2857), + [anon_sym_BQUOTE] = ACTIONS(2857), + [sym_comment] = ACTIONS(177), + }, + [1227] = { + [sym_concatenation] = STATE(1630), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1630), + [anon_sym_RBRACE] = ACTIONS(3809), + [anon_sym_EQ] = ACTIONS(3811), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3813), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(3811), + [anon_sym_COLON_QMARK] = ACTIONS(3811), + [anon_sym_COLON_DASH] = ACTIONS(3811), + [anon_sym_PERCENT] = ACTIONS(3811), + [anon_sym_DASH] = ACTIONS(3811), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -40200,343 +36720,302 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [1228] = { - [sym_file_descriptor] = ACTIONS(2830), - [sym__concat] = ACTIONS(2830), - [sym_variable_name] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_RPAREN] = ACTIONS(2830), - [anon_sym_PIPE_AMP] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_GT_GT] = ACTIONS(2830), - [anon_sym_AMP_GT] = ACTIONS(2832), - [anon_sym_AMP_GT_GT] = ACTIONS(2830), - [anon_sym_LT_AMP] = ACTIONS(2830), - [anon_sym_GT_AMP] = ACTIONS(2830), - [sym__special_characters] = ACTIONS(2830), - [anon_sym_DQUOTE] = ACTIONS(2830), - [anon_sym_DOLLAR] = ACTIONS(2832), - [sym_raw_string] = ACTIONS(2830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2830), - [anon_sym_BQUOTE] = ACTIONS(2830), - [anon_sym_LT_LPAREN] = ACTIONS(2830), - [anon_sym_GT_LPAREN] = ACTIONS(2830), + [sym_string] = STATE(671), + [sym_simple_expansion] = STATE(671), + [sym_string_expansion] = STATE(671), + [sym_expansion] = STATE(671), + [sym_command_substitution] = STATE(671), + [sym_process_substitution] = STATE(671), + [anon_sym_RBRACK] = ACTIONS(3815), + [sym__special_characters] = ACTIONS(2115), + [anon_sym_DQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [sym_raw_string] = ACTIONS(1297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), + [anon_sym_BQUOTE] = ACTIONS(125), + [anon_sym_LT_LPAREN] = ACTIONS(127), + [anon_sym_GT_LPAREN] = ACTIONS(127), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2830), + [sym_word] = ACTIONS(1297), }, [1229] = { - [sym_concatenation] = STATE(1655), - [sym_string] = STATE(1654), - [sym_simple_expansion] = STATE(1654), - [sym_string_expansion] = STATE(1654), - [sym_expansion] = STATE(1654), - [sym_command_substitution] = STATE(1654), - [sym_process_substitution] = STATE(1654), - [anon_sym_RBRACE] = ACTIONS(3833), - [sym__special_characters] = ACTIONS(3841), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(3843), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3843), + [sym__concat] = ACTIONS(3817), + [anon_sym_RBRACE] = ACTIONS(2119), + [anon_sym_EQ] = ACTIONS(3819), + [sym__special_characters] = ACTIONS(3819), + [anon_sym_DQUOTE] = ACTIONS(2119), + [anon_sym_DOLLAR] = ACTIONS(3819), + [sym_raw_string] = ACTIONS(2119), + [anon_sym_POUND] = ACTIONS(2119), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2119), + [aux_sym_SLASH] = ACTIONS(2119), + [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(2119), + [anon_sym_BQUOTE] = ACTIONS(2119), + [anon_sym_LT_LPAREN] = ACTIONS(2119), + [anon_sym_GT_LPAREN] = ACTIONS(2119), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3819), }, [1230] = { - [sym_file_descriptor] = ACTIONS(2873), - [sym__concat] = ACTIONS(2873), - [sym_variable_name] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(2875), - [anon_sym_RPAREN] = ACTIONS(2873), - [anon_sym_PIPE_AMP] = ACTIONS(2873), - [anon_sym_AMP_AMP] = ACTIONS(2873), - [anon_sym_PIPE_PIPE] = ACTIONS(2873), - [anon_sym_LT] = ACTIONS(2875), - [anon_sym_GT] = ACTIONS(2875), - [anon_sym_GT_GT] = ACTIONS(2873), - [anon_sym_AMP_GT] = ACTIONS(2875), - [anon_sym_AMP_GT_GT] = ACTIONS(2873), - [anon_sym_LT_AMP] = ACTIONS(2873), - [anon_sym_GT_AMP] = ACTIONS(2873), - [sym__special_characters] = ACTIONS(2873), - [anon_sym_DQUOTE] = ACTIONS(2873), - [anon_sym_DOLLAR] = ACTIONS(2875), - [sym_raw_string] = ACTIONS(2873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2873), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2873), - [anon_sym_BQUOTE] = ACTIONS(2873), - [anon_sym_LT_LPAREN] = ACTIONS(2873), - [anon_sym_GT_LPAREN] = ACTIONS(2873), + [sym_string] = STATE(671), + [sym_simple_expansion] = STATE(671), + [sym_string_expansion] = STATE(671), + [sym_expansion] = STATE(671), + [sym_command_substitution] = STATE(671), + [sym_process_substitution] = STATE(671), + [anon_sym_RBRACK] = ACTIONS(3821), + [sym__special_characters] = ACTIONS(2115), + [anon_sym_DQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [sym_raw_string] = ACTIONS(1297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), + [anon_sym_BQUOTE] = ACTIONS(125), + [anon_sym_LT_LPAREN] = ACTIONS(127), + [anon_sym_GT_LPAREN] = ACTIONS(127), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2873), + [sym_word] = ACTIONS(1297), }, [1231] = { + [sym__concat] = ACTIONS(3823), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_EQ] = ACTIONS(3825), + [sym__special_characters] = ACTIONS(3825), + [anon_sym_DQUOTE] = ACTIONS(2125), + [anon_sym_DOLLAR] = ACTIONS(3825), + [sym_raw_string] = ACTIONS(2125), + [anon_sym_POUND] = ACTIONS(2125), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2125), + [aux_sym_SLASH] = ACTIONS(2125), + [anon_sym_COLON] = ACTIONS(3825), + [anon_sym_COLON_QMARK] = ACTIONS(3825), + [anon_sym_COLON_DASH] = ACTIONS(3825), + [anon_sym_PERCENT] = ACTIONS(3825), + [anon_sym_DASH] = ACTIONS(3825), + [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(177), - [sym_regex_without_right_brace] = ACTIONS(3845), + [sym_word] = ACTIONS(3825), }, [1232] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3847), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_RBRACK] = ACTIONS(3821), + [sym_comment] = ACTIONS(53), }, [1233] = { - [sym_file_descriptor] = ACTIONS(2881), - [sym__concat] = ACTIONS(2881), - [sym_variable_name] = ACTIONS(2881), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_RPAREN] = ACTIONS(2881), - [anon_sym_PIPE_AMP] = ACTIONS(2881), - [anon_sym_AMP_AMP] = ACTIONS(2881), - [anon_sym_PIPE_PIPE] = ACTIONS(2881), - [anon_sym_LT] = ACTIONS(2883), - [anon_sym_GT] = ACTIONS(2883), - [anon_sym_GT_GT] = ACTIONS(2881), - [anon_sym_AMP_GT] = ACTIONS(2883), - [anon_sym_AMP_GT_GT] = ACTIONS(2881), - [anon_sym_LT_AMP] = ACTIONS(2881), - [anon_sym_GT_AMP] = ACTIONS(2881), - [sym__special_characters] = ACTIONS(2881), - [anon_sym_DQUOTE] = ACTIONS(2881), - [anon_sym_DOLLAR] = ACTIONS(2883), - [sym_raw_string] = ACTIONS(2881), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2881), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2881), - [anon_sym_BQUOTE] = ACTIONS(2881), - [anon_sym_LT_LPAREN] = ACTIONS(2881), - [anon_sym_GT_LPAREN] = ACTIONS(2881), + [sym_string] = STATE(1635), + [sym_simple_expansion] = STATE(1635), + [sym_string_expansion] = STATE(1635), + [sym_expansion] = STATE(1635), + [sym_command_substitution] = STATE(1635), + [sym_process_substitution] = STATE(1635), + [sym__special_characters] = ACTIONS(3827), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(3827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2881), + [sym_word] = ACTIONS(3827), }, [1234] = { + [sym__simple_heredoc_body] = ACTIONS(3829), + [sym__heredoc_body_beginning] = ACTIONS(3829), + [sym_file_descriptor] = ACTIONS(3829), + [sym__concat] = ACTIONS(3829), + [anon_sym_esac] = ACTIONS(3831), + [anon_sym_PIPE] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(3831), + [anon_sym_SEMI_SEMI] = 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(3831), + [anon_sym_EQ_EQ] = ACTIONS(3831), + [anon_sym_LT] = ACTIONS(3831), + [anon_sym_GT] = ACTIONS(3831), + [anon_sym_GT_GT] = ACTIONS(3831), + [anon_sym_AMP_GT] = ACTIONS(3831), + [anon_sym_AMP_GT_GT] = ACTIONS(3831), + [anon_sym_LT_AMP] = ACTIONS(3831), + [anon_sym_GT_AMP] = ACTIONS(3831), + [anon_sym_LT_LT] = ACTIONS(3831), + [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(3831), + [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(177), - [sym_regex_without_right_brace] = ACTIONS(3849), + [sym_word] = ACTIONS(3831), + [anon_sym_SEMI] = ACTIONS(3831), + [anon_sym_LF] = ACTIONS(3829), + [anon_sym_AMP] = ACTIONS(3831), }, [1235] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3851), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_concatenation_repeat1] = STATE(1636), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(693), + [sym_comment] = ACTIONS(53), }, [1236] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3853), + [sym__concat] = ACTIONS(697), + [anon_sym_RBRACE] = ACTIONS(697), + [sym_comment] = ACTIONS(53), }, [1237] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3833), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [aux_sym_string_repeat1] = STATE(406), + [anon_sym_DQUOTE] = ACTIONS(3833), + [anon_sym_DOLLAR] = ACTIONS(229), + [sym__string_content] = ACTIONS(231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), + [anon_sym_BQUOTE] = ACTIONS(237), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), }, [1238] = { - [sym_concatenation] = STATE(1662), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1662), - [anon_sym_RBRACE] = ACTIONS(3855), - [anon_sym_EQ] = ACTIONS(3857), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3859), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3857), - [anon_sym_COLON_QMARK] = ACTIONS(3857), - [anon_sym_COLON_DASH] = ACTIONS(3857), - [anon_sym_PERCENT] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3857), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(727), + [anon_sym_RBRACE] = ACTIONS(727), + [sym_comment] = ACTIONS(53), }, [1239] = { - [sym_file_descriptor] = ACTIONS(2897), - [sym__concat] = ACTIONS(2897), - [sym_variable_name] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_RPAREN] = ACTIONS(2897), - [anon_sym_PIPE_AMP] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2897), - [anon_sym_PIPE_PIPE] = ACTIONS(2897), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [anon_sym_GT_GT] = ACTIONS(2897), - [anon_sym_AMP_GT] = ACTIONS(2899), - [anon_sym_AMP_GT_GT] = ACTIONS(2897), - [anon_sym_LT_AMP] = ACTIONS(2897), - [anon_sym_GT_AMP] = ACTIONS(2897), - [sym__special_characters] = ACTIONS(2897), - [anon_sym_DQUOTE] = ACTIONS(2897), - [anon_sym_DOLLAR] = ACTIONS(2899), - [sym_raw_string] = ACTIONS(2897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2897), - [anon_sym_BQUOTE] = ACTIONS(2897), - [anon_sym_LT_LPAREN] = ACTIONS(2897), - [anon_sym_GT_LPAREN] = ACTIONS(2897), + [sym__concat] = ACTIONS(731), + [anon_sym_RBRACE] = ACTIONS(731), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2897), }, [1240] = { - [sym_concatenation] = STATE(1664), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1664), - [anon_sym_RBRACE] = ACTIONS(3861), - [anon_sym_EQ] = ACTIONS(3863), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3865), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(735), + [anon_sym_RBRACE] = ACTIONS(735), + [sym_comment] = ACTIONS(53), }, [1241] = { - [sym__concat] = ACTIONS(2752), - [anon_sym_DQUOTE] = ACTIONS(2754), - [anon_sym_DOLLAR] = ACTIONS(2754), - [sym__string_content] = ACTIONS(2752), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2754), - [anon_sym_BQUOTE] = ACTIONS(2754), + [sym__simple_heredoc_body] = ACTIONS(3835), + [sym__heredoc_body_beginning] = ACTIONS(3835), + [sym_file_descriptor] = ACTIONS(3835), + [sym__concat] = ACTIONS(3835), + [anon_sym_esac] = ACTIONS(3837), + [anon_sym_PIPE] = ACTIONS(3837), + [anon_sym_RPAREN] = ACTIONS(3837), + [anon_sym_SEMI_SEMI] = ACTIONS(3837), + [anon_sym_PIPE_AMP] = ACTIONS(3837), + [anon_sym_AMP_AMP] = ACTIONS(3837), + [anon_sym_PIPE_PIPE] = ACTIONS(3837), + [anon_sym_EQ_TILDE] = ACTIONS(3837), + [anon_sym_EQ_EQ] = ACTIONS(3837), + [anon_sym_LT] = ACTIONS(3837), + [anon_sym_GT] = ACTIONS(3837), + [anon_sym_GT_GT] = ACTIONS(3837), + [anon_sym_AMP_GT] = ACTIONS(3837), + [anon_sym_AMP_GT_GT] = ACTIONS(3837), + [anon_sym_LT_AMP] = ACTIONS(3837), + [anon_sym_GT_AMP] = ACTIONS(3837), + [anon_sym_LT_LT] = ACTIONS(3837), + [anon_sym_LT_LT_DASH] = ACTIONS(3837), + [anon_sym_LT_LT_LT] = ACTIONS(3837), + [sym__special_characters] = ACTIONS(3837), + [anon_sym_DQUOTE] = ACTIONS(3837), + [anon_sym_DOLLAR] = ACTIONS(3837), + [sym_raw_string] = ACTIONS(3837), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3837), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3837), + [anon_sym_BQUOTE] = ACTIONS(3837), + [anon_sym_LT_LPAREN] = ACTIONS(3837), + [anon_sym_GT_LPAREN] = ACTIONS(3837), [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3837), + [anon_sym_SEMI] = ACTIONS(3837), + [anon_sym_LF] = ACTIONS(3835), + [anon_sym_AMP] = ACTIONS(3837), }, [1242] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(3867), + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(3839), [sym_comment] = ACTIONS(53), }, [1243] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(3869), - [sym_comment] = ACTIONS(53), - }, - [1244] = { - [anon_sym_RBRACE] = ACTIONS(3869), - [sym_comment] = ACTIONS(53), - }, - [1245] = { - [sym_concatenation] = STATE(1668), + [sym_concatenation] = STATE(1641), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1668), - [anon_sym_RBRACE] = ACTIONS(3871), - [anon_sym_EQ] = ACTIONS(3873), + [aux_sym_expansion_repeat1] = STATE(1641), + [anon_sym_RBRACE] = ACTIONS(3841), + [anon_sym_EQ] = ACTIONS(3843), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3875), + [anon_sym_POUND] = ACTIONS(3845), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3873), - [anon_sym_COLON_QMARK] = ACTIONS(3873), - [anon_sym_COLON_DASH] = ACTIONS(3873), - [anon_sym_PERCENT] = ACTIONS(3873), - [anon_sym_DASH] = ACTIONS(3873), + [aux_sym_SLASH] = ACTIONS(3847), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1244] = { + [sym_subscript] = STATE(1645), + [sym_variable_name] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3851), + [anon_sym_DASH] = ACTIONS(3851), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3853), + [anon_sym_STAR] = ACTIONS(3851), + [anon_sym_AT] = ACTIONS(3851), + [anon_sym_QMARK] = ACTIONS(3851), + [anon_sym_0] = ACTIONS(3855), + [anon_sym__] = ACTIONS(3855), + }, + [1245] = { + [sym_concatenation] = STATE(1648), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1648), + [anon_sym_RBRACE] = ACTIONS(3857), + [anon_sym_EQ] = ACTIONS(3859), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3861), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(3863), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -40545,548 +37024,637 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [1246] = { - [sym__concat] = ACTIONS(2830), - [anon_sym_DQUOTE] = ACTIONS(2832), - [anon_sym_DOLLAR] = ACTIONS(2832), - [sym__string_content] = ACTIONS(2830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2832), - [anon_sym_BQUOTE] = ACTIONS(2832), + [sym_concatenation] = STATE(1651), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1651), + [anon_sym_RBRACE] = ACTIONS(3865), + [anon_sym_EQ] = ACTIONS(3867), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(3871), + [anon_sym_COLON] = ACTIONS(3867), + [anon_sym_COLON_QMARK] = ACTIONS(3867), + [anon_sym_COLON_DASH] = ACTIONS(3867), + [anon_sym_PERCENT] = ACTIONS(3867), + [anon_sym_DASH] = ACTIONS(3867), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1247] = { - [sym_concatenation] = STATE(1671), - [sym_string] = STATE(1670), - [sym_simple_expansion] = STATE(1670), - [sym_string_expansion] = STATE(1670), - [sym_expansion] = STATE(1670), - [sym_command_substitution] = STATE(1670), - [sym_process_substitution] = STATE(1670), - [anon_sym_RBRACE] = ACTIONS(3869), - [sym__special_characters] = ACTIONS(3877), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(3879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(3873), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(875), + [anon_sym_PIPE_PIPE] = ACTIONS(875), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3879), }, [1248] = { - [sym__concat] = ACTIONS(2873), - [anon_sym_DQUOTE] = ACTIONS(2875), - [anon_sym_DOLLAR] = ACTIONS(2875), - [sym__string_content] = ACTIONS(2873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2875), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2875), - [anon_sym_BQUOTE] = ACTIONS(2875), - [sym_comment] = ACTIONS(177), + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(3873), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(875), + [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_AMP_GT] = ACTIONS(371), + [anon_sym_AMP_GT_GT] = ACTIONS(369), + [anon_sym_LT_AMP] = ACTIONS(369), + [anon_sym_GT_AMP] = ACTIONS(369), + [sym__special_characters] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(369), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), }, [1249] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3881), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_PIPE_AMP] = ACTIONS(925), + [anon_sym_AMP_AMP] = ACTIONS(927), + [anon_sym_PIPE_PIPE] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(3873), + [sym_comment] = ACTIONS(53), }, [1250] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3883), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_PIPE_AMP] = ACTIONS(925), + [anon_sym_AMP_AMP] = ACTIONS(927), + [anon_sym_PIPE_PIPE] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_AMP_GT] = ACTIONS(371), + [anon_sym_AMP_GT_GT] = ACTIONS(369), + [anon_sym_LT_AMP] = ACTIONS(369), + [anon_sym_GT_AMP] = ACTIONS(369), + [sym__special_characters] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(3873), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), }, [1251] = { - [sym__concat] = ACTIONS(2881), - [anon_sym_DQUOTE] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2883), - [sym__string_content] = ACTIONS(2881), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2883), - [anon_sym_BQUOTE] = ACTIONS(2883), - [sym_comment] = ACTIONS(177), + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(3875), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(875), + [anon_sym_PIPE_PIPE] = ACTIONS(875), + [sym_comment] = ACTIONS(53), }, [1252] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3885), + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(3875), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(875), + [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_AMP_GT] = ACTIONS(371), + [anon_sym_AMP_GT_GT] = ACTIONS(369), + [anon_sym_LT_AMP] = ACTIONS(369), + [anon_sym_GT_AMP] = ACTIONS(369), + [sym__special_characters] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(369), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), }, [1253] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3887), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym__concat] = ACTIONS(1642), + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_EQ] = ACTIONS(1644), + [sym__special_characters] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1642), + [anon_sym_POUND] = ACTIONS(1642), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1642), + [anon_sym_COLON] = ACTIONS(1644), + [anon_sym_COLON_QMARK] = ACTIONS(1644), + [anon_sym_COLON_DASH] = ACTIONS(1644), + [anon_sym_PERCENT] = ACTIONS(1644), + [anon_sym_DASH] = ACTIONS(1644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), + [anon_sym_LT_LPAREN] = ACTIONS(1642), + [anon_sym_GT_LPAREN] = ACTIONS(1642), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(1644), }, [1254] = { + [aux_sym_concatenation_repeat1] = STATE(1254), + [sym__concat] = ACTIONS(3877), + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_EQ] = ACTIONS(1644), + [sym__special_characters] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1642), + [anon_sym_POUND] = ACTIONS(1642), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1642), + [anon_sym_COLON] = ACTIONS(1644), + [anon_sym_COLON_QMARK] = ACTIONS(1644), + [anon_sym_COLON_DASH] = ACTIONS(1644), + [anon_sym_PERCENT] = ACTIONS(1644), + [anon_sym_DASH] = ACTIONS(1644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), + [anon_sym_LT_LPAREN] = ACTIONS(1642), + [anon_sym_GT_LPAREN] = ACTIONS(1642), [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3889), + [sym_word] = ACTIONS(1644), }, [1255] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3869), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym__concat] = ACTIONS(1691), + [anon_sym_RBRACE] = ACTIONS(1691), + [anon_sym_EQ] = ACTIONS(1693), + [sym__special_characters] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(1693), + [sym_raw_string] = ACTIONS(1691), + [anon_sym_POUND] = ACTIONS(1691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1691), + [anon_sym_COLON] = ACTIONS(1693), + [anon_sym_COLON_QMARK] = ACTIONS(1693), + [anon_sym_COLON_DASH] = ACTIONS(1693), + [anon_sym_PERCENT] = ACTIONS(1693), + [anon_sym_DASH] = ACTIONS(1693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1691), + [anon_sym_BQUOTE] = ACTIONS(1691), + [anon_sym_LT_LPAREN] = ACTIONS(1691), + [anon_sym_GT_LPAREN] = ACTIONS(1691), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(1693), }, [1256] = { - [sym_concatenation] = STATE(1678), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1678), - [anon_sym_RBRACE] = ACTIONS(3891), - [anon_sym_EQ] = ACTIONS(3893), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3893), - [anon_sym_COLON_QMARK] = ACTIONS(3893), - [anon_sym_COLON_DASH] = ACTIONS(3893), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_DASH] = ACTIONS(3893), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_concatenation] = STATE(1657), + [sym_string] = STATE(1656), + [sym_simple_expansion] = STATE(1656), + [sym_string_expansion] = STATE(1656), + [sym_expansion] = STATE(1656), + [sym_command_substitution] = STATE(1656), + [sym_process_substitution] = STATE(1656), + [anon_sym_RBRACE] = ACTIONS(3880), + [sym__special_characters] = ACTIONS(3882), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(3884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3884), }, [1257] = { - [sym__concat] = ACTIONS(2897), - [anon_sym_DQUOTE] = ACTIONS(2899), - [anon_sym_DOLLAR] = ACTIONS(2899), - [sym__string_content] = ACTIONS(2897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2899), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2899), - [anon_sym_BQUOTE] = ACTIONS(2899), + [sym__concat] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1734), + [sym__special_characters] = ACTIONS(1734), + [anon_sym_DQUOTE] = ACTIONS(1732), + [anon_sym_DOLLAR] = ACTIONS(1734), + [sym_raw_string] = ACTIONS(1732), + [anon_sym_POUND] = ACTIONS(1732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1732), + [anon_sym_COLON] = ACTIONS(1734), + [anon_sym_COLON_QMARK] = ACTIONS(1734), + [anon_sym_COLON_DASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1732), + [anon_sym_BQUOTE] = ACTIONS(1732), + [anon_sym_LT_LPAREN] = ACTIONS(1732), + [anon_sym_GT_LPAREN] = ACTIONS(1732), [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1734), }, [1258] = { - [sym_concatenation] = STATE(1680), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1680), - [anon_sym_RBRACE] = ACTIONS(3897), - [anon_sym_EQ] = ACTIONS(3899), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3899), - [anon_sym_COLON_QMARK] = ACTIONS(3899), - [anon_sym_COLON_DASH] = ACTIONS(3899), - [anon_sym_PERCENT] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_regex_without_right_brace] = ACTIONS(3886), }, [1259] = { - [sym_string] = STATE(681), - [sym_simple_expansion] = STATE(681), - [sym_string_expansion] = STATE(681), - [sym_expansion] = STATE(681), - [sym_command_substitution] = STATE(681), - [sym_process_substitution] = STATE(681), - [anon_sym_RBRACK] = ACTIONS(3903), - [sym__special_characters] = ACTIONS(2127), - [anon_sym_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(117), - [sym_raw_string] = ACTIONS(1309), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_BQUOTE] = ACTIONS(125), - [anon_sym_LT_LPAREN] = ACTIONS(127), - [anon_sym_GT_LPAREN] = ACTIONS(127), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1309), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3888), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1260] = { - [sym__concat] = ACTIONS(3905), - [anon_sym_RBRACE] = ACTIONS(2131), - [anon_sym_EQ] = ACTIONS(3907), - [sym__special_characters] = ACTIONS(3907), - [anon_sym_DQUOTE] = ACTIONS(2131), - [anon_sym_DOLLAR] = ACTIONS(3907), - [sym_raw_string] = ACTIONS(2131), - [anon_sym_POUND] = ACTIONS(2131), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2131), - [aux_sym_SLASH] = ACTIONS(2131), - [anon_sym_COLON] = ACTIONS(3907), - [anon_sym_COLON_QMARK] = ACTIONS(3907), - [anon_sym_COLON_DASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2131), - [anon_sym_BQUOTE] = ACTIONS(2131), - [anon_sym_LT_LPAREN] = ACTIONS(2131), - [anon_sym_GT_LPAREN] = ACTIONS(2131), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3907), + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(3890), + [sym_comment] = ACTIONS(53), }, [1261] = { - [sym_string] = STATE(681), - [sym_simple_expansion] = STATE(681), - [sym_string_expansion] = STATE(681), - [sym_expansion] = STATE(681), - [sym_command_substitution] = STATE(681), - [sym_process_substitution] = STATE(681), - [anon_sym_RBRACK] = ACTIONS(3909), - [sym__special_characters] = ACTIONS(2127), - [anon_sym_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(117), - [sym_raw_string] = ACTIONS(1309), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_BQUOTE] = ACTIONS(125), - [anon_sym_LT_LPAREN] = ACTIONS(127), - [anon_sym_GT_LPAREN] = ACTIONS(127), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1309), + [sym_concatenation] = STATE(1663), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1663), + [anon_sym_RBRACE] = ACTIONS(3892), + [anon_sym_EQ] = ACTIONS(3894), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3896), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(3898), + [anon_sym_COLON] = ACTIONS(3894), + [anon_sym_COLON_QMARK] = ACTIONS(3894), + [anon_sym_COLON_DASH] = ACTIONS(3894), + [anon_sym_PERCENT] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3894), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1262] = { - [sym__concat] = ACTIONS(3911), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_EQ] = ACTIONS(3913), - [sym__special_characters] = ACTIONS(3913), - [anon_sym_DQUOTE] = ACTIONS(2137), - [anon_sym_DOLLAR] = ACTIONS(3913), - [sym_raw_string] = ACTIONS(2137), - [anon_sym_POUND] = ACTIONS(2137), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2137), - [aux_sym_SLASH] = ACTIONS(2137), - [anon_sym_COLON] = ACTIONS(3913), - [anon_sym_COLON_QMARK] = ACTIONS(3913), - [anon_sym_COLON_DASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_DASH] = ACTIONS(3913), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2137), - [anon_sym_BQUOTE] = ACTIONS(2137), - [anon_sym_LT_LPAREN] = ACTIONS(2137), - [anon_sym_GT_LPAREN] = ACTIONS(2137), + [sym_concatenation] = STATE(1666), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1666), + [anon_sym_RBRACE] = ACTIONS(3900), + [anon_sym_EQ] = ACTIONS(3902), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3904), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(3906), + [anon_sym_COLON] = ACTIONS(3902), + [anon_sym_COLON_QMARK] = ACTIONS(3902), + [anon_sym_COLON_DASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_DASH] = ACTIONS(3902), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3913), + [sym_word] = ACTIONS(767), }, [1263] = { - [anon_sym_RBRACK] = ACTIONS(3909), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1668), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1668), + [anon_sym_RBRACE] = ACTIONS(3880), + [anon_sym_EQ] = ACTIONS(3908), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3910), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(3912), + [anon_sym_COLON] = ACTIONS(3908), + [anon_sym_COLON_QMARK] = ACTIONS(3908), + [anon_sym_COLON_DASH] = ACTIONS(3908), + [anon_sym_PERCENT] = ACTIONS(3908), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1264] = { - [sym_string] = STATE(1685), - [sym_simple_expansion] = STATE(1685), - [sym_string_expansion] = STATE(1685), - [sym_expansion] = STATE(1685), - [sym_command_substitution] = STATE(1685), - [sym_process_substitution] = STATE(1685), - [sym__special_characters] = ACTIONS(3915), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(3915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3915), + [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(177), + [sym_word] = ACTIONS(1800), }, [1265] = { - [sym__simple_heredoc_body] = ACTIONS(3917), - [sym__heredoc_body_beginning] = ACTIONS(3917), - [sym_file_descriptor] = ACTIONS(3917), - [sym__concat] = ACTIONS(3917), - [anon_sym_PIPE] = ACTIONS(3919), - [anon_sym_RPAREN] = ACTIONS(3919), - [anon_sym_SEMI_SEMI] = ACTIONS(3919), - [anon_sym_PIPE_AMP] = ACTIONS(3919), - [anon_sym_AMP_AMP] = ACTIONS(3919), - [anon_sym_PIPE_PIPE] = ACTIONS(3919), - [anon_sym_EQ_TILDE] = ACTIONS(3919), - [anon_sym_EQ_EQ] = ACTIONS(3919), - [anon_sym_LT] = ACTIONS(3919), - [anon_sym_GT] = ACTIONS(3919), - [anon_sym_GT_GT] = ACTIONS(3919), - [anon_sym_AMP_GT] = ACTIONS(3919), - [anon_sym_AMP_GT_GT] = ACTIONS(3919), - [anon_sym_LT_AMP] = ACTIONS(3919), - [anon_sym_GT_AMP] = ACTIONS(3919), - [anon_sym_LT_LT] = ACTIONS(3919), - [anon_sym_LT_LT_DASH] = ACTIONS(3919), - [anon_sym_LT_LT_LT] = ACTIONS(3919), - [sym__special_characters] = ACTIONS(3919), - [anon_sym_DQUOTE] = ACTIONS(3919), - [anon_sym_DOLLAR] = ACTIONS(3919), - [sym_raw_string] = ACTIONS(3919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3919), - [anon_sym_BQUOTE] = ACTIONS(3919), - [anon_sym_LT_LPAREN] = ACTIONS(3919), - [anon_sym_GT_LPAREN] = ACTIONS(3919), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3919), - [anon_sym_SEMI] = ACTIONS(3919), - [anon_sym_LF] = ACTIONS(3917), - [anon_sym_AMP] = ACTIONS(3919), + [sym_regex_without_right_brace] = ACTIONS(3914), }, [1266] = { - [aux_sym_concatenation_repeat1] = STATE(1686), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(693), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3916), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1267] = { - [sym__concat] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(697), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1806), + [anon_sym_RBRACE] = ACTIONS(1806), + [anon_sym_EQ] = ACTIONS(1808), + [sym__special_characters] = ACTIONS(1808), + [anon_sym_DQUOTE] = ACTIONS(1806), + [anon_sym_DOLLAR] = ACTIONS(1808), + [sym_raw_string] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1806), + [anon_sym_COLON] = ACTIONS(1808), + [anon_sym_COLON_QMARK] = ACTIONS(1808), + [anon_sym_COLON_DASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1806), + [anon_sym_BQUOTE] = ACTIONS(1806), + [anon_sym_LT_LPAREN] = ACTIONS(1806), + [anon_sym_GT_LPAREN] = ACTIONS(1806), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1808), }, [1268] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(3921), - [anon_sym_DOLLAR] = ACTIONS(229), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3918), }, [1269] = { - [sym__concat] = ACTIONS(727), - [anon_sym_RBRACE] = ACTIONS(727), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3880), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1270] = { - [sym__concat] = ACTIONS(731), - [anon_sym_RBRACE] = ACTIONS(731), - [sym_comment] = ACTIONS(53), + [sym__simple_heredoc_body] = ACTIONS(3920), + [sym__heredoc_body_beginning] = ACTIONS(3920), + [sym_file_descriptor] = ACTIONS(3920), + [sym__concat] = ACTIONS(3920), + [anon_sym_esac] = ACTIONS(3922), + [anon_sym_PIPE] = ACTIONS(3922), + [anon_sym_RPAREN] = ACTIONS(3922), + [anon_sym_SEMI_SEMI] = ACTIONS(3922), + [anon_sym_PIPE_AMP] = ACTIONS(3922), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3922), + [anon_sym_EQ_TILDE] = ACTIONS(3922), + [anon_sym_EQ_EQ] = ACTIONS(3922), + [anon_sym_LT] = ACTIONS(3922), + [anon_sym_GT] = ACTIONS(3922), + [anon_sym_GT_GT] = ACTIONS(3922), + [anon_sym_AMP_GT] = ACTIONS(3922), + [anon_sym_AMP_GT_GT] = ACTIONS(3922), + [anon_sym_LT_AMP] = ACTIONS(3922), + [anon_sym_GT_AMP] = ACTIONS(3922), + [anon_sym_LT_LT] = ACTIONS(3922), + [anon_sym_LT_LT_DASH] = ACTIONS(3922), + [anon_sym_LT_LT_LT] = ACTIONS(3922), + [sym__special_characters] = ACTIONS(3922), + [anon_sym_DQUOTE] = ACTIONS(3922), + [anon_sym_DOLLAR] = ACTIONS(3922), + [sym_raw_string] = ACTIONS(3922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3922), + [anon_sym_BQUOTE] = ACTIONS(3922), + [anon_sym_LT_LPAREN] = ACTIONS(3922), + [anon_sym_GT_LPAREN] = ACTIONS(3922), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3922), + [anon_sym_SEMI] = ACTIONS(3922), + [anon_sym_LF] = ACTIONS(3920), + [anon_sym_AMP] = ACTIONS(3922), }, [1271] = { - [sym__concat] = ACTIONS(735), - [anon_sym_RBRACE] = ACTIONS(735), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3924), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1272] = { - [sym__simple_heredoc_body] = ACTIONS(3923), - [sym__heredoc_body_beginning] = ACTIONS(3923), - [sym_file_descriptor] = ACTIONS(3923), - [sym__concat] = ACTIONS(3923), - [anon_sym_PIPE] = ACTIONS(3925), - [anon_sym_RPAREN] = ACTIONS(3925), - [anon_sym_SEMI_SEMI] = ACTIONS(3925), - [anon_sym_PIPE_AMP] = ACTIONS(3925), - [anon_sym_AMP_AMP] = ACTIONS(3925), - [anon_sym_PIPE_PIPE] = ACTIONS(3925), - [anon_sym_EQ_TILDE] = ACTIONS(3925), - [anon_sym_EQ_EQ] = ACTIONS(3925), - [anon_sym_LT] = ACTIONS(3925), - [anon_sym_GT] = ACTIONS(3925), - [anon_sym_GT_GT] = ACTIONS(3925), - [anon_sym_AMP_GT] = ACTIONS(3925), - [anon_sym_AMP_GT_GT] = ACTIONS(3925), - [anon_sym_LT_AMP] = ACTIONS(3925), - [anon_sym_GT_AMP] = ACTIONS(3925), - [anon_sym_LT_LT] = ACTIONS(3925), - [anon_sym_LT_LT_DASH] = ACTIONS(3925), - [anon_sym_LT_LT_LT] = ACTIONS(3925), - [sym__special_characters] = ACTIONS(3925), - [anon_sym_DQUOTE] = ACTIONS(3925), - [anon_sym_DOLLAR] = ACTIONS(3925), - [sym_raw_string] = ACTIONS(3925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3925), - [anon_sym_BQUOTE] = ACTIONS(3925), - [anon_sym_LT_LPAREN] = ACTIONS(3925), - [anon_sym_GT_LPAREN] = ACTIONS(3925), + [sym__concat] = ACTIONS(1940), + [anon_sym_RBRACE] = ACTIONS(1940), + [anon_sym_EQ] = ACTIONS(1942), + [sym__special_characters] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(1942), + [sym_raw_string] = ACTIONS(1940), + [anon_sym_POUND] = ACTIONS(1940), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1940), + [anon_sym_COLON] = ACTIONS(1942), + [anon_sym_COLON_QMARK] = ACTIONS(1942), + [anon_sym_COLON_DASH] = ACTIONS(1942), + [anon_sym_PERCENT] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [anon_sym_LT_LPAREN] = ACTIONS(1940), + [anon_sym_GT_LPAREN] = ACTIONS(1940), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3925), - [anon_sym_SEMI] = ACTIONS(3925), - [anon_sym_LF] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3925), + [sym_word] = ACTIONS(1942), }, [1273] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(3927), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_EQ] = ACTIONS(2008), + [sym__special_characters] = ACTIONS(2008), + [anon_sym_DQUOTE] = ACTIONS(2006), + [anon_sym_DOLLAR] = ACTIONS(2008), + [sym_raw_string] = ACTIONS(2006), + [anon_sym_POUND] = ACTIONS(2006), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2006), + [anon_sym_COLON] = ACTIONS(2008), + [anon_sym_COLON_QMARK] = ACTIONS(2008), + [anon_sym_COLON_DASH] = ACTIONS(2008), + [anon_sym_PERCENT] = ACTIONS(2008), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2006), + [anon_sym_BQUOTE] = ACTIONS(2006), + [anon_sym_LT_LPAREN] = ACTIONS(2006), + [anon_sym_GT_LPAREN] = ACTIONS(2006), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2008), }, [1274] = { - [sym_concatenation] = STATE(1691), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1691), - [anon_sym_RBRACE] = ACTIONS(3929), - [anon_sym_EQ] = ACTIONS(3931), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3933), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(3935), - [anon_sym_COLON] = ACTIONS(3931), - [anon_sym_COLON_QMARK] = ACTIONS(3931), - [anon_sym_COLON_DASH] = ACTIONS(3931), - [anon_sym_PERCENT] = ACTIONS(3931), - [anon_sym_DASH] = ACTIONS(3931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(3926), + [sym_comment] = ACTIONS(53), }, [1275] = { - [sym_subscript] = STATE(1695), - [sym_variable_name] = ACTIONS(3937), - [anon_sym_DOLLAR] = ACTIONS(3939), - [anon_sym_DASH] = ACTIONS(3939), + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(3928), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3941), - [anon_sym_STAR] = ACTIONS(3939), - [anon_sym_AT] = ACTIONS(3939), - [anon_sym_QMARK] = ACTIONS(3939), - [anon_sym_0] = ACTIONS(3943), - [anon_sym__] = ACTIONS(3943), }, [1276] = { - [sym_concatenation] = STATE(1698), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1698), - [anon_sym_RBRACE] = ACTIONS(3945), - [anon_sym_EQ] = ACTIONS(3947), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3949), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(3951), - [anon_sym_COLON] = ACTIONS(3947), - [anon_sym_COLON_QMARK] = ACTIONS(3947), - [anon_sym_COLON_DASH] = ACTIONS(3947), - [anon_sym_PERCENT] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(3928), + [sym_comment] = ACTIONS(53), }, [1277] = { - [sym_concatenation] = STATE(1701), + [sym_concatenation] = STATE(1676), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1701), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_EQ] = ACTIONS(3955), + [aux_sym_expansion_repeat1] = STATE(1676), + [anon_sym_RBRACE] = ACTIONS(3930), + [anon_sym_EQ] = ACTIONS(3932), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3957), + [anon_sym_POUND] = ACTIONS(3934), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(3959), - [anon_sym_COLON] = ACTIONS(3955), - [anon_sym_COLON_QMARK] = ACTIONS(3955), - [anon_sym_COLON_DASH] = ACTIONS(3955), - [anon_sym_PERCENT] = ACTIONS(3955), - [anon_sym_DASH] = ACTIONS(3955), + [anon_sym_COLON] = ACTIONS(3932), + [anon_sym_COLON_QMARK] = ACTIONS(3932), + [anon_sym_COLON_DASH] = ACTIONS(3932), + [anon_sym_PERCENT] = ACTIONS(3932), + [anon_sym_DASH] = ACTIONS(3932), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -41095,883 +37663,279 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [1278] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(3961), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [sym_comment] = ACTIONS(53), + [sym__simple_heredoc_body] = ACTIONS(3936), + [sym__heredoc_body_beginning] = ACTIONS(3936), + [sym_file_descriptor] = ACTIONS(3936), + [sym__concat] = ACTIONS(3936), + [anon_sym_esac] = ACTIONS(3938), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_RPAREN] = ACTIONS(3938), + [anon_sym_SEMI_SEMI] = ACTIONS(3938), + [anon_sym_PIPE_AMP] = ACTIONS(3938), + [anon_sym_AMP_AMP] = ACTIONS(3938), + [anon_sym_PIPE_PIPE] = ACTIONS(3938), + [anon_sym_EQ_TILDE] = ACTIONS(3938), + [anon_sym_EQ_EQ] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_GT_GT] = ACTIONS(3938), + [anon_sym_AMP_GT] = ACTIONS(3938), + [anon_sym_AMP_GT_GT] = ACTIONS(3938), + [anon_sym_LT_AMP] = ACTIONS(3938), + [anon_sym_GT_AMP] = ACTIONS(3938), + [anon_sym_LT_LT] = ACTIONS(3938), + [anon_sym_LT_LT_DASH] = ACTIONS(3938), + [anon_sym_LT_LT_LT] = ACTIONS(3938), + [sym__special_characters] = ACTIONS(3938), + [anon_sym_DQUOTE] = ACTIONS(3938), + [anon_sym_DOLLAR] = ACTIONS(3938), + [sym_raw_string] = ACTIONS(3938), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3938), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3938), + [anon_sym_BQUOTE] = ACTIONS(3938), + [anon_sym_LT_LPAREN] = ACTIONS(3938), + [anon_sym_GT_LPAREN] = ACTIONS(3938), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(3938), + [anon_sym_LF] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3938), }, [1279] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(3961), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), + [sym_concatenation] = STATE(1678), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1678), + [anon_sym_RBRACE] = ACTIONS(3940), + [anon_sym_EQ] = ACTIONS(3942), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3944), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(3942), + [anon_sym_COLON_QMARK] = ACTIONS(3942), + [anon_sym_COLON_DASH] = ACTIONS(3942), + [anon_sym_PERCENT] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1280] = { - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_PIPE_AMP] = ACTIONS(925), - [anon_sym_AMP_AMP] = ACTIONS(927), - [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_BQUOTE] = ACTIONS(3961), - [sym_comment] = ACTIONS(53), + [sym__simple_heredoc_body] = ACTIONS(3946), + [sym__heredoc_body_beginning] = ACTIONS(3946), + [sym_file_descriptor] = ACTIONS(3946), + [sym__concat] = ACTIONS(3946), + [anon_sym_esac] = ACTIONS(3948), + [anon_sym_PIPE] = ACTIONS(3948), + [anon_sym_RPAREN] = ACTIONS(3948), + [anon_sym_SEMI_SEMI] = ACTIONS(3948), + [anon_sym_PIPE_AMP] = ACTIONS(3948), + [anon_sym_AMP_AMP] = ACTIONS(3948), + [anon_sym_PIPE_PIPE] = ACTIONS(3948), + [anon_sym_EQ_TILDE] = ACTIONS(3948), + [anon_sym_EQ_EQ] = ACTIONS(3948), + [anon_sym_LT] = ACTIONS(3948), + [anon_sym_GT] = ACTIONS(3948), + [anon_sym_GT_GT] = ACTIONS(3948), + [anon_sym_AMP_GT] = ACTIONS(3948), + [anon_sym_AMP_GT_GT] = ACTIONS(3948), + [anon_sym_LT_AMP] = ACTIONS(3948), + [anon_sym_GT_AMP] = ACTIONS(3948), + [anon_sym_LT_LT] = ACTIONS(3948), + [anon_sym_LT_LT_DASH] = ACTIONS(3948), + [anon_sym_LT_LT_LT] = ACTIONS(3948), + [sym__special_characters] = ACTIONS(3948), + [anon_sym_DQUOTE] = ACTIONS(3948), + [anon_sym_DOLLAR] = ACTIONS(3948), + [sym_raw_string] = ACTIONS(3948), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3948), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3948), + [anon_sym_BQUOTE] = ACTIONS(3948), + [anon_sym_LT_LPAREN] = ACTIONS(3948), + [anon_sym_GT_LPAREN] = ACTIONS(3948), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3948), + [anon_sym_SEMI] = ACTIONS(3948), + [anon_sym_LF] = ACTIONS(3946), + [anon_sym_AMP] = ACTIONS(3948), }, [1281] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_PIPE_AMP] = ACTIONS(925), - [anon_sym_AMP_AMP] = ACTIONS(927), - [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(3961), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), + [sym_concatenation] = STATE(1680), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1680), + [anon_sym_RBRACE] = ACTIONS(3950), + [anon_sym_EQ] = ACTIONS(3952), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3954), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(3952), + [anon_sym_COLON_QMARK] = ACTIONS(3952), + [anon_sym_COLON_DASH] = ACTIONS(3952), + [anon_sym_PERCENT] = ACTIONS(3952), + [anon_sym_DASH] = ACTIONS(3952), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1282] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(3963), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [sym_comment] = ACTIONS(53), + [sym__simple_heredoc_body] = ACTIONS(3956), + [sym__heredoc_body_beginning] = ACTIONS(3956), + [sym_file_descriptor] = ACTIONS(3956), + [sym__concat] = ACTIONS(3956), + [anon_sym_esac] = ACTIONS(3958), + [anon_sym_PIPE] = ACTIONS(3958), + [anon_sym_RPAREN] = ACTIONS(3958), + [anon_sym_SEMI_SEMI] = ACTIONS(3958), + [anon_sym_PIPE_AMP] = ACTIONS(3958), + [anon_sym_AMP_AMP] = ACTIONS(3958), + [anon_sym_PIPE_PIPE] = ACTIONS(3958), + [anon_sym_EQ_TILDE] = ACTIONS(3958), + [anon_sym_EQ_EQ] = ACTIONS(3958), + [anon_sym_LT] = ACTIONS(3958), + [anon_sym_GT] = ACTIONS(3958), + [anon_sym_GT_GT] = ACTIONS(3958), + [anon_sym_AMP_GT] = ACTIONS(3958), + [anon_sym_AMP_GT_GT] = ACTIONS(3958), + [anon_sym_LT_AMP] = ACTIONS(3958), + [anon_sym_GT_AMP] = ACTIONS(3958), + [anon_sym_LT_LT] = ACTIONS(3958), + [anon_sym_LT_LT_DASH] = ACTIONS(3958), + [anon_sym_LT_LT_LT] = ACTIONS(3958), + [sym__special_characters] = ACTIONS(3958), + [anon_sym_DQUOTE] = ACTIONS(3958), + [anon_sym_DOLLAR] = ACTIONS(3958), + [sym_raw_string] = ACTIONS(3958), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3958), + [anon_sym_BQUOTE] = ACTIONS(3958), + [anon_sym_LT_LPAREN] = ACTIONS(3958), + [anon_sym_GT_LPAREN] = ACTIONS(3958), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3958), + [anon_sym_SEMI] = ACTIONS(3958), + [anon_sym_LF] = ACTIONS(3956), + [anon_sym_AMP] = ACTIONS(3958), }, [1283] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(3963), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3960), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1284] = { - [sym__concat] = ACTIONS(1654), - [anon_sym_RBRACE] = ACTIONS(1654), - [anon_sym_EQ] = ACTIONS(1656), - [sym__special_characters] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1654), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1654), - [anon_sym_POUND] = ACTIONS(1654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1654), - [anon_sym_COLON] = ACTIONS(1656), - [anon_sym_COLON_QMARK] = ACTIONS(1656), - [anon_sym_COLON_DASH] = ACTIONS(1656), - [anon_sym_PERCENT] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [anon_sym_LT_LPAREN] = ACTIONS(1654), - [anon_sym_GT_LPAREN] = ACTIONS(1654), + [sym__simple_heredoc_body] = ACTIONS(3962), + [sym__heredoc_body_beginning] = ACTIONS(3962), + [sym_file_descriptor] = ACTIONS(3962), + [sym__concat] = ACTIONS(3962), + [anon_sym_esac] = ACTIONS(3964), + [anon_sym_PIPE] = ACTIONS(3964), + [anon_sym_RPAREN] = ACTIONS(3964), + [anon_sym_SEMI_SEMI] = ACTIONS(3964), + [anon_sym_PIPE_AMP] = ACTIONS(3964), + [anon_sym_AMP_AMP] = ACTIONS(3964), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_EQ_TILDE] = ACTIONS(3964), + [anon_sym_EQ_EQ] = ACTIONS(3964), + [anon_sym_LT] = ACTIONS(3964), + [anon_sym_GT] = ACTIONS(3964), + [anon_sym_GT_GT] = ACTIONS(3964), + [anon_sym_AMP_GT] = ACTIONS(3964), + [anon_sym_AMP_GT_GT] = ACTIONS(3964), + [anon_sym_LT_AMP] = ACTIONS(3964), + [anon_sym_GT_AMP] = ACTIONS(3964), + [anon_sym_LT_LT] = ACTIONS(3964), + [anon_sym_LT_LT_DASH] = ACTIONS(3964), + [anon_sym_LT_LT_LT] = ACTIONS(3964), + [sym__special_characters] = ACTIONS(3964), + [anon_sym_DQUOTE] = ACTIONS(3964), + [anon_sym_DOLLAR] = ACTIONS(3964), + [sym_raw_string] = ACTIONS(3964), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3964), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3964), + [anon_sym_BQUOTE] = ACTIONS(3964), + [anon_sym_LT_LPAREN] = ACTIONS(3964), + [anon_sym_GT_LPAREN] = ACTIONS(3964), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1656), + [sym_word] = ACTIONS(3964), + [anon_sym_SEMI] = ACTIONS(3964), + [anon_sym_LF] = ACTIONS(3962), + [anon_sym_AMP] = ACTIONS(3964), }, [1285] = { - [aux_sym_concatenation_repeat1] = STATE(1285), - [sym__concat] = ACTIONS(3965), - [anon_sym_RBRACE] = ACTIONS(1654), - [anon_sym_EQ] = ACTIONS(1656), - [sym__special_characters] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1654), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1654), - [anon_sym_POUND] = ACTIONS(1654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1654), - [anon_sym_COLON] = ACTIONS(1656), - [anon_sym_COLON_QMARK] = ACTIONS(1656), - [anon_sym_COLON_DASH] = ACTIONS(1656), - [anon_sym_PERCENT] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [anon_sym_LT_LPAREN] = ACTIONS(1654), - [anon_sym_GT_LPAREN] = ACTIONS(1654), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(3966), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1656), + [sym_word] = ACTIONS(767), }, [1286] = { - [sym__concat] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_EQ] = ACTIONS(1705), - [sym__special_characters] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1703), - [anon_sym_DOLLAR] = ACTIONS(1705), - [sym_raw_string] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(1703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1703), - [anon_sym_COLON] = ACTIONS(1705), - [anon_sym_COLON_QMARK] = ACTIONS(1705), - [anon_sym_COLON_DASH] = ACTIONS(1705), - [anon_sym_PERCENT] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1703), - [anon_sym_BQUOTE] = ACTIONS(1703), - [anon_sym_LT_LPAREN] = ACTIONS(1703), - [anon_sym_GT_LPAREN] = ACTIONS(1703), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1705), - }, - [1287] = { - [sym_concatenation] = STATE(1707), - [sym_string] = STATE(1706), - [sym_simple_expansion] = STATE(1706), - [sym_string_expansion] = STATE(1706), - [sym_expansion] = STATE(1706), - [sym_command_substitution] = STATE(1706), - [sym_process_substitution] = STATE(1706), - [anon_sym_RBRACE] = ACTIONS(3968), - [sym__special_characters] = ACTIONS(3970), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(3972), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3972), - }, - [1288] = { - [sym__concat] = ACTIONS(1744), - [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(177), - [sym_word] = ACTIONS(1746), - }, - [1289] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3974), - }, - [1290] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3976), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1291] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(3978), - [sym_comment] = ACTIONS(53), - }, - [1292] = { - [sym_concatenation] = STATE(1713), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1713), - [anon_sym_RBRACE] = ACTIONS(3980), - [anon_sym_EQ] = ACTIONS(3982), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3984), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(3986), - [anon_sym_COLON] = ACTIONS(3982), - [anon_sym_COLON_QMARK] = ACTIONS(3982), - [anon_sym_COLON_DASH] = ACTIONS(3982), - [anon_sym_PERCENT] = ACTIONS(3982), - [anon_sym_DASH] = ACTIONS(3982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1293] = { - [sym_concatenation] = STATE(1716), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1716), - [anon_sym_RBRACE] = ACTIONS(3988), - [anon_sym_EQ] = ACTIONS(3990), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3992), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(3994), - [anon_sym_COLON] = ACTIONS(3990), - [anon_sym_COLON_QMARK] = ACTIONS(3990), - [anon_sym_COLON_DASH] = ACTIONS(3990), - [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1294] = { - [sym_concatenation] = STATE(1718), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1718), - [anon_sym_RBRACE] = ACTIONS(3968), - [anon_sym_EQ] = ACTIONS(3996), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3998), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(4000), - [anon_sym_COLON] = ACTIONS(3996), - [anon_sym_COLON_QMARK] = ACTIONS(3996), - [anon_sym_COLON_DASH] = ACTIONS(3996), - [anon_sym_PERCENT] = ACTIONS(3996), - [anon_sym_DASH] = ACTIONS(3996), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1295] = { - [sym__concat] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(1812), - [anon_sym_DQUOTE] = ACTIONS(1810), - [anon_sym_DOLLAR] = ACTIONS(1812), - [sym_raw_string] = ACTIONS(1810), - [anon_sym_POUND] = ACTIONS(1810), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1810), - [anon_sym_LT_LPAREN] = ACTIONS(1810), - [anon_sym_GT_LPAREN] = ACTIONS(1810), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1812), - }, - [1296] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4002), - }, - [1297] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4004), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1298] = { - [sym__concat] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_EQ] = ACTIONS(1820), - [sym__special_characters] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1818), - [anon_sym_DOLLAR] = ACTIONS(1820), - [sym_raw_string] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(1818), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1818), - [anon_sym_COLON] = ACTIONS(1820), - [anon_sym_COLON_QMARK] = ACTIONS(1820), - [anon_sym_COLON_DASH] = ACTIONS(1820), - [anon_sym_PERCENT] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1820), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1818), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1818), - [anon_sym_GT_LPAREN] = ACTIONS(1818), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1820), - }, - [1299] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4006), - }, - [1300] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(3968), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1301] = { - [sym__simple_heredoc_body] = ACTIONS(4008), - [sym__heredoc_body_beginning] = ACTIONS(4008), - [sym_file_descriptor] = ACTIONS(4008), - [sym__concat] = ACTIONS(4008), - [anon_sym_PIPE] = ACTIONS(4010), - [anon_sym_RPAREN] = ACTIONS(4010), - [anon_sym_SEMI_SEMI] = ACTIONS(4010), - [anon_sym_PIPE_AMP] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [anon_sym_EQ_TILDE] = ACTIONS(4010), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_GT_GT] = ACTIONS(4010), - [anon_sym_AMP_GT] = ACTIONS(4010), - [anon_sym_AMP_GT_GT] = ACTIONS(4010), - [anon_sym_LT_AMP] = ACTIONS(4010), - [anon_sym_GT_AMP] = ACTIONS(4010), - [anon_sym_LT_LT] = ACTIONS(4010), - [anon_sym_LT_LT_DASH] = ACTIONS(4010), - [anon_sym_LT_LT_LT] = ACTIONS(4010), - [sym__special_characters] = ACTIONS(4010), - [anon_sym_DQUOTE] = ACTIONS(4010), - [anon_sym_DOLLAR] = ACTIONS(4010), - [sym_raw_string] = ACTIONS(4010), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4010), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4010), - [anon_sym_BQUOTE] = ACTIONS(4010), - [anon_sym_LT_LPAREN] = ACTIONS(4010), - [anon_sym_GT_LPAREN] = ACTIONS(4010), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4010), - [anon_sym_LF] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4010), - }, - [1302] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4012), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1303] = { - [sym__concat] = ACTIONS(1952), - [anon_sym_RBRACE] = ACTIONS(1952), - [anon_sym_EQ] = ACTIONS(1954), - [sym__special_characters] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(1952), - [anon_sym_POUND] = ACTIONS(1952), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1952), - [anon_sym_COLON] = ACTIONS(1954), - [anon_sym_COLON_QMARK] = ACTIONS(1954), - [anon_sym_COLON_DASH] = ACTIONS(1954), - [anon_sym_PERCENT] = ACTIONS(1954), - [anon_sym_DASH] = ACTIONS(1954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1952), - [anon_sym_BQUOTE] = ACTIONS(1952), - [anon_sym_LT_LPAREN] = ACTIONS(1952), - [anon_sym_GT_LPAREN] = ACTIONS(1952), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1954), - }, - [1304] = { - [sym__concat] = ACTIONS(2018), - [anon_sym_RBRACE] = ACTIONS(2018), - [anon_sym_EQ] = ACTIONS(2020), - [sym__special_characters] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2018), - [anon_sym_DOLLAR] = ACTIONS(2020), - [sym_raw_string] = ACTIONS(2018), - [anon_sym_POUND] = ACTIONS(2018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2018), - [anon_sym_COLON] = ACTIONS(2020), - [anon_sym_COLON_QMARK] = ACTIONS(2020), - [anon_sym_COLON_DASH] = ACTIONS(2020), - [anon_sym_PERCENT] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2018), - [anon_sym_BQUOTE] = ACTIONS(2018), - [anon_sym_LT_LPAREN] = ACTIONS(2018), - [anon_sym_GT_LPAREN] = ACTIONS(2018), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2020), - }, - [1305] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(4014), - [sym_comment] = ACTIONS(53), - }, - [1306] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(4016), - [sym_comment] = ACTIONS(53), - }, - [1307] = { - [anon_sym_RBRACE] = ACTIONS(4016), - [sym_comment] = ACTIONS(53), - }, - [1308] = { - [sym_concatenation] = STATE(1726), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1726), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_EQ] = ACTIONS(4020), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4020), - [anon_sym_COLON_QMARK] = ACTIONS(4020), - [anon_sym_COLON_DASH] = ACTIONS(4020), - [anon_sym_PERCENT] = ACTIONS(4020), - [anon_sym_DASH] = ACTIONS(4020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1309] = { - [sym__simple_heredoc_body] = ACTIONS(4024), - [sym__heredoc_body_beginning] = ACTIONS(4024), - [sym_file_descriptor] = ACTIONS(4024), - [sym__concat] = ACTIONS(4024), - [anon_sym_PIPE] = ACTIONS(4026), - [anon_sym_RPAREN] = ACTIONS(4026), - [anon_sym_SEMI_SEMI] = ACTIONS(4026), - [anon_sym_PIPE_AMP] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [anon_sym_EQ_TILDE] = ACTIONS(4026), - [anon_sym_EQ_EQ] = ACTIONS(4026), - [anon_sym_LT] = ACTIONS(4026), - [anon_sym_GT] = ACTIONS(4026), - [anon_sym_GT_GT] = ACTIONS(4026), - [anon_sym_AMP_GT] = ACTIONS(4026), - [anon_sym_AMP_GT_GT] = ACTIONS(4026), - [anon_sym_LT_AMP] = ACTIONS(4026), - [anon_sym_GT_AMP] = ACTIONS(4026), - [anon_sym_LT_LT] = ACTIONS(4026), - [anon_sym_LT_LT_DASH] = ACTIONS(4026), - [anon_sym_LT_LT_LT] = ACTIONS(4026), - [sym__special_characters] = ACTIONS(4026), - [anon_sym_DQUOTE] = ACTIONS(4026), - [anon_sym_DOLLAR] = ACTIONS(4026), - [sym_raw_string] = ACTIONS(4026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4026), - [anon_sym_BQUOTE] = ACTIONS(4026), - [anon_sym_LT_LPAREN] = ACTIONS(4026), - [anon_sym_GT_LPAREN] = ACTIONS(4026), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4026), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym_LF] = ACTIONS(4024), - [anon_sym_AMP] = ACTIONS(4026), - }, - [1310] = { - [sym_concatenation] = STATE(1728), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1728), - [anon_sym_RBRACE] = ACTIONS(4028), - [anon_sym_EQ] = ACTIONS(4030), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4030), - [anon_sym_COLON_QMARK] = ACTIONS(4030), - [anon_sym_COLON_DASH] = ACTIONS(4030), - [anon_sym_PERCENT] = ACTIONS(4030), - [anon_sym_DASH] = ACTIONS(4030), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1311] = { - [sym__simple_heredoc_body] = ACTIONS(4034), - [sym__heredoc_body_beginning] = ACTIONS(4034), - [sym_file_descriptor] = ACTIONS(4034), - [sym__concat] = ACTIONS(4034), - [anon_sym_PIPE] = ACTIONS(4036), - [anon_sym_RPAREN] = ACTIONS(4036), - [anon_sym_SEMI_SEMI] = ACTIONS(4036), - [anon_sym_PIPE_AMP] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [anon_sym_EQ_TILDE] = ACTIONS(4036), - [anon_sym_EQ_EQ] = ACTIONS(4036), - [anon_sym_LT] = ACTIONS(4036), - [anon_sym_GT] = ACTIONS(4036), - [anon_sym_GT_GT] = ACTIONS(4036), - [anon_sym_AMP_GT] = ACTIONS(4036), - [anon_sym_AMP_GT_GT] = ACTIONS(4036), - [anon_sym_LT_AMP] = ACTIONS(4036), - [anon_sym_GT_AMP] = ACTIONS(4036), - [anon_sym_LT_LT] = ACTIONS(4036), - [anon_sym_LT_LT_DASH] = ACTIONS(4036), - [anon_sym_LT_LT_LT] = ACTIONS(4036), - [sym__special_characters] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_DOLLAR] = ACTIONS(4036), - [sym_raw_string] = ACTIONS(4036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4036), - [anon_sym_BQUOTE] = ACTIONS(4036), - [anon_sym_LT_LPAREN] = ACTIONS(4036), - [anon_sym_GT_LPAREN] = ACTIONS(4036), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4036), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_LF] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4036), - }, - [1312] = { - [sym_concatenation] = STATE(1730), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1730), - [anon_sym_RBRACE] = ACTIONS(4038), - [anon_sym_EQ] = ACTIONS(4040), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4042), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4040), - [anon_sym_COLON_QMARK] = ACTIONS(4040), - [anon_sym_COLON_DASH] = ACTIONS(4040), - [anon_sym_PERCENT] = ACTIONS(4040), - [anon_sym_DASH] = ACTIONS(4040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1313] = { - [sym__simple_heredoc_body] = ACTIONS(4044), - [sym__heredoc_body_beginning] = ACTIONS(4044), - [sym_file_descriptor] = ACTIONS(4044), - [sym__concat] = ACTIONS(4044), - [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_EQ_TILDE] = ACTIONS(4046), - [anon_sym_EQ_EQ] = 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__special_characters] = ACTIONS(4046), - [anon_sym_DQUOTE] = ACTIONS(4046), - [anon_sym_DOLLAR] = ACTIONS(4046), - [sym_raw_string] = ACTIONS(4046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4046), - [anon_sym_BQUOTE] = ACTIONS(4046), - [anon_sym_LT_LPAREN] = ACTIONS(4046), - [anon_sym_GT_LPAREN] = ACTIONS(4046), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4046), - [anon_sym_SEMI] = ACTIONS(4046), - [anon_sym_LF] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4046), - }, - [1314] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4048), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1315] = { - [sym__simple_heredoc_body] = ACTIONS(4050), - [sym__heredoc_body_beginning] = ACTIONS(4050), - [sym_file_descriptor] = ACTIONS(4050), - [sym__concat] = ACTIONS(4050), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_RPAREN] = ACTIONS(4052), - [anon_sym_SEMI_SEMI] = ACTIONS(4052), - [anon_sym_PIPE_AMP] = ACTIONS(4052), - [anon_sym_AMP_AMP] = ACTIONS(4052), - [anon_sym_PIPE_PIPE] = ACTIONS(4052), - [anon_sym_EQ_TILDE] = ACTIONS(4052), - [anon_sym_EQ_EQ] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_GT_GT] = ACTIONS(4052), - [anon_sym_AMP_GT] = ACTIONS(4052), - [anon_sym_AMP_GT_GT] = ACTIONS(4052), - [anon_sym_LT_AMP] = ACTIONS(4052), - [anon_sym_GT_AMP] = ACTIONS(4052), - [anon_sym_LT_LT] = ACTIONS(4052), - [anon_sym_LT_LT_DASH] = ACTIONS(4052), - [anon_sym_LT_LT_LT] = ACTIONS(4052), - [sym__special_characters] = ACTIONS(4052), - [anon_sym_DQUOTE] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4052), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4052), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4052), - [anon_sym_BQUOTE] = ACTIONS(4052), - [anon_sym_LT_LPAREN] = ACTIONS(4052), - [anon_sym_GT_LPAREN] = ACTIONS(4052), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4052), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4052), - }, - [1316] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4054), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1317] = { - [aux_sym_concatenation_repeat1] = STATE(1733), + [aux_sym_concatenation_repeat1] = STATE(1683), [sym_file_descriptor] = ACTIONS(693), [sym__concat] = ACTIONS(663), [sym_variable_name] = ACTIONS(693), @@ -41999,48 +37963,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(693), }, - [1318] = { - [sym_concatenation] = STATE(1058), - [sym_string] = STATE(590), - [sym_simple_expansion] = STATE(590), - [sym_string_expansion] = STATE(590), - [sym_expansion] = STATE(590), - [sym_command_substitution] = STATE(590), - [sym_process_substitution] = STATE(590), - [aux_sym_for_statement_repeat1] = STATE(1058), - [anon_sym_SEMI_SEMI] = ACTIONS(4056), - [sym__special_characters] = ACTIONS(2241), - [anon_sym_DQUOTE] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(2245), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2249), - [anon_sym_BQUOTE] = ACTIONS(2251), - [anon_sym_LT_LPAREN] = ACTIONS(2253), - [anon_sym_GT_LPAREN] = ACTIONS(2253), + [1287] = { + [sym_concatenation] = STATE(1031), + [sym_string] = STATE(588), + [sym_simple_expansion] = STATE(588), + [sym_string_expansion] = STATE(588), + [sym_expansion] = STATE(588), + [sym_command_substitution] = STATE(588), + [sym_process_substitution] = STATE(588), + [aux_sym_for_statement_repeat1] = STATE(1031), + [anon_sym_SEMI_SEMI] = ACTIONS(3968), + [sym__special_characters] = ACTIONS(2207), + [anon_sym_DQUOTE] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(71), + [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(177), - [sym_word] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(4056), - [anon_sym_LF] = ACTIONS(4058), - [anon_sym_AMP] = ACTIONS(4056), + [sym_word] = ACTIONS(2211), + [anon_sym_SEMI] = ACTIONS(3968), + [anon_sym_LF] = ACTIONS(3970), + [anon_sym_AMP] = ACTIONS(3968), }, - [1319] = { - [sym__terminated_statement] = STATE(1736), - [sym_for_statement] = STATE(599), - [sym_while_statement] = STATE(599), - [sym_if_statement] = STATE(599), - [sym_case_statement] = STATE(599), - [sym_function_definition] = STATE(599), - [sym_subshell] = STATE(599), - [sym_pipeline] = STATE(599), - [sym_list] = STATE(599), - [sym_negated_command] = STATE(599), - [sym_test_command] = STATE(599), - [sym_declaration_command] = STATE(599), - [sym_unset_command] = STATE(599), - [sym_command] = STATE(599), + [1288] = { + [sym__terminated_statement] = STATE(1686), + [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_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(600), + [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -42050,13 +38014,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1736), + [aux_sym_program_repeat1] = STATE(1686), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), [anon_sym_while] = ACTIONS(13), - [anon_sym_done] = ACTIONS(4060), + [anon_sym_done] = ACTIONS(3972), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), @@ -42090,54 +38054,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [1320] = { - [anon_sym_PIPE] = ACTIONS(2259), - [anon_sym_RPAREN] = ACTIONS(2261), - [anon_sym_PIPE_AMP] = ACTIONS(2261), - [anon_sym_AMP_AMP] = ACTIONS(2261), - [anon_sym_PIPE_PIPE] = ACTIONS(2261), - [anon_sym_BQUOTE] = ACTIONS(2261), + [1289] = { + [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(53), }, - [1321] = { - [sym__simple_heredoc_body] = ACTIONS(2263), - [sym__heredoc_body_beginning] = ACTIONS(2263), - [sym_file_descriptor] = ACTIONS(2263), - [anon_sym_PIPE] = ACTIONS(2265), - [anon_sym_RPAREN] = ACTIONS(2263), - [anon_sym_PIPE_AMP] = ACTIONS(2263), - [anon_sym_AMP_AMP] = ACTIONS(2263), - [anon_sym_PIPE_PIPE] = ACTIONS(2263), - [anon_sym_LT] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(2265), - [anon_sym_GT_GT] = ACTIONS(2263), - [anon_sym_AMP_GT] = ACTIONS(2265), - [anon_sym_AMP_GT_GT] = ACTIONS(2263), - [anon_sym_LT_AMP] = ACTIONS(2263), - [anon_sym_GT_AMP] = ACTIONS(2263), - [anon_sym_LT_LT] = ACTIONS(2265), - [anon_sym_LT_LT_DASH] = ACTIONS(2263), - [anon_sym_LT_LT_LT] = ACTIONS(2263), - [anon_sym_BQUOTE] = ACTIONS(2263), + [1290] = { + [sym__simple_heredoc_body] = ACTIONS(2229), + [sym__heredoc_body_beginning] = ACTIONS(2229), + [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(53), }, - [1322] = { - [sym__terminated_statement] = STATE(1063), - [sym_for_statement] = STATE(599), - [sym_while_statement] = STATE(599), - [sym_if_statement] = STATE(599), - [sym_case_statement] = STATE(599), - [sym_function_definition] = STATE(599), - [sym_subshell] = STATE(599), - [sym_pipeline] = STATE(599), - [sym_list] = STATE(599), - [sym_negated_command] = STATE(599), - [sym_test_command] = STATE(599), - [sym_declaration_command] = STATE(599), - [sym_unset_command] = STATE(599), - [sym_command] = STATE(599), + [1291] = { + [sym__terminated_statement] = STATE(1035), + [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_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(600), + [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -42147,13 +38111,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1063), + [aux_sym_program_repeat1] = STATE(1035), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), [anon_sym_while] = ACTIONS(13), - [anon_sym_done] = ACTIONS(4062), + [anon_sym_done] = ACTIONS(3974), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), @@ -42187,29 +38151,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [1323] = { - [anon_sym_PIPE] = ACTIONS(2273), - [anon_sym_RPAREN] = ACTIONS(2275), - [anon_sym_PIPE_AMP] = ACTIONS(2275), - [anon_sym_AMP_AMP] = ACTIONS(2275), - [anon_sym_PIPE_PIPE] = ACTIONS(2275), - [anon_sym_BQUOTE] = ACTIONS(2275), + [1292] = { + [anon_sym_PIPE] = ACTIONS(2235), + [anon_sym_RPAREN] = ACTIONS(2237), + [anon_sym_PIPE_AMP] = ACTIONS(2237), + [anon_sym_AMP_AMP] = ACTIONS(2237), + [anon_sym_PIPE_PIPE] = ACTIONS(2237), + [anon_sym_BQUOTE] = ACTIONS(2237), [sym_comment] = ACTIONS(53), }, - [1324] = { - [sym_file_redirect] = STATE(948), - [sym_heredoc_redirect] = STATE(948), - [sym_heredoc_body] = STATE(1738), - [sym_herestring_redirect] = STATE(948), - [aux_sym_while_statement_repeat1] = STATE(948), + [1293] = { + [sym_file_redirect] = STATE(938), + [sym_heredoc_redirect] = STATE(938), + [sym_heredoc_body] = STATE(1688), + [sym_herestring_redirect] = STATE(938), + [aux_sym_while_statement_repeat1] = STATE(938), [sym__simple_heredoc_body] = ACTIONS(877), [sym__heredoc_body_beginning] = ACTIONS(879), [sym_file_descriptor] = ACTIONS(881), - [anon_sym_PIPE] = ACTIONS(2273), - [anon_sym_RPAREN] = ACTIONS(2275), - [anon_sym_PIPE_AMP] = ACTIONS(2275), - [anon_sym_AMP_AMP] = ACTIONS(2275), - [anon_sym_PIPE_PIPE] = ACTIONS(2275), + [anon_sym_PIPE] = ACTIONS(2235), + [anon_sym_RPAREN] = ACTIONS(2237), + [anon_sym_PIPE_AMP] = ACTIONS(2237), + [anon_sym_AMP_AMP] = ACTIONS(2237), + [anon_sym_PIPE_PIPE] = ACTIONS(2237), [anon_sym_LT] = ACTIONS(885), [anon_sym_GT] = ACTIONS(885), [anon_sym_GT_GT] = ACTIONS(887), @@ -42222,38 +38186,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(893), [sym_comment] = ACTIONS(53), }, - [1325] = { - [anon_sym_PIPE] = ACTIONS(2277), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_PIPE_AMP] = ACTIONS(2279), - [anon_sym_AMP_AMP] = ACTIONS(2279), - [anon_sym_PIPE_PIPE] = ACTIONS(2279), - [anon_sym_BQUOTE] = ACTIONS(2279), + [1294] = { + [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_BQUOTE] = ACTIONS(2241), [sym_comment] = ACTIONS(53), }, - [1326] = { - [anon_sym_fi] = ACTIONS(4064), + [1295] = { + [anon_sym_fi] = ACTIONS(3976), [sym_comment] = ACTIONS(53), }, - [1327] = { - [sym__terminated_statement] = STATE(1072), - [sym_for_statement] = STATE(607), - [sym_while_statement] = STATE(607), - [sym_if_statement] = STATE(607), - [sym_elif_clause] = STATE(608), - [sym_else_clause] = STATE(1740), - [sym_case_statement] = STATE(607), - [sym_function_definition] = STATE(607), - [sym_subshell] = STATE(607), - [sym_pipeline] = STATE(607), - [sym_list] = STATE(607), - [sym_negated_command] = STATE(607), - [sym_test_command] = STATE(607), - [sym_declaration_command] = STATE(607), - [sym_unset_command] = STATE(607), - [sym_command] = STATE(607), + [1296] = { + [sym__terminated_statement] = STATE(1041), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_elif_clause] = STATE(599), + [sym_else_clause] = STATE(1690), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(610), + [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -42263,17 +38227,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1072), - [aux_sym_if_statement_repeat1] = STATE(1741), + [aux_sym_program_repeat1] = STATE(1041), + [aux_sym_if_statement_repeat1] = STATE(1691), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), [anon_sym_while] = ACTIONS(13), [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(4066), - [anon_sym_elif] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1183), + [anon_sym_fi] = ACTIONS(3978), + [anon_sym_elif] = ACTIONS(1169), + [anon_sym_else] = ACTIONS(1171), [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), @@ -42306,116 +38270,116 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [1328] = { - [sym_elif_clause] = STATE(608), - [sym_else_clause] = STATE(1740), - [aux_sym_if_statement_repeat1] = STATE(1074), - [anon_sym_fi] = ACTIONS(4064), - [anon_sym_elif] = ACTIONS(2293), - [anon_sym_else] = ACTIONS(2295), + [1297] = { + [sym_elif_clause] = STATE(599), + [sym_else_clause] = STATE(1690), + [aux_sym_if_statement_repeat1] = STATE(1043), + [anon_sym_fi] = ACTIONS(3976), + [anon_sym_elif] = ACTIONS(2251), + [anon_sym_else] = ACTIONS(2253), [sym_comment] = ACTIONS(53), }, - [1329] = { - [sym_case_item] = STATE(1744), - [sym_last_case_item] = STATE(1743), - [sym_concatenation] = STATE(1079), - [sym_string] = STATE(1077), - [sym_simple_expansion] = STATE(1077), - [sym_string_expansion] = STATE(1077), - [sym_expansion] = STATE(1077), - [sym_command_substitution] = STATE(1077), - [sym_process_substitution] = STATE(1077), - [aux_sym_case_statement_repeat1] = STATE(1744), - [anon_sym_esac] = ACTIONS(4068), - [sym__special_characters] = ACTIONS(2299), + [1298] = { + [sym_case_item] = STATE(1694), + [sym_last_case_item] = STATE(1693), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(1046), + [sym_simple_expansion] = STATE(1046), + [sym_string_expansion] = STATE(1046), + [sym_expansion] = STATE(1046), + [sym_command_substitution] = STATE(1046), + [sym_process_substitution] = STATE(1046), + [aux_sym_case_statement_repeat1] = STATE(1694), + [anon_sym_esac] = ACTIONS(3980), + [sym__special_characters] = ACTIONS(2257), [anon_sym_DQUOTE] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2259), [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), [anon_sym_BQUOTE] = ACTIONS(149), [anon_sym_LT_LPAREN] = ACTIONS(151), [anon_sym_GT_LPAREN] = ACTIONS(151), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2303), + [sym_word] = ACTIONS(2261), }, - [1330] = { - [anon_sym_SEMI_SEMI] = ACTIONS(4070), + [1299] = { + [anon_sym_SEMI_SEMI] = ACTIONS(3982), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4070), - [anon_sym_LF] = ACTIONS(4072), - [anon_sym_AMP] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(3982), + [anon_sym_LF] = ACTIONS(3984), + [anon_sym_AMP] = ACTIONS(3982), }, - [1331] = { - [sym_case_item] = STATE(1748), - [sym_last_case_item] = STATE(1747), - [sym_concatenation] = STATE(1079), - [sym_string] = STATE(1077), - [sym_simple_expansion] = STATE(1077), - [sym_string_expansion] = STATE(1077), - [sym_expansion] = STATE(1077), - [sym_command_substitution] = STATE(1077), - [sym_process_substitution] = STATE(1077), - [aux_sym_case_statement_repeat1] = STATE(1748), - [anon_sym_esac] = ACTIONS(4074), - [sym__special_characters] = ACTIONS(2299), + [1300] = { + [sym_case_item] = STATE(1698), + [sym_last_case_item] = STATE(1697), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(1046), + [sym_simple_expansion] = STATE(1046), + [sym_string_expansion] = STATE(1046), + [sym_expansion] = STATE(1046), + [sym_command_substitution] = STATE(1046), + [sym_process_substitution] = STATE(1046), + [aux_sym_case_statement_repeat1] = STATE(1698), + [anon_sym_esac] = ACTIONS(3986), + [sym__special_characters] = ACTIONS(2257), [anon_sym_DQUOTE] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2259), [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), [anon_sym_BQUOTE] = ACTIONS(149), [anon_sym_LT_LPAREN] = ACTIONS(151), [anon_sym_GT_LPAREN] = ACTIONS(151), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2303), + [sym_word] = ACTIONS(2261), }, - [1332] = { - [anon_sym_SEMI_SEMI] = ACTIONS(4076), + [1301] = { + [anon_sym_SEMI_SEMI] = ACTIONS(3988), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4076), - [anon_sym_LF] = ACTIONS(4078), - [anon_sym_AMP] = ACTIONS(4076), + [anon_sym_SEMI] = ACTIONS(3988), + [anon_sym_LF] = ACTIONS(3990), + [anon_sym_AMP] = ACTIONS(3988), }, - [1333] = { - [sym_compound_statement] = STATE(1750), - [anon_sym_LBRACE] = ACTIONS(1852), + [1302] = { + [sym_compound_statement] = STATE(1700), + [anon_sym_LBRACE] = ACTIONS(1840), [sym_comment] = ACTIONS(53), }, - [1334] = { - [sym_file_descriptor] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_PIPE_AMP] = ACTIONS(2358), - [anon_sym_AMP_AMP] = ACTIONS(2358), - [anon_sym_PIPE_PIPE] = ACTIONS(2358), - [anon_sym_LT] = ACTIONS(2360), - [anon_sym_GT] = ACTIONS(2360), - [anon_sym_GT_GT] = ACTIONS(2358), - [anon_sym_AMP_GT] = ACTIONS(2360), - [anon_sym_AMP_GT_GT] = ACTIONS(2358), - [anon_sym_LT_AMP] = ACTIONS(2358), - [anon_sym_GT_AMP] = ACTIONS(2358), - [anon_sym_BQUOTE] = ACTIONS(2358), + [1303] = { + [sym_file_descriptor] = ACTIONS(2316), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_RPAREN] = ACTIONS(2316), + [anon_sym_PIPE_AMP] = ACTIONS(2316), + [anon_sym_AMP_AMP] = ACTIONS(2316), + [anon_sym_PIPE_PIPE] = ACTIONS(2316), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_GT] = ACTIONS(2318), + [anon_sym_GT_GT] = ACTIONS(2316), + [anon_sym_AMP_GT] = ACTIONS(2318), + [anon_sym_AMP_GT_GT] = ACTIONS(2316), + [anon_sym_LT_AMP] = ACTIONS(2316), + [anon_sym_GT_AMP] = ACTIONS(2316), + [anon_sym_BQUOTE] = ACTIONS(2316), [sym_comment] = ACTIONS(53), }, - [1335] = { - [sym__terminated_statement] = STATE(1107), - [sym_for_statement] = STATE(638), - [sym_while_statement] = STATE(638), - [sym_if_statement] = STATE(638), - [sym_case_statement] = STATE(638), - [sym_function_definition] = STATE(638), - [sym_subshell] = STATE(638), - [sym_pipeline] = STATE(638), - [sym_list] = STATE(638), - [sym_negated_command] = STATE(638), - [sym_test_command] = STATE(638), - [sym_declaration_command] = STATE(638), - [sym_unset_command] = STATE(638), - [sym_command] = STATE(638), + [1304] = { + [sym__terminated_statement] = STATE(1076), + [sym_for_statement] = STATE(628), + [sym_while_statement] = STATE(628), + [sym_if_statement] = STATE(628), + [sym_case_statement] = STATE(628), + [sym_function_definition] = STATE(628), + [sym_subshell] = STATE(628), + [sym_pipeline] = STATE(628), + [sym_list] = STATE(628), + [sym_negated_command] = STATE(628), + [sym_test_command] = STATE(628), + [sym_declaration_command] = STATE(628), + [sym_unset_command] = STATE(628), + [sym_command] = STATE(628), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(639), + [sym_variable_assignment] = STATE(629), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -42425,7 +38389,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1107), + [aux_sym_program_repeat1] = STATE(1076), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), @@ -42435,7 +38399,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(4080), + [anon_sym_RBRACE] = ACTIONS(3992), [anon_sym_BANG] = ACTIONS(23), [anon_sym_LBRACK] = ACTIONS(25), [anon_sym_LBRACK_LBRACK] = ACTIONS(27), @@ -42465,62 +38429,62 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [1336] = { - [anon_sym_LT] = ACTIONS(4082), - [anon_sym_GT] = ACTIONS(4082), - [anon_sym_GT_GT] = ACTIONS(4084), - [anon_sym_AMP_GT] = ACTIONS(4082), - [anon_sym_AMP_GT_GT] = ACTIONS(4084), - [anon_sym_LT_AMP] = ACTIONS(4084), - [anon_sym_GT_AMP] = ACTIONS(4084), + [1305] = { + [anon_sym_LT] = ACTIONS(3994), + [anon_sym_GT] = ACTIONS(3994), + [anon_sym_GT_GT] = ACTIONS(3996), + [anon_sym_AMP_GT] = ACTIONS(3994), + [anon_sym_AMP_GT_GT] = ACTIONS(3996), + [anon_sym_LT_AMP] = ACTIONS(3996), + [anon_sym_GT_AMP] = ACTIONS(3996), [sym_comment] = ACTIONS(53), }, - [1337] = { - [sym_concatenation] = STATE(1755), - [sym_string] = STATE(1754), - [sym_simple_expansion] = STATE(1754), - [sym_string_expansion] = STATE(1754), - [sym_expansion] = STATE(1754), - [sym_command_substitution] = STATE(1754), - [sym_process_substitution] = STATE(1754), - [sym__special_characters] = ACTIONS(4086), + [1306] = { + [sym_concatenation] = STATE(1705), + [sym_string] = STATE(1704), + [sym_simple_expansion] = STATE(1704), + [sym_string_expansion] = STATE(1704), + [sym_expansion] = STATE(1704), + [sym_command_substitution] = STATE(1704), + [sym_process_substitution] = STATE(1704), + [sym__special_characters] = ACTIONS(3998), [anon_sym_DQUOTE] = ACTIONS(827), [anon_sym_DOLLAR] = ACTIONS(829), - [sym_raw_string] = ACTIONS(4088), + [sym_raw_string] = ACTIONS(4000), [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), [anon_sym_BQUOTE] = ACTIONS(837), [anon_sym_LT_LPAREN] = ACTIONS(839), [anon_sym_GT_LPAREN] = ACTIONS(839), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4088), + [sym_word] = ACTIONS(4000), }, - [1338] = { - [anon_sym_PIPE] = ACTIONS(2376), - [anon_sym_RPAREN] = ACTIONS(2378), - [anon_sym_PIPE_AMP] = ACTIONS(2378), - [anon_sym_AMP_AMP] = ACTIONS(2378), - [anon_sym_PIPE_PIPE] = ACTIONS(2378), - [anon_sym_BQUOTE] = ACTIONS(2378), + [1307] = { + [anon_sym_PIPE] = ACTIONS(2334), + [anon_sym_RPAREN] = ACTIONS(2336), + [anon_sym_PIPE_AMP] = ACTIONS(2336), + [anon_sym_AMP_AMP] = ACTIONS(2336), + [anon_sym_PIPE_PIPE] = ACTIONS(2336), + [anon_sym_BQUOTE] = ACTIONS(2336), [sym_comment] = ACTIONS(53), }, - [1339] = { - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2413), - [anon_sym_PIPE_AMP] = ACTIONS(2413), - [anon_sym_AMP_AMP] = ACTIONS(2413), - [anon_sym_PIPE_PIPE] = ACTIONS(2413), - [anon_sym_BQUOTE] = ACTIONS(2413), + [1308] = { + [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(53), }, - [1340] = { + [1309] = { [sym_file_descriptor] = ACTIONS(951), [sym_variable_name] = ACTIONS(951), [anon_sym_for] = ACTIONS(953), [anon_sym_while] = ACTIONS(953), [anon_sym_if] = ACTIONS(953), [anon_sym_case] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(4090), + [anon_sym_RPAREN] = ACTIONS(4002), [anon_sym_function] = ACTIONS(953), [anon_sym_LPAREN] = ACTIONS(951), [anon_sym_BANG] = ACTIONS(953), @@ -42552,84 +38516,84 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(953), }, - [1341] = { - [anon_sym_LT] = ACTIONS(4092), - [anon_sym_GT] = ACTIONS(4092), - [anon_sym_GT_GT] = ACTIONS(4094), - [anon_sym_AMP_GT] = ACTIONS(4092), - [anon_sym_AMP_GT_GT] = ACTIONS(4094), - [anon_sym_LT_AMP] = ACTIONS(4094), - [anon_sym_GT_AMP] = ACTIONS(4094), + [1310] = { + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_GT_GT] = ACTIONS(4006), + [anon_sym_AMP_GT] = ACTIONS(4004), + [anon_sym_AMP_GT_GT] = ACTIONS(4006), + [anon_sym_LT_AMP] = ACTIONS(4006), + [anon_sym_GT_AMP] = ACTIONS(4006), [sym_comment] = ACTIONS(53), }, - [1342] = { - [sym_concatenation] = STATE(1766), - [sym_string] = STATE(1761), - [sym_simple_expansion] = STATE(1761), - [sym_string_expansion] = STATE(1761), - [sym_expansion] = STATE(1761), - [sym_command_substitution] = STATE(1761), - [sym_process_substitution] = STATE(1761), - [sym__special_characters] = ACTIONS(4096), - [anon_sym_DQUOTE] = ACTIONS(4098), - [anon_sym_DOLLAR] = ACTIONS(4100), - [sym_raw_string] = ACTIONS(4102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4106), - [anon_sym_BQUOTE] = ACTIONS(4108), - [anon_sym_LT_LPAREN] = ACTIONS(4110), - [anon_sym_GT_LPAREN] = ACTIONS(4110), + [1311] = { + [sym_concatenation] = STATE(1716), + [sym_string] = STATE(1711), + [sym_simple_expansion] = STATE(1711), + [sym_string_expansion] = STATE(1711), + [sym_expansion] = STATE(1711), + [sym_command_substitution] = STATE(1711), + [sym_process_substitution] = STATE(1711), + [sym__special_characters] = ACTIONS(4008), + [anon_sym_DQUOTE] = ACTIONS(4010), + [anon_sym_DOLLAR] = ACTIONS(4012), + [sym_raw_string] = ACTIONS(4014), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4016), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4018), + [anon_sym_BQUOTE] = ACTIONS(4020), + [anon_sym_LT_LPAREN] = ACTIONS(4022), + [anon_sym_GT_LPAREN] = ACTIONS(4022), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4102), + [sym_word] = ACTIONS(4014), }, - [1343] = { - [sym_heredoc_start] = ACTIONS(4112), + [1312] = { + [sym_heredoc_start] = ACTIONS(4024), [sym_comment] = ACTIONS(53), }, - [1344] = { - [sym_concatenation] = STATE(1770), - [sym_string] = STATE(1769), - [sym_simple_expansion] = STATE(1769), - [sym_string_expansion] = STATE(1769), - [sym_expansion] = STATE(1769), - [sym_command_substitution] = STATE(1769), - [sym_process_substitution] = STATE(1769), - [sym__special_characters] = ACTIONS(4114), - [anon_sym_DQUOTE] = ACTIONS(4098), - [anon_sym_DOLLAR] = ACTIONS(4100), - [sym_raw_string] = ACTIONS(4116), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4106), - [anon_sym_BQUOTE] = ACTIONS(4108), - [anon_sym_LT_LPAREN] = ACTIONS(4110), - [anon_sym_GT_LPAREN] = ACTIONS(4110), + [1313] = { + [sym_concatenation] = STATE(1720), + [sym_string] = STATE(1719), + [sym_simple_expansion] = STATE(1719), + [sym_string_expansion] = STATE(1719), + [sym_expansion] = STATE(1719), + [sym_command_substitution] = STATE(1719), + [sym_process_substitution] = STATE(1719), + [sym__special_characters] = ACTIONS(4026), + [anon_sym_DQUOTE] = ACTIONS(4010), + [anon_sym_DOLLAR] = ACTIONS(4012), + [sym_raw_string] = ACTIONS(4028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4016), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4018), + [anon_sym_BQUOTE] = ACTIONS(4020), + [anon_sym_LT_LPAREN] = ACTIONS(4022), + [anon_sym_GT_LPAREN] = ACTIONS(4022), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4116), + [sym_word] = ACTIONS(4028), }, - [1345] = { - [sym_file_redirect] = STATE(1771), - [sym_heredoc_redirect] = STATE(1771), - [sym_herestring_redirect] = STATE(1771), - [aux_sym_while_statement_repeat1] = STATE(1771), - [sym_file_descriptor] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2520), - [anon_sym_RPAREN] = ACTIONS(2522), - [anon_sym_PIPE_AMP] = ACTIONS(2522), - [anon_sym_AMP_AMP] = ACTIONS(2522), - [anon_sym_PIPE_PIPE] = ACTIONS(2522), - [anon_sym_LT] = ACTIONS(2945), - [anon_sym_GT] = ACTIONS(2945), - [anon_sym_GT_GT] = ACTIONS(2947), - [anon_sym_AMP_GT] = ACTIONS(2945), - [anon_sym_AMP_GT_GT] = ACTIONS(2947), - [anon_sym_LT_AMP] = ACTIONS(2947), - [anon_sym_GT_AMP] = ACTIONS(2947), - [anon_sym_LT_LT] = ACTIONS(2949), - [anon_sym_LT_LT_DASH] = ACTIONS(2951), - [anon_sym_LT_LT_LT] = ACTIONS(2953), + [1314] = { + [sym_file_redirect] = STATE(1721), + [sym_heredoc_redirect] = STATE(1721), + [sym_herestring_redirect] = STATE(1721), + [aux_sym_while_statement_repeat1] = STATE(1721), + [sym_file_descriptor] = ACTIONS(2901), + [anon_sym_PIPE] = ACTIONS(2478), + [anon_sym_RPAREN] = ACTIONS(2480), + [anon_sym_PIPE_AMP] = ACTIONS(2480), + [anon_sym_AMP_AMP] = ACTIONS(2480), + [anon_sym_PIPE_PIPE] = ACTIONS(2480), + [anon_sym_LT] = ACTIONS(2903), + [anon_sym_GT] = ACTIONS(2903), + [anon_sym_GT_GT] = ACTIONS(2905), + [anon_sym_AMP_GT] = ACTIONS(2903), + [anon_sym_AMP_GT_GT] = ACTIONS(2905), + [anon_sym_LT_AMP] = ACTIONS(2905), + [anon_sym_GT_AMP] = ACTIONS(2905), + [anon_sym_LT_LT] = ACTIONS(2907), + [anon_sym_LT_LT_DASH] = ACTIONS(2909), + [anon_sym_LT_LT_LT] = ACTIONS(2911), [sym_comment] = ACTIONS(53), }, - [1346] = { + [1315] = { [sym_variable_name] = ACTIONS(1107), [anon_sym_PIPE] = ACTIONS(1109), [anon_sym_RPAREN] = ACTIONS(1107), @@ -42649,16 +38613,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1109), [sym_word] = ACTIONS(1109), }, - [1347] = { - [sym_concatenation] = STATE(1773), + [1316] = { + [sym_concatenation] = STATE(1723), [sym_string] = STATE(563), [sym_simple_expansion] = STATE(563), [sym_string_expansion] = STATE(563), [sym_expansion] = STATE(563), [sym_command_substitution] = STATE(563), [sym_process_substitution] = STATE(563), - [aux_sym_for_statement_repeat1] = STATE(1773), - [anon_sym_RPAREN] = ACTIONS(4118), + [aux_sym_for_statement_repeat1] = STATE(1723), + [anon_sym_RPAREN] = ACTIONS(4030), [sym__special_characters] = ACTIONS(1113), [anon_sym_DQUOTE] = ACTIONS(1115), [anon_sym_DOLLAR] = ACTIONS(1117), @@ -42671,9 +38635,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(1119), }, - [1348] = { - [aux_sym_concatenation_repeat1] = STATE(873), - [sym__concat] = ACTIONS(1864), + [1317] = { + [aux_sym_concatenation_repeat1] = STATE(863), + [sym__concat] = ACTIONS(1852), [sym_variable_name] = ACTIONS(1129), [anon_sym_PIPE] = ACTIONS(1133), [anon_sym_RPAREN] = ACTIONS(1129), @@ -42693,9 +38657,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1133), [sym_word] = ACTIONS(1133), }, - [1349] = { - [aux_sym_concatenation_repeat1] = STATE(873), - [sym__concat] = ACTIONS(1864), + [1318] = { + [aux_sym_concatenation_repeat1] = STATE(863), + [sym__concat] = ACTIONS(1852), [sym_variable_name] = ACTIONS(1107), [anon_sym_PIPE] = ACTIONS(1109), [anon_sym_RPAREN] = ACTIONS(1107), @@ -42715,287 +38679,838 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1109), [sym_word] = ACTIONS(1109), }, - [1350] = { - [sym__concat] = ACTIONS(1654), - [sym_variable_name] = ACTIONS(1654), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1654), - [anon_sym_PIPE_AMP] = ACTIONS(1654), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_PIPE_PIPE] = ACTIONS(1654), - [sym__special_characters] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1654), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [anon_sym_LT_LPAREN] = ACTIONS(1654), - [anon_sym_GT_LPAREN] = ACTIONS(1654), + [1319] = { + [sym__concat] = ACTIONS(1642), + [sym_variable_name] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_PIPE_AMP] = ACTIONS(1642), + [anon_sym_AMP_AMP] = ACTIONS(1642), + [anon_sym_PIPE_PIPE] = ACTIONS(1642), + [sym__special_characters] = ACTIONS(1642), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1642), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1642), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), + [anon_sym_LT_LPAREN] = ACTIONS(1642), + [anon_sym_GT_LPAREN] = ACTIONS(1642), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1656), - [sym_word] = ACTIONS(1656), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1644), + [sym_word] = ACTIONS(1644), + }, + [1320] = { + [aux_sym_concatenation_repeat1] = STATE(1320), + [sym__concat] = ACTIONS(4032), + [sym_variable_name] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_PIPE_AMP] = ACTIONS(1642), + [anon_sym_AMP_AMP] = ACTIONS(1642), + [anon_sym_PIPE_PIPE] = ACTIONS(1642), + [sym__special_characters] = ACTIONS(1642), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1642), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1642), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), + [anon_sym_LT_LPAREN] = ACTIONS(1642), + [anon_sym_GT_LPAREN] = ACTIONS(1642), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1644), + [sym_word] = ACTIONS(1644), + }, + [1321] = { + [sym__concat] = ACTIONS(1691), + [sym_variable_name] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1693), + [anon_sym_RPAREN] = ACTIONS(1691), + [anon_sym_PIPE_AMP] = ACTIONS(1691), + [anon_sym_AMP_AMP] = ACTIONS(1691), + [anon_sym_PIPE_PIPE] = ACTIONS(1691), + [sym__special_characters] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(1693), + [sym_raw_string] = ACTIONS(1691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1691), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1691), + [anon_sym_BQUOTE] = ACTIONS(1691), + [anon_sym_LT_LPAREN] = ACTIONS(1691), + [anon_sym_GT_LPAREN] = ACTIONS(1691), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1693), + [sym_word] = ACTIONS(1693), + }, + [1322] = { + [sym_concatenation] = STATE(1727), + [sym_string] = STATE(1726), + [sym_simple_expansion] = STATE(1726), + [sym_string_expansion] = STATE(1726), + [sym_expansion] = STATE(1726), + [sym_command_substitution] = STATE(1726), + [sym_process_substitution] = STATE(1726), + [anon_sym_RBRACE] = ACTIONS(4035), + [sym__special_characters] = ACTIONS(4037), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(4039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4039), + }, + [1323] = { + [sym__concat] = ACTIONS(1732), + [sym_variable_name] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1732), + [anon_sym_PIPE_AMP] = ACTIONS(1732), + [anon_sym_AMP_AMP] = ACTIONS(1732), + [anon_sym_PIPE_PIPE] = ACTIONS(1732), + [sym__special_characters] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1732), + [anon_sym_DOLLAR] = ACTIONS(1734), + [sym_raw_string] = ACTIONS(1732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1732), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1732), + [anon_sym_BQUOTE] = ACTIONS(1732), + [anon_sym_LT_LPAREN] = ACTIONS(1732), + [anon_sym_GT_LPAREN] = ACTIONS(1732), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1734), + [sym_word] = ACTIONS(1734), + }, + [1324] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4041), + }, + [1325] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4043), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1326] = { + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(4045), + [sym_comment] = ACTIONS(53), + }, + [1327] = { + [sym_concatenation] = STATE(1733), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1733), + [anon_sym_RBRACE] = ACTIONS(4047), + [anon_sym_EQ] = ACTIONS(4049), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(4053), + [anon_sym_COLON] = ACTIONS(4049), + [anon_sym_COLON_QMARK] = ACTIONS(4049), + [anon_sym_COLON_DASH] = ACTIONS(4049), + [anon_sym_PERCENT] = ACTIONS(4049), + [anon_sym_DASH] = ACTIONS(4049), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1328] = { + [sym_concatenation] = STATE(1736), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1736), + [anon_sym_RBRACE] = ACTIONS(4055), + [anon_sym_EQ] = ACTIONS(4057), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(4061), + [anon_sym_COLON] = ACTIONS(4057), + [anon_sym_COLON_QMARK] = ACTIONS(4057), + [anon_sym_COLON_DASH] = ACTIONS(4057), + [anon_sym_PERCENT] = ACTIONS(4057), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1329] = { + [sym_concatenation] = STATE(1738), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1738), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_EQ] = ACTIONS(4063), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(4067), + [anon_sym_COLON] = ACTIONS(4063), + [anon_sym_COLON_QMARK] = ACTIONS(4063), + [anon_sym_COLON_DASH] = ACTIONS(4063), + [anon_sym_PERCENT] = ACTIONS(4063), + [anon_sym_DASH] = ACTIONS(4063), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1330] = { + [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(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1800), + [sym_word] = ACTIONS(1800), + }, + [1331] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4069), + }, + [1332] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4071), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1333] = { + [sym__concat] = ACTIONS(1806), + [sym_variable_name] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1808), + [anon_sym_RPAREN] = ACTIONS(1806), + [anon_sym_PIPE_AMP] = ACTIONS(1806), + [anon_sym_AMP_AMP] = ACTIONS(1806), + [anon_sym_PIPE_PIPE] = ACTIONS(1806), + [sym__special_characters] = ACTIONS(1806), + [anon_sym_DQUOTE] = ACTIONS(1806), + [anon_sym_DOLLAR] = ACTIONS(1808), + [sym_raw_string] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1806), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1806), + [anon_sym_BQUOTE] = ACTIONS(1806), + [anon_sym_LT_LPAREN] = ACTIONS(1806), + [anon_sym_GT_LPAREN] = ACTIONS(1806), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1808), + [sym_word] = ACTIONS(1808), + }, + [1334] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4073), + }, + [1335] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1336] = { + [sym__concat] = ACTIONS(1940), + [sym_variable_name] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1940), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [sym__special_characters] = ACTIONS(1940), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(1942), + [sym_raw_string] = ACTIONS(1940), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1940), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [anon_sym_LT_LPAREN] = ACTIONS(1940), + [anon_sym_GT_LPAREN] = ACTIONS(1940), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1942), + [sym_word] = ACTIONS(1942), + }, + [1337] = { + [sym__concat] = ACTIONS(2006), + [sym_variable_name] = ACTIONS(2006), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2006), + [anon_sym_PIPE_AMP] = ACTIONS(2006), + [anon_sym_AMP_AMP] = ACTIONS(2006), + [anon_sym_PIPE_PIPE] = ACTIONS(2006), + [sym__special_characters] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [anon_sym_DOLLAR] = ACTIONS(2008), + [sym_raw_string] = ACTIONS(2006), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2006), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2006), + [anon_sym_BQUOTE] = ACTIONS(2006), + [anon_sym_LT_LPAREN] = ACTIONS(2006), + [anon_sym_GT_LPAREN] = ACTIONS(2006), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2008), + [sym_word] = ACTIONS(2008), + }, + [1338] = { + [sym__concat] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_PIPE_AMP] = ACTIONS(1642), + [anon_sym_AMP_AMP] = ACTIONS(1642), + [anon_sym_PIPE_PIPE] = ACTIONS(1642), + [sym__special_characters] = ACTIONS(1642), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1642), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1642), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), + [anon_sym_LT_LPAREN] = ACTIONS(1642), + [anon_sym_GT_LPAREN] = ACTIONS(1642), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1644), + [sym_word] = ACTIONS(1644), + }, + [1339] = { + [aux_sym_concatenation_repeat1] = STATE(1339), + [sym__concat] = ACTIONS(4075), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_PIPE_AMP] = ACTIONS(1642), + [anon_sym_AMP_AMP] = ACTIONS(1642), + [anon_sym_PIPE_PIPE] = ACTIONS(1642), + [sym__special_characters] = ACTIONS(1642), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1642), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1642), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), + [anon_sym_LT_LPAREN] = ACTIONS(1642), + [anon_sym_GT_LPAREN] = ACTIONS(1642), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1644), + [sym_word] = ACTIONS(1644), + }, + [1340] = { + [sym__concat] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1693), + [anon_sym_RPAREN] = ACTIONS(1691), + [anon_sym_PIPE_AMP] = ACTIONS(1691), + [anon_sym_AMP_AMP] = ACTIONS(1691), + [anon_sym_PIPE_PIPE] = ACTIONS(1691), + [sym__special_characters] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(1693), + [sym_raw_string] = ACTIONS(1691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1691), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1691), + [anon_sym_BQUOTE] = ACTIONS(1691), + [anon_sym_LT_LPAREN] = ACTIONS(1691), + [anon_sym_GT_LPAREN] = ACTIONS(1691), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1693), + [sym_word] = ACTIONS(1693), + }, + [1341] = { + [sym_concatenation] = STATE(1745), + [sym_string] = STATE(1744), + [sym_simple_expansion] = STATE(1744), + [sym_string_expansion] = STATE(1744), + [sym_expansion] = STATE(1744), + [sym_command_substitution] = STATE(1744), + [sym_process_substitution] = STATE(1744), + [anon_sym_RBRACE] = ACTIONS(4078), + [sym__special_characters] = ACTIONS(4080), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(4082), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4082), + }, + [1342] = { + [sym__concat] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1732), + [anon_sym_PIPE_AMP] = ACTIONS(1732), + [anon_sym_AMP_AMP] = ACTIONS(1732), + [anon_sym_PIPE_PIPE] = ACTIONS(1732), + [sym__special_characters] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1732), + [anon_sym_DOLLAR] = ACTIONS(1734), + [sym_raw_string] = ACTIONS(1732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1732), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1732), + [anon_sym_BQUOTE] = ACTIONS(1732), + [anon_sym_LT_LPAREN] = ACTIONS(1732), + [anon_sym_GT_LPAREN] = ACTIONS(1732), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1734), + [sym_word] = ACTIONS(1734), + }, + [1343] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4084), + }, + [1344] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4086), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1345] = { + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(4088), + [sym_comment] = ACTIONS(53), + }, + [1346] = { + [sym_concatenation] = STATE(1751), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1751), + [anon_sym_RBRACE] = ACTIONS(4090), + [anon_sym_EQ] = ACTIONS(4092), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4094), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(4096), + [anon_sym_COLON] = ACTIONS(4092), + [anon_sym_COLON_QMARK] = ACTIONS(4092), + [anon_sym_COLON_DASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1347] = { + [sym_concatenation] = STATE(1754), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1754), + [anon_sym_RBRACE] = ACTIONS(4098), + [anon_sym_EQ] = ACTIONS(4100), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(4100), + [anon_sym_COLON_QMARK] = ACTIONS(4100), + [anon_sym_COLON_DASH] = ACTIONS(4100), + [anon_sym_PERCENT] = ACTIONS(4100), + [anon_sym_DASH] = ACTIONS(4100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1348] = { + [sym_concatenation] = STATE(1756), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1756), + [anon_sym_RBRACE] = ACTIONS(4078), + [anon_sym_EQ] = ACTIONS(4106), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4108), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4106), + [anon_sym_COLON_QMARK] = ACTIONS(4106), + [anon_sym_COLON_DASH] = ACTIONS(4106), + [anon_sym_PERCENT] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1349] = { + [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(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1800), + [sym_word] = ACTIONS(1800), + }, + [1350] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4112), }, [1351] = { - [aux_sym_concatenation_repeat1] = STATE(1351), - [sym__concat] = ACTIONS(4120), - [sym_variable_name] = ACTIONS(1654), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1654), - [anon_sym_PIPE_AMP] = ACTIONS(1654), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_PIPE_PIPE] = ACTIONS(1654), - [sym__special_characters] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1654), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [anon_sym_LT_LPAREN] = ACTIONS(1654), - [anon_sym_GT_LPAREN] = ACTIONS(1654), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1656), - [sym_word] = ACTIONS(1656), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1352] = { - [sym__concat] = ACTIONS(1703), - [sym_variable_name] = ACTIONS(1703), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_RPAREN] = ACTIONS(1703), - [anon_sym_PIPE_AMP] = ACTIONS(1703), - [anon_sym_AMP_AMP] = ACTIONS(1703), - [anon_sym_PIPE_PIPE] = ACTIONS(1703), - [sym__special_characters] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1703), - [anon_sym_DOLLAR] = ACTIONS(1705), - [sym_raw_string] = ACTIONS(1703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1703), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1703), - [anon_sym_BQUOTE] = ACTIONS(1703), - [anon_sym_LT_LPAREN] = ACTIONS(1703), - [anon_sym_GT_LPAREN] = ACTIONS(1703), + [sym__concat] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1808), + [anon_sym_RPAREN] = ACTIONS(1806), + [anon_sym_PIPE_AMP] = ACTIONS(1806), + [anon_sym_AMP_AMP] = ACTIONS(1806), + [anon_sym_PIPE_PIPE] = ACTIONS(1806), + [sym__special_characters] = ACTIONS(1806), + [anon_sym_DQUOTE] = ACTIONS(1806), + [anon_sym_DOLLAR] = ACTIONS(1808), + [sym_raw_string] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1806), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1806), + [anon_sym_BQUOTE] = ACTIONS(1806), + [anon_sym_LT_LPAREN] = ACTIONS(1806), + [anon_sym_GT_LPAREN] = ACTIONS(1806), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1705), - [sym_word] = ACTIONS(1705), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1808), + [sym_word] = ACTIONS(1808), }, [1353] = { - [sym_concatenation] = STATE(1777), - [sym_string] = STATE(1776), - [sym_simple_expansion] = STATE(1776), - [sym_string_expansion] = STATE(1776), - [sym_expansion] = STATE(1776), - [sym_command_substitution] = STATE(1776), - [sym_process_substitution] = STATE(1776), - [anon_sym_RBRACE] = ACTIONS(4123), - [sym__special_characters] = ACTIONS(4125), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(4127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4127), + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4116), }, [1354] = { - [sym__concat] = ACTIONS(1744), - [sym_variable_name] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1744), - [anon_sym_PIPE_AMP] = ACTIONS(1744), - [anon_sym_AMP_AMP] = ACTIONS(1744), - [anon_sym_PIPE_PIPE] = ACTIONS(1744), - [sym__special_characters] = ACTIONS(1744), - [anon_sym_DQUOTE] = ACTIONS(1744), - [anon_sym_DOLLAR] = ACTIONS(1746), - [sym_raw_string] = ACTIONS(1744), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1744), - [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(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1746), - [sym_word] = ACTIONS(1746), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4078), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1355] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4129), + [sym__concat] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1940), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [sym__special_characters] = ACTIONS(1940), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(1942), + [sym_raw_string] = ACTIONS(1940), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1940), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [anon_sym_LT_LPAREN] = ACTIONS(1940), + [anon_sym_GT_LPAREN] = ACTIONS(1940), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1942), + [sym_word] = ACTIONS(1942), }, [1356] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4131), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(2006), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2006), + [anon_sym_PIPE_AMP] = ACTIONS(2006), + [anon_sym_AMP_AMP] = ACTIONS(2006), + [anon_sym_PIPE_PIPE] = ACTIONS(2006), + [sym__special_characters] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [anon_sym_DOLLAR] = ACTIONS(2008), + [sym_raw_string] = ACTIONS(2006), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2006), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2006), + [anon_sym_BQUOTE] = ACTIONS(2006), + [anon_sym_LT_LPAREN] = ACTIONS(2006), + [anon_sym_GT_LPAREN] = ACTIONS(2006), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2008), + [sym_word] = ACTIONS(2008), }, [1357] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(4133), + [sym__simple_heredoc_body] = ACTIONS(2710), + [sym__heredoc_body_beginning] = ACTIONS(2710), + [sym_file_descriptor] = ACTIONS(2710), + [sym__concat] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2712), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_PIPE_AMP] = ACTIONS(2710), + [anon_sym_AMP_AMP] = ACTIONS(2710), + [anon_sym_PIPE_PIPE] = ACTIONS(2710), + [anon_sym_EQ_TILDE] = ACTIONS(2712), + [anon_sym_EQ_EQ] = ACTIONS(2712), + [anon_sym_LT] = ACTIONS(2712), + [anon_sym_GT] = ACTIONS(2712), + [anon_sym_GT_GT] = ACTIONS(2710), + [anon_sym_AMP_GT] = ACTIONS(2712), + [anon_sym_AMP_GT_GT] = ACTIONS(2710), + [anon_sym_LT_AMP] = ACTIONS(2710), + [anon_sym_GT_AMP] = ACTIONS(2710), + [anon_sym_LT_LT] = ACTIONS(2712), + [anon_sym_LT_LT_DASH] = ACTIONS(2710), + [anon_sym_LT_LT_LT] = ACTIONS(2710), + [sym__special_characters] = ACTIONS(2710), + [anon_sym_DQUOTE] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2712), + [sym_raw_string] = ACTIONS(2710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2710), + [anon_sym_BQUOTE] = ACTIONS(2710), + [anon_sym_LT_LPAREN] = ACTIONS(2710), + [anon_sym_GT_LPAREN] = ACTIONS(2710), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2712), }, [1358] = { - [sym_concatenation] = STATE(1783), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1783), - [anon_sym_RBRACE] = ACTIONS(4135), - [anon_sym_EQ] = ACTIONS(4137), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4139), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(4141), - [anon_sym_COLON] = ACTIONS(4137), - [anon_sym_COLON_QMARK] = ACTIONS(4137), - [anon_sym_COLON_DASH] = ACTIONS(4137), - [anon_sym_PERCENT] = ACTIONS(4137), - [anon_sym_DASH] = ACTIONS(4137), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4118), + [sym_comment] = ACTIONS(53), }, [1359] = { - [sym_concatenation] = STATE(1786), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1786), - [anon_sym_RBRACE] = ACTIONS(4143), - [anon_sym_EQ] = ACTIONS(4145), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4147), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(4149), - [anon_sym_COLON] = ACTIONS(4145), - [anon_sym_COLON_QMARK] = ACTIONS(4145), - [anon_sym_COLON_DASH] = ACTIONS(4145), - [anon_sym_PERCENT] = ACTIONS(4145), - [anon_sym_DASH] = ACTIONS(4145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4120), + [sym_comment] = ACTIONS(53), }, [1360] = { - [sym_concatenation] = STATE(1788), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1788), - [anon_sym_RBRACE] = ACTIONS(4123), - [anon_sym_EQ] = ACTIONS(4151), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4153), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(4155), - [anon_sym_COLON] = ACTIONS(4151), - [anon_sym_COLON_QMARK] = ACTIONS(4151), - [anon_sym_COLON_DASH] = ACTIONS(4151), - [anon_sym_PERCENT] = ACTIONS(4151), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(4120), + [sym_comment] = ACTIONS(53), }, [1361] = { - [sym__concat] = ACTIONS(1810), - [sym_variable_name] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_PIPE_AMP] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [sym__special_characters] = ACTIONS(1810), - [anon_sym_DQUOTE] = ACTIONS(1810), - [anon_sym_DOLLAR] = ACTIONS(1812), - [sym_raw_string] = ACTIONS(1810), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1810), - [anon_sym_LT_LPAREN] = ACTIONS(1810), - [anon_sym_GT_LPAREN] = ACTIONS(1810), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1812), - [sym_word] = ACTIONS(1812), - }, - [1362] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4157), - }, - [1363] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(1763), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(1763), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_EQ] = ACTIONS(4124), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(4126), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_COLON] = ACTIONS(4124), + [anon_sym_COLON_QMARK] = ACTIONS(4124), + [anon_sym_COLON_DASH] = ACTIONS(4124), + [anon_sym_PERCENT] = ACTIONS(4124), + [anon_sym_DASH] = ACTIONS(4124), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -43003,53 +39518,121 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1364] = { - [sym__concat] = ACTIONS(1818), - [sym_variable_name] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_PIPE_AMP] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [sym__special_characters] = ACTIONS(1818), - [anon_sym_DQUOTE] = ACTIONS(1818), - [anon_sym_DOLLAR] = ACTIONS(1820), - [sym_raw_string] = ACTIONS(1818), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1818), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1818), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1818), - [anon_sym_GT_LPAREN] = ACTIONS(1818), + [1362] = { + [sym__simple_heredoc_body] = ACTIONS(2788), + [sym__heredoc_body_beginning] = ACTIONS(2788), + [sym_file_descriptor] = ACTIONS(2788), + [sym__concat] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_RPAREN] = ACTIONS(2788), + [anon_sym_PIPE_AMP] = ACTIONS(2788), + [anon_sym_AMP_AMP] = ACTIONS(2788), + [anon_sym_PIPE_PIPE] = ACTIONS(2788), + [anon_sym_EQ_TILDE] = ACTIONS(2790), + [anon_sym_EQ_EQ] = ACTIONS(2790), + [anon_sym_LT] = ACTIONS(2790), + [anon_sym_GT] = ACTIONS(2790), + [anon_sym_GT_GT] = ACTIONS(2788), + [anon_sym_AMP_GT] = ACTIONS(2790), + [anon_sym_AMP_GT_GT] = ACTIONS(2788), + [anon_sym_LT_AMP] = ACTIONS(2788), + [anon_sym_GT_AMP] = ACTIONS(2788), + [anon_sym_LT_LT] = ACTIONS(2790), + [anon_sym_LT_LT_DASH] = ACTIONS(2788), + [anon_sym_LT_LT_LT] = ACTIONS(2788), + [sym__special_characters] = ACTIONS(2788), + [anon_sym_DQUOTE] = ACTIONS(2788), + [anon_sym_DOLLAR] = ACTIONS(2790), + [sym_raw_string] = ACTIONS(2788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2788), + [anon_sym_BQUOTE] = ACTIONS(2788), + [anon_sym_LT_LPAREN] = ACTIONS(2788), + [anon_sym_GT_LPAREN] = ACTIONS(2788), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1820), - [sym_word] = ACTIONS(1820), + [sym_word] = ACTIONS(2790), + }, + [1363] = { + [sym_concatenation] = STATE(1766), + [sym_string] = STATE(1765), + [sym_simple_expansion] = STATE(1765), + [sym_string_expansion] = STATE(1765), + [sym_expansion] = STATE(1765), + [sym_command_substitution] = STATE(1765), + [sym_process_substitution] = STATE(1765), + [anon_sym_RBRACE] = ACTIONS(4120), + [sym__special_characters] = ACTIONS(4128), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(4130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4130), + }, + [1364] = { + [sym__simple_heredoc_body] = ACTIONS(2831), + [sym__heredoc_body_beginning] = ACTIONS(2831), + [sym_file_descriptor] = ACTIONS(2831), + [sym__concat] = ACTIONS(2831), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_RPAREN] = ACTIONS(2831), + [anon_sym_PIPE_AMP] = ACTIONS(2831), + [anon_sym_AMP_AMP] = ACTIONS(2831), + [anon_sym_PIPE_PIPE] = ACTIONS(2831), + [anon_sym_EQ_TILDE] = ACTIONS(2833), + [anon_sym_EQ_EQ] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_GT_GT] = ACTIONS(2831), + [anon_sym_AMP_GT] = ACTIONS(2833), + [anon_sym_AMP_GT_GT] = ACTIONS(2831), + [anon_sym_LT_AMP] = ACTIONS(2831), + [anon_sym_GT_AMP] = ACTIONS(2831), + [anon_sym_LT_LT] = ACTIONS(2833), + [anon_sym_LT_LT_DASH] = ACTIONS(2831), + [anon_sym_LT_LT_LT] = ACTIONS(2831), + [sym__special_characters] = ACTIONS(2831), + [anon_sym_DQUOTE] = ACTIONS(2831), + [anon_sym_DOLLAR] = ACTIONS(2833), + [sym_raw_string] = ACTIONS(2831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2831), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2831), + [anon_sym_BQUOTE] = ACTIONS(2831), + [anon_sym_LT_LPAREN] = ACTIONS(2831), + [anon_sym_GT_LPAREN] = ACTIONS(2831), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2833), }, [1365] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4161), + [sym_regex_without_right_brace] = ACTIONS(4132), }, [1366] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4123), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -43058,175 +39641,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [1367] = { - [sym__concat] = ACTIONS(1952), - [sym_variable_name] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_RPAREN] = ACTIONS(1952), - [anon_sym_PIPE_AMP] = ACTIONS(1952), - [anon_sym_AMP_AMP] = ACTIONS(1952), - [anon_sym_PIPE_PIPE] = ACTIONS(1952), - [sym__special_characters] = ACTIONS(1952), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(1952), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1952), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1952), - [anon_sym_BQUOTE] = ACTIONS(1952), - [anon_sym_LT_LPAREN] = ACTIONS(1952), - [anon_sym_GT_LPAREN] = ACTIONS(1952), + [sym__simple_heredoc_body] = ACTIONS(2839), + [sym__heredoc_body_beginning] = ACTIONS(2839), + [sym_file_descriptor] = ACTIONS(2839), + [sym__concat] = ACTIONS(2839), + [anon_sym_PIPE] = ACTIONS(2841), + [anon_sym_RPAREN] = ACTIONS(2839), + [anon_sym_PIPE_AMP] = ACTIONS(2839), + [anon_sym_AMP_AMP] = ACTIONS(2839), + [anon_sym_PIPE_PIPE] = ACTIONS(2839), + [anon_sym_EQ_TILDE] = ACTIONS(2841), + [anon_sym_EQ_EQ] = ACTIONS(2841), + [anon_sym_LT] = ACTIONS(2841), + [anon_sym_GT] = ACTIONS(2841), + [anon_sym_GT_GT] = ACTIONS(2839), + [anon_sym_AMP_GT] = ACTIONS(2841), + [anon_sym_AMP_GT_GT] = ACTIONS(2839), + [anon_sym_LT_AMP] = ACTIONS(2839), + [anon_sym_GT_AMP] = ACTIONS(2839), + [anon_sym_LT_LT] = ACTIONS(2841), + [anon_sym_LT_LT_DASH] = ACTIONS(2839), + [anon_sym_LT_LT_LT] = ACTIONS(2839), + [sym__special_characters] = ACTIONS(2839), + [anon_sym_DQUOTE] = ACTIONS(2839), + [anon_sym_DOLLAR] = ACTIONS(2841), + [sym_raw_string] = ACTIONS(2839), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2839), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2839), + [anon_sym_BQUOTE] = ACTIONS(2839), + [anon_sym_LT_LPAREN] = ACTIONS(2839), + [anon_sym_GT_LPAREN] = ACTIONS(2839), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1954), - [sym_word] = ACTIONS(1954), + [sym_word] = ACTIONS(2841), }, [1368] = { - [sym__concat] = ACTIONS(2018), - [sym_variable_name] = ACTIONS(2018), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_RPAREN] = ACTIONS(2018), - [anon_sym_PIPE_AMP] = ACTIONS(2018), - [anon_sym_AMP_AMP] = ACTIONS(2018), - [anon_sym_PIPE_PIPE] = ACTIONS(2018), - [sym__special_characters] = ACTIONS(2018), - [anon_sym_DQUOTE] = ACTIONS(2018), - [anon_sym_DOLLAR] = ACTIONS(2020), - [sym_raw_string] = ACTIONS(2018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2018), - [anon_sym_BQUOTE] = ACTIONS(2018), - [anon_sym_LT_LPAREN] = ACTIONS(2018), - [anon_sym_GT_LPAREN] = ACTIONS(2018), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2020), - [sym_word] = ACTIONS(2020), + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4136), }, [1369] = { - [sym__concat] = ACTIONS(1654), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1654), - [anon_sym_PIPE_AMP] = ACTIONS(1654), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_PIPE_PIPE] = ACTIONS(1654), - [sym__special_characters] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1654), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [anon_sym_LT_LPAREN] = ACTIONS(1654), - [anon_sym_GT_LPAREN] = ACTIONS(1654), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1656), - [sym_word] = ACTIONS(1656), - }, - [1370] = { - [aux_sym_concatenation_repeat1] = STATE(1370), - [sym__concat] = ACTIONS(4163), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1654), - [anon_sym_PIPE_AMP] = ACTIONS(1654), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_PIPE_PIPE] = ACTIONS(1654), - [sym__special_characters] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1654), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [anon_sym_LT_LPAREN] = ACTIONS(1654), - [anon_sym_GT_LPAREN] = ACTIONS(1654), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1656), - [sym_word] = ACTIONS(1656), - }, - [1371] = { - [sym__concat] = ACTIONS(1703), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_RPAREN] = ACTIONS(1703), - [anon_sym_PIPE_AMP] = ACTIONS(1703), - [anon_sym_AMP_AMP] = ACTIONS(1703), - [anon_sym_PIPE_PIPE] = ACTIONS(1703), - [sym__special_characters] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1703), - [anon_sym_DOLLAR] = ACTIONS(1705), - [sym_raw_string] = ACTIONS(1703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1703), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1703), - [anon_sym_BQUOTE] = ACTIONS(1703), - [anon_sym_LT_LPAREN] = ACTIONS(1703), - [anon_sym_GT_LPAREN] = ACTIONS(1703), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1705), - [sym_word] = ACTIONS(1705), - }, - [1372] = { - [sym_concatenation] = STATE(1795), - [sym_string] = STATE(1794), - [sym_simple_expansion] = STATE(1794), - [sym_string_expansion] = STATE(1794), - [sym_expansion] = STATE(1794), - [sym_command_substitution] = STATE(1794), - [sym_process_substitution] = STATE(1794), - [anon_sym_RBRACE] = ACTIONS(4166), - [sym__special_characters] = ACTIONS(4168), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(4170), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4170), - }, - [1373] = { - [sym__concat] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1744), - [anon_sym_PIPE_AMP] = ACTIONS(1744), - [anon_sym_AMP_AMP] = ACTIONS(1744), - [anon_sym_PIPE_PIPE] = ACTIONS(1744), - [sym__special_characters] = ACTIONS(1744), - [anon_sym_DQUOTE] = ACTIONS(1744), - [anon_sym_DOLLAR] = ACTIONS(1746), - [sym_raw_string] = ACTIONS(1744), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1744), - [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(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1746), - [sym_word] = ACTIONS(1746), - }, - [1374] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4172), - }, - [1375] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4174), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4138), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -43234,668 +39707,159 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, + [1370] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4140), + }, + [1371] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1372] = { + [sym_concatenation] = STATE(1773), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1773), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(4144), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4146), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4144), + [anon_sym_COLON_QMARK] = ACTIONS(4144), + [anon_sym_COLON_DASH] = ACTIONS(4144), + [anon_sym_PERCENT] = ACTIONS(4144), + [anon_sym_DASH] = ACTIONS(4144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1373] = { + [sym__simple_heredoc_body] = ACTIONS(2855), + [sym__heredoc_body_beginning] = ACTIONS(2855), + [sym_file_descriptor] = ACTIONS(2855), + [sym__concat] = ACTIONS(2855), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2855), + [anon_sym_PIPE_AMP] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [anon_sym_EQ_TILDE] = ACTIONS(2857), + [anon_sym_EQ_EQ] = ACTIONS(2857), + [anon_sym_LT] = ACTIONS(2857), + [anon_sym_GT] = ACTIONS(2857), + [anon_sym_GT_GT] = ACTIONS(2855), + [anon_sym_AMP_GT] = ACTIONS(2857), + [anon_sym_AMP_GT_GT] = ACTIONS(2855), + [anon_sym_LT_AMP] = ACTIONS(2855), + [anon_sym_GT_AMP] = ACTIONS(2855), + [anon_sym_LT_LT] = ACTIONS(2857), + [anon_sym_LT_LT_DASH] = ACTIONS(2855), + [anon_sym_LT_LT_LT] = ACTIONS(2855), + [sym__special_characters] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(2855), + [anon_sym_DOLLAR] = ACTIONS(2857), + [sym_raw_string] = ACTIONS(2855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2855), + [anon_sym_BQUOTE] = ACTIONS(2855), + [anon_sym_LT_LPAREN] = ACTIONS(2855), + [anon_sym_GT_LPAREN] = ACTIONS(2855), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2857), + }, + [1374] = { + [sym_concatenation] = STATE(1775), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1775), + [anon_sym_RBRACE] = ACTIONS(4148), + [anon_sym_EQ] = ACTIONS(4150), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4150), + [anon_sym_COLON_QMARK] = ACTIONS(4150), + [anon_sym_COLON_DASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1375] = { + [sym_file_redirect] = STATE(1776), + [sym_file_descriptor] = ACTIONS(2887), + [anon_sym_PIPE] = ACTIONS(2334), + [anon_sym_RPAREN] = ACTIONS(2336), + [anon_sym_PIPE_AMP] = ACTIONS(2336), + [anon_sym_AMP_AMP] = ACTIONS(2336), + [anon_sym_PIPE_PIPE] = ACTIONS(2336), + [anon_sym_LT] = ACTIONS(2889), + [anon_sym_GT] = ACTIONS(2889), + [anon_sym_GT_GT] = ACTIONS(2891), + [anon_sym_AMP_GT] = ACTIONS(2889), + [anon_sym_AMP_GT_GT] = ACTIONS(2891), + [anon_sym_LT_AMP] = ACTIONS(2891), + [anon_sym_GT_AMP] = ACTIONS(2891), + [sym_comment] = ACTIONS(53), + }, [1376] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(4176), + [anon_sym_PIPE] = ACTIONS(3268), + [anon_sym_RPAREN] = ACTIONS(3270), + [anon_sym_PIPE_AMP] = ACTIONS(3270), + [anon_sym_AMP_AMP] = ACTIONS(3270), + [anon_sym_PIPE_PIPE] = ACTIONS(3270), + [anon_sym_BQUOTE] = ACTIONS(3270), [sym_comment] = ACTIONS(53), }, [1377] = { - [sym_concatenation] = STATE(1801), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1801), - [anon_sym_RBRACE] = ACTIONS(4178), - [anon_sym_EQ] = ACTIONS(4180), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4182), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(4184), - [anon_sym_COLON] = ACTIONS(4180), - [anon_sym_COLON_QMARK] = ACTIONS(4180), - [anon_sym_COLON_DASH] = ACTIONS(4180), - [anon_sym_PERCENT] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1378] = { - [sym_concatenation] = STATE(1804), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1804), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_EQ] = ACTIONS(4188), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(4192), - [anon_sym_COLON] = ACTIONS(4188), - [anon_sym_COLON_QMARK] = ACTIONS(4188), - [anon_sym_COLON_DASH] = ACTIONS(4188), - [anon_sym_PERCENT] = ACTIONS(4188), - [anon_sym_DASH] = ACTIONS(4188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1379] = { - [sym_concatenation] = STATE(1806), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1806), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_EQ] = ACTIONS(4194), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(4194), - [anon_sym_COLON_QMARK] = ACTIONS(4194), - [anon_sym_COLON_DASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1380] = { - [sym__concat] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_PIPE_AMP] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [sym__special_characters] = ACTIONS(1810), - [anon_sym_DQUOTE] = ACTIONS(1810), - [anon_sym_DOLLAR] = ACTIONS(1812), - [sym_raw_string] = ACTIONS(1810), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1810), - [anon_sym_LT_LPAREN] = ACTIONS(1810), - [anon_sym_GT_LPAREN] = ACTIONS(1810), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1812), - [sym_word] = ACTIONS(1812), - }, - [1381] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4200), - }, - [1382] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1383] = { - [sym__concat] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_PIPE_AMP] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [sym__special_characters] = ACTIONS(1818), - [anon_sym_DQUOTE] = ACTIONS(1818), - [anon_sym_DOLLAR] = ACTIONS(1820), - [sym_raw_string] = ACTIONS(1818), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1818), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1818), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1818), - [anon_sym_GT_LPAREN] = ACTIONS(1818), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1820), - [sym_word] = ACTIONS(1820), - }, - [1384] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4204), - }, - [1385] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1386] = { - [sym__concat] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_RPAREN] = ACTIONS(1952), - [anon_sym_PIPE_AMP] = ACTIONS(1952), - [anon_sym_AMP_AMP] = ACTIONS(1952), - [anon_sym_PIPE_PIPE] = ACTIONS(1952), - [sym__special_characters] = ACTIONS(1952), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(1952), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1952), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1952), - [anon_sym_BQUOTE] = ACTIONS(1952), - [anon_sym_LT_LPAREN] = ACTIONS(1952), - [anon_sym_GT_LPAREN] = ACTIONS(1952), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1954), - [sym_word] = ACTIONS(1954), - }, - [1387] = { - [sym__concat] = ACTIONS(2018), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_RPAREN] = ACTIONS(2018), - [anon_sym_PIPE_AMP] = ACTIONS(2018), - [anon_sym_AMP_AMP] = ACTIONS(2018), - [anon_sym_PIPE_PIPE] = ACTIONS(2018), - [sym__special_characters] = ACTIONS(2018), - [anon_sym_DQUOTE] = ACTIONS(2018), - [anon_sym_DOLLAR] = ACTIONS(2020), - [sym_raw_string] = ACTIONS(2018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2018), - [anon_sym_BQUOTE] = ACTIONS(2018), - [anon_sym_LT_LPAREN] = ACTIONS(2018), - [anon_sym_GT_LPAREN] = ACTIONS(2018), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2020), - [sym_word] = ACTIONS(2020), - }, - [1388] = { - [sym__simple_heredoc_body] = ACTIONS(2752), - [sym__heredoc_body_beginning] = ACTIONS(2752), - [sym_file_descriptor] = ACTIONS(2752), - [sym__concat] = ACTIONS(2752), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_RPAREN] = 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(2754), - [anon_sym_EQ_EQ] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2754), - [anon_sym_GT] = ACTIONS(2754), - [anon_sym_GT_GT] = ACTIONS(2752), - [anon_sym_AMP_GT] = ACTIONS(2754), - [anon_sym_AMP_GT_GT] = ACTIONS(2752), - [anon_sym_LT_AMP] = ACTIONS(2752), - [anon_sym_GT_AMP] = ACTIONS(2752), - [anon_sym_LT_LT] = ACTIONS(2754), - [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(2754), - [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(53), - [sym_word] = ACTIONS(2754), - }, - [1389] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(4206), - [sym_comment] = ACTIONS(53), - }, - [1390] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(4208), - [sym_comment] = ACTIONS(53), - }, - [1391] = { - [anon_sym_RBRACE] = ACTIONS(4208), - [sym_comment] = ACTIONS(53), - }, - [1392] = { - [sym_concatenation] = STATE(1813), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1813), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_EQ] = ACTIONS(4212), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4212), - [anon_sym_COLON_QMARK] = ACTIONS(4212), - [anon_sym_COLON_DASH] = ACTIONS(4212), - [anon_sym_PERCENT] = ACTIONS(4212), - [anon_sym_DASH] = ACTIONS(4212), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1393] = { - [sym__simple_heredoc_body] = ACTIONS(2830), - [sym__heredoc_body_beginning] = ACTIONS(2830), - [sym_file_descriptor] = ACTIONS(2830), - [sym__concat] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_RPAREN] = ACTIONS(2830), - [anon_sym_PIPE_AMP] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_EQ_TILDE] = ACTIONS(2832), - [anon_sym_EQ_EQ] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_GT_GT] = ACTIONS(2830), - [anon_sym_AMP_GT] = ACTIONS(2832), - [anon_sym_AMP_GT_GT] = ACTIONS(2830), - [anon_sym_LT_AMP] = ACTIONS(2830), - [anon_sym_GT_AMP] = ACTIONS(2830), - [anon_sym_LT_LT] = ACTIONS(2832), - [anon_sym_LT_LT_DASH] = ACTIONS(2830), - [anon_sym_LT_LT_LT] = ACTIONS(2830), - [sym__special_characters] = ACTIONS(2830), - [anon_sym_DQUOTE] = ACTIONS(2830), - [anon_sym_DOLLAR] = ACTIONS(2832), - [sym_raw_string] = ACTIONS(2830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2830), - [anon_sym_BQUOTE] = ACTIONS(2830), - [anon_sym_LT_LPAREN] = ACTIONS(2830), - [anon_sym_GT_LPAREN] = ACTIONS(2830), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2832), - }, - [1394] = { - [sym_concatenation] = STATE(1816), - [sym_string] = STATE(1815), - [sym_simple_expansion] = STATE(1815), - [sym_string_expansion] = STATE(1815), - [sym_expansion] = STATE(1815), - [sym_command_substitution] = STATE(1815), - [sym_process_substitution] = STATE(1815), - [anon_sym_RBRACE] = ACTIONS(4208), - [sym__special_characters] = ACTIONS(4216), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(4218), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4218), - }, - [1395] = { - [sym__simple_heredoc_body] = ACTIONS(2873), - [sym__heredoc_body_beginning] = ACTIONS(2873), - [sym_file_descriptor] = ACTIONS(2873), - [sym__concat] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(2875), - [anon_sym_RPAREN] = ACTIONS(2873), - [anon_sym_PIPE_AMP] = ACTIONS(2873), - [anon_sym_AMP_AMP] = ACTIONS(2873), - [anon_sym_PIPE_PIPE] = ACTIONS(2873), - [anon_sym_EQ_TILDE] = ACTIONS(2875), - [anon_sym_EQ_EQ] = ACTIONS(2875), - [anon_sym_LT] = ACTIONS(2875), - [anon_sym_GT] = ACTIONS(2875), - [anon_sym_GT_GT] = ACTIONS(2873), - [anon_sym_AMP_GT] = ACTIONS(2875), - [anon_sym_AMP_GT_GT] = ACTIONS(2873), - [anon_sym_LT_AMP] = ACTIONS(2873), - [anon_sym_GT_AMP] = ACTIONS(2873), - [anon_sym_LT_LT] = ACTIONS(2875), - [anon_sym_LT_LT_DASH] = ACTIONS(2873), - [anon_sym_LT_LT_LT] = ACTIONS(2873), - [sym__special_characters] = ACTIONS(2873), - [anon_sym_DQUOTE] = ACTIONS(2873), - [anon_sym_DOLLAR] = ACTIONS(2875), - [sym_raw_string] = ACTIONS(2873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2873), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2873), - [anon_sym_BQUOTE] = ACTIONS(2873), - [anon_sym_LT_LPAREN] = ACTIONS(2873), - [anon_sym_GT_LPAREN] = ACTIONS(2873), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2875), - }, - [1396] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4220), - }, - [1397] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4222), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1398] = { - [sym__simple_heredoc_body] = ACTIONS(2881), - [sym__heredoc_body_beginning] = ACTIONS(2881), - [sym_file_descriptor] = ACTIONS(2881), - [sym__concat] = ACTIONS(2881), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_RPAREN] = ACTIONS(2881), - [anon_sym_PIPE_AMP] = ACTIONS(2881), - [anon_sym_AMP_AMP] = ACTIONS(2881), - [anon_sym_PIPE_PIPE] = ACTIONS(2881), - [anon_sym_EQ_TILDE] = ACTIONS(2883), - [anon_sym_EQ_EQ] = ACTIONS(2883), - [anon_sym_LT] = ACTIONS(2883), - [anon_sym_GT] = ACTIONS(2883), - [anon_sym_GT_GT] = ACTIONS(2881), - [anon_sym_AMP_GT] = ACTIONS(2883), - [anon_sym_AMP_GT_GT] = ACTIONS(2881), - [anon_sym_LT_AMP] = ACTIONS(2881), - [anon_sym_GT_AMP] = ACTIONS(2881), - [anon_sym_LT_LT] = ACTIONS(2883), - [anon_sym_LT_LT_DASH] = ACTIONS(2881), - [anon_sym_LT_LT_LT] = ACTIONS(2881), - [sym__special_characters] = ACTIONS(2881), - [anon_sym_DQUOTE] = ACTIONS(2881), - [anon_sym_DOLLAR] = ACTIONS(2883), - [sym_raw_string] = ACTIONS(2881), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2881), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2881), - [anon_sym_BQUOTE] = ACTIONS(2881), - [anon_sym_LT_LPAREN] = ACTIONS(2881), - [anon_sym_GT_LPAREN] = ACTIONS(2881), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2883), - }, - [1399] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4224), - }, - [1400] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1401] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4228), - }, - [1402] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1403] = { - [sym_concatenation] = STATE(1823), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1823), - [anon_sym_RBRACE] = ACTIONS(4230), - [anon_sym_EQ] = ACTIONS(4232), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4232), - [anon_sym_COLON_QMARK] = ACTIONS(4232), - [anon_sym_COLON_DASH] = ACTIONS(4232), - [anon_sym_PERCENT] = ACTIONS(4232), - [anon_sym_DASH] = ACTIONS(4232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1404] = { - [sym__simple_heredoc_body] = ACTIONS(2897), - [sym__heredoc_body_beginning] = ACTIONS(2897), - [sym_file_descriptor] = ACTIONS(2897), - [sym__concat] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_RPAREN] = ACTIONS(2897), - [anon_sym_PIPE_AMP] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2897), - [anon_sym_PIPE_PIPE] = ACTIONS(2897), - [anon_sym_EQ_TILDE] = ACTIONS(2899), - [anon_sym_EQ_EQ] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [anon_sym_GT_GT] = ACTIONS(2897), - [anon_sym_AMP_GT] = ACTIONS(2899), - [anon_sym_AMP_GT_GT] = ACTIONS(2897), - [anon_sym_LT_AMP] = ACTIONS(2897), - [anon_sym_GT_AMP] = ACTIONS(2897), - [anon_sym_LT_LT] = ACTIONS(2899), - [anon_sym_LT_LT_DASH] = ACTIONS(2897), - [anon_sym_LT_LT_LT] = ACTIONS(2897), - [sym__special_characters] = ACTIONS(2897), - [anon_sym_DQUOTE] = ACTIONS(2897), - [anon_sym_DOLLAR] = ACTIONS(2899), - [sym_raw_string] = ACTIONS(2897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2897), - [anon_sym_BQUOTE] = ACTIONS(2897), - [anon_sym_LT_LPAREN] = ACTIONS(2897), - [anon_sym_GT_LPAREN] = ACTIONS(2897), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2899), - }, - [1405] = { - [sym_concatenation] = STATE(1825), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1825), - [anon_sym_RBRACE] = ACTIONS(4236), - [anon_sym_EQ] = ACTIONS(4238), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4238), - [anon_sym_COLON_QMARK] = ACTIONS(4238), - [anon_sym_COLON_DASH] = ACTIONS(4238), - [anon_sym_PERCENT] = ACTIONS(4238), - [anon_sym_DASH] = ACTIONS(4238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1406] = { - [sym_file_redirect] = STATE(1826), - [sym_file_descriptor] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(2376), - [anon_sym_RPAREN] = ACTIONS(2378), - [anon_sym_PIPE_AMP] = ACTIONS(2378), - [anon_sym_AMP_AMP] = ACTIONS(2378), - [anon_sym_PIPE_PIPE] = ACTIONS(2378), - [anon_sym_LT] = ACTIONS(2931), - [anon_sym_GT] = ACTIONS(2931), - [anon_sym_GT_GT] = ACTIONS(2933), - [anon_sym_AMP_GT] = ACTIONS(2931), - [anon_sym_AMP_GT_GT] = ACTIONS(2933), - [anon_sym_LT_AMP] = ACTIONS(2933), - [anon_sym_GT_AMP] = ACTIONS(2933), - [sym_comment] = ACTIONS(53), - }, - [1407] = { - [anon_sym_PIPE] = ACTIONS(3310), - [anon_sym_RPAREN] = ACTIONS(3312), - [anon_sym_PIPE_AMP] = ACTIONS(3312), - [anon_sym_AMP_AMP] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_BQUOTE] = ACTIONS(3312), - [sym_comment] = ACTIONS(53), - }, - [1408] = { - [aux_sym_concatenation_repeat1] = STATE(1411), + [aux_sym_concatenation_repeat1] = STATE(1380), [sym__simple_heredoc_body] = ACTIONS(1089), [sym__heredoc_body_beginning] = ACTIONS(1089), [sym_file_descriptor] = ACTIONS(1089), @@ -43917,8 +39881,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(1089), [sym_comment] = ACTIONS(53), }, - [1409] = { - [aux_sym_concatenation_repeat1] = STATE(1411), + [1378] = { + [aux_sym_concatenation_repeat1] = STATE(1380), [sym__simple_heredoc_body] = ACTIONS(1093), [sym__heredoc_body_beginning] = ACTIONS(1093), [sym_file_descriptor] = ACTIONS(1093), @@ -43940,7 +39904,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(1093), [sym_comment] = ACTIONS(53), }, - [1410] = { + [1379] = { [sym__simple_heredoc_body] = ACTIONS(1093), [sym__heredoc_body_beginning] = ACTIONS(1093), [sym_file_descriptor] = ACTIONS(1093), @@ -43962,8 +39926,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1093), [sym_comment] = ACTIONS(53), }, - [1411] = { - [aux_sym_concatenation_repeat1] = STATE(1827), + [1380] = { + [aux_sym_concatenation_repeat1] = STATE(1777), [sym__simple_heredoc_body] = ACTIONS(693), [sym__heredoc_body_beginning] = ACTIONS(693), [sym_file_descriptor] = ACTIONS(693), @@ -43985,29 +39949,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(693), [sym_comment] = ACTIONS(53), }, - [1412] = { - [anon_sym_PIPE] = ACTIONS(3325), - [anon_sym_RPAREN] = ACTIONS(3327), - [anon_sym_PIPE_AMP] = ACTIONS(3327), - [anon_sym_AMP_AMP] = ACTIONS(3327), - [anon_sym_PIPE_PIPE] = ACTIONS(3327), - [anon_sym_BQUOTE] = ACTIONS(3327), + [1381] = { + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_RPAREN] = ACTIONS(3285), + [anon_sym_PIPE_AMP] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BQUOTE] = ACTIONS(3285), [sym_comment] = ACTIONS(53), }, - [1413] = { - [sym_file_redirect] = STATE(948), - [sym_heredoc_redirect] = STATE(948), - [sym_heredoc_body] = STATE(1828), - [sym_herestring_redirect] = STATE(948), - [aux_sym_while_statement_repeat1] = STATE(948), + [1382] = { + [sym_file_redirect] = STATE(938), + [sym_heredoc_redirect] = STATE(938), + [sym_heredoc_body] = STATE(1778), + [sym_herestring_redirect] = STATE(938), + [aux_sym_while_statement_repeat1] = STATE(938), [sym__simple_heredoc_body] = ACTIONS(877), [sym__heredoc_body_beginning] = ACTIONS(879), [sym_file_descriptor] = ACTIONS(881), - [anon_sym_PIPE] = ACTIONS(3325), - [anon_sym_RPAREN] = ACTIONS(3327), - [anon_sym_PIPE_AMP] = ACTIONS(3327), - [anon_sym_AMP_AMP] = ACTIONS(3327), - [anon_sym_PIPE_PIPE] = ACTIONS(3327), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_RPAREN] = ACTIONS(3285), + [anon_sym_PIPE_AMP] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), [anon_sym_LT] = ACTIONS(885), [anon_sym_GT] = ACTIONS(885), [anon_sym_GT_GT] = ACTIONS(887), @@ -44020,8 +39984,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(893), [sym_comment] = ACTIONS(53), }, - [1414] = { - [aux_sym_concatenation_repeat1] = STATE(1829), + [1383] = { + [aux_sym_concatenation_repeat1] = STATE(1779), [sym_file_descriptor] = ACTIONS(693), [sym__concat] = ACTIONS(663), [sym_variable_name] = ACTIONS(693), @@ -44048,19 +40012,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(693), }, - [1415] = { - [sym_file_redirect] = STATE(975), - [sym_heredoc_redirect] = STATE(975), - [sym_heredoc_body] = STATE(1738), - [sym_herestring_redirect] = STATE(975), - [aux_sym_while_statement_repeat1] = STATE(975), + [1384] = { + [sym_file_redirect] = STATE(965), + [sym_heredoc_redirect] = STATE(965), + [sym_heredoc_body] = STATE(1688), + [sym_herestring_redirect] = STATE(965), + [aux_sym_while_statement_repeat1] = STATE(965), [sym__simple_heredoc_body] = ACTIONS(877), [sym__heredoc_body_beginning] = ACTIONS(879), [sym_file_descriptor] = ACTIONS(929), - [anon_sym_PIPE] = ACTIONS(2273), - [anon_sym_PIPE_AMP] = ACTIONS(2275), - [anon_sym_AMP_AMP] = ACTIONS(2275), - [anon_sym_PIPE_PIPE] = ACTIONS(2275), + [anon_sym_PIPE] = ACTIONS(2235), + [anon_sym_PIPE_AMP] = ACTIONS(2237), + [anon_sym_AMP_AMP] = ACTIONS(2237), + [anon_sym_PIPE_PIPE] = ACTIONS(2237), [anon_sym_LT] = ACTIONS(933), [anon_sym_GT] = ACTIONS(933), [anon_sym_GT_GT] = ACTIONS(935), @@ -44071,120 +40035,120 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(889), [anon_sym_LT_LT_DASH] = ACTIONS(891), [anon_sym_LT_LT_LT] = ACTIONS(937), - [anon_sym_BQUOTE] = ACTIONS(2275), + [anon_sym_BQUOTE] = ACTIONS(2237), [sym_comment] = ACTIONS(53), }, - [1416] = { - [sym_compound_statement] = STATE(1830), - [anon_sym_LBRACE] = ACTIONS(1852), + [1385] = { + [sym_compound_statement] = STATE(1780), + [anon_sym_LBRACE] = ACTIONS(1840), [sym_comment] = ACTIONS(53), }, - [1417] = { - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_AMP_GT] = ACTIONS(4242), - [anon_sym_AMP_GT_GT] = ACTIONS(4244), - [anon_sym_LT_AMP] = ACTIONS(4244), - [anon_sym_GT_AMP] = ACTIONS(4244), + [1386] = { + [anon_sym_LT] = ACTIONS(4154), + [anon_sym_GT] = ACTIONS(4154), + [anon_sym_GT_GT] = ACTIONS(4156), + [anon_sym_AMP_GT] = ACTIONS(4154), + [anon_sym_AMP_GT_GT] = ACTIONS(4156), + [anon_sym_LT_AMP] = ACTIONS(4156), + [anon_sym_GT_AMP] = ACTIONS(4156), [sym_comment] = ACTIONS(53), }, - [1418] = { - [sym_concatenation] = STATE(1755), - [sym_string] = STATE(1833), - [sym_simple_expansion] = STATE(1833), - [sym_string_expansion] = STATE(1833), - [sym_expansion] = STATE(1833), - [sym_command_substitution] = STATE(1833), - [sym_process_substitution] = STATE(1833), - [sym__special_characters] = ACTIONS(4246), + [1387] = { + [sym_concatenation] = STATE(1705), + [sym_string] = STATE(1783), + [sym_simple_expansion] = STATE(1783), + [sym_string_expansion] = STATE(1783), + [sym_expansion] = STATE(1783), + [sym_command_substitution] = STATE(1783), + [sym_process_substitution] = STATE(1783), + [sym__special_characters] = ACTIONS(4158), [anon_sym_DQUOTE] = ACTIONS(827), [anon_sym_DOLLAR] = ACTIONS(829), - [sym_raw_string] = ACTIONS(4248), + [sym_raw_string] = ACTIONS(4160), [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), [anon_sym_BQUOTE] = ACTIONS(837), [anon_sym_LT_LPAREN] = ACTIONS(839), [anon_sym_GT_LPAREN] = ACTIONS(839), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4248), + [sym_word] = ACTIONS(4160), }, - [1419] = { - [anon_sym_LT] = ACTIONS(4250), - [anon_sym_GT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_AMP_GT] = ACTIONS(4250), - [anon_sym_AMP_GT_GT] = ACTIONS(4252), - [anon_sym_LT_AMP] = ACTIONS(4252), - [anon_sym_GT_AMP] = ACTIONS(4252), + [1388] = { + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_GT] = ACTIONS(4162), + [anon_sym_GT_GT] = ACTIONS(4164), + [anon_sym_AMP_GT] = ACTIONS(4162), + [anon_sym_AMP_GT_GT] = ACTIONS(4164), + [anon_sym_LT_AMP] = ACTIONS(4164), + [anon_sym_GT_AMP] = ACTIONS(4164), [sym_comment] = ACTIONS(53), }, - [1420] = { - [sym_concatenation] = STATE(1766), - [sym_string] = STATE(1836), - [sym_simple_expansion] = STATE(1836), - [sym_string_expansion] = STATE(1836), - [sym_expansion] = STATE(1836), - [sym_command_substitution] = STATE(1836), - [sym_process_substitution] = STATE(1836), - [sym__special_characters] = ACTIONS(4254), - [anon_sym_DQUOTE] = ACTIONS(4098), - [anon_sym_DOLLAR] = ACTIONS(4100), - [sym_raw_string] = ACTIONS(4256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4106), - [anon_sym_BQUOTE] = ACTIONS(4108), - [anon_sym_LT_LPAREN] = ACTIONS(4110), - [anon_sym_GT_LPAREN] = ACTIONS(4110), + [1389] = { + [sym_concatenation] = STATE(1716), + [sym_string] = STATE(1786), + [sym_simple_expansion] = STATE(1786), + [sym_string_expansion] = STATE(1786), + [sym_expansion] = STATE(1786), + [sym_command_substitution] = STATE(1786), + [sym_process_substitution] = STATE(1786), + [sym__special_characters] = ACTIONS(4166), + [anon_sym_DQUOTE] = ACTIONS(4010), + [anon_sym_DOLLAR] = ACTIONS(4012), + [sym_raw_string] = ACTIONS(4168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4016), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4018), + [anon_sym_BQUOTE] = ACTIONS(4020), + [anon_sym_LT_LPAREN] = ACTIONS(4022), + [anon_sym_GT_LPAREN] = ACTIONS(4022), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4256), + [sym_word] = ACTIONS(4168), }, - [1421] = { - [sym_concatenation] = STATE(1770), - [sym_string] = STATE(1838), - [sym_simple_expansion] = STATE(1838), - [sym_string_expansion] = STATE(1838), - [sym_expansion] = STATE(1838), - [sym_command_substitution] = STATE(1838), - [sym_process_substitution] = STATE(1838), - [sym__special_characters] = ACTIONS(4258), - [anon_sym_DQUOTE] = ACTIONS(4098), - [anon_sym_DOLLAR] = ACTIONS(4100), - [sym_raw_string] = ACTIONS(4260), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4106), - [anon_sym_BQUOTE] = ACTIONS(4108), - [anon_sym_LT_LPAREN] = ACTIONS(4110), - [anon_sym_GT_LPAREN] = ACTIONS(4110), + [1390] = { + [sym_concatenation] = STATE(1720), + [sym_string] = STATE(1788), + [sym_simple_expansion] = STATE(1788), + [sym_string_expansion] = STATE(1788), + [sym_expansion] = STATE(1788), + [sym_command_substitution] = STATE(1788), + [sym_process_substitution] = STATE(1788), + [sym__special_characters] = ACTIONS(4170), + [anon_sym_DQUOTE] = ACTIONS(4010), + [anon_sym_DOLLAR] = ACTIONS(4012), + [sym_raw_string] = ACTIONS(4172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4016), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4018), + [anon_sym_BQUOTE] = ACTIONS(4020), + [anon_sym_LT_LPAREN] = ACTIONS(4022), + [anon_sym_GT_LPAREN] = ACTIONS(4022), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4260), + [sym_word] = ACTIONS(4172), }, - [1422] = { - [sym_file_redirect] = STATE(1839), - [sym_heredoc_redirect] = STATE(1839), - [sym_herestring_redirect] = STATE(1839), - [aux_sym_while_statement_repeat1] = STATE(1839), - [sym_file_descriptor] = ACTIONS(3215), - [anon_sym_PIPE] = ACTIONS(2520), - [anon_sym_PIPE_AMP] = ACTIONS(2522), - [anon_sym_AMP_AMP] = ACTIONS(2522), - [anon_sym_PIPE_PIPE] = ACTIONS(2522), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3217), - [anon_sym_GT_GT] = ACTIONS(3219), - [anon_sym_AMP_GT] = ACTIONS(3217), - [anon_sym_AMP_GT_GT] = ACTIONS(3219), - [anon_sym_LT_AMP] = ACTIONS(3219), - [anon_sym_GT_AMP] = ACTIONS(3219), - [anon_sym_LT_LT] = ACTIONS(2949), - [anon_sym_LT_LT_DASH] = ACTIONS(2951), - [anon_sym_LT_LT_LT] = ACTIONS(3221), - [anon_sym_BQUOTE] = ACTIONS(2522), + [1391] = { + [sym_file_redirect] = STATE(1789), + [sym_heredoc_redirect] = STATE(1789), + [sym_herestring_redirect] = STATE(1789), + [aux_sym_while_statement_repeat1] = STATE(1789), + [sym_file_descriptor] = ACTIONS(3173), + [anon_sym_PIPE] = ACTIONS(2478), + [anon_sym_PIPE_AMP] = ACTIONS(2480), + [anon_sym_AMP_AMP] = ACTIONS(2480), + [anon_sym_PIPE_PIPE] = ACTIONS(2480), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_GT_GT] = ACTIONS(3177), + [anon_sym_AMP_GT] = ACTIONS(3175), + [anon_sym_AMP_GT_GT] = ACTIONS(3177), + [anon_sym_LT_AMP] = ACTIONS(3177), + [anon_sym_GT_AMP] = ACTIONS(3177), + [anon_sym_LT_LT] = ACTIONS(2907), + [anon_sym_LT_LT_DASH] = ACTIONS(2909), + [anon_sym_LT_LT_LT] = ACTIONS(3179), + [anon_sym_BQUOTE] = ACTIONS(2480), [sym_comment] = ACTIONS(53), }, - [1423] = { - [aux_sym_concatenation_repeat1] = STATE(959), - [sym__concat] = ACTIONS(1864), + [1392] = { + [aux_sym_concatenation_repeat1] = STATE(949), + [sym__concat] = ACTIONS(1852), [sym_variable_name] = ACTIONS(1129), [anon_sym_PIPE] = ACTIONS(1133), [anon_sym_PIPE_AMP] = ACTIONS(1129), @@ -44203,9 +40167,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1133), [sym_word] = ACTIONS(1133), }, - [1424] = { - [aux_sym_concatenation_repeat1] = STATE(959), - [sym__concat] = ACTIONS(1864), + [1393] = { + [aux_sym_concatenation_repeat1] = STATE(949), + [sym__concat] = ACTIONS(1852), [sym_variable_name] = ACTIONS(1107), [anon_sym_PIPE] = ACTIONS(1109), [anon_sym_PIPE_AMP] = ACTIONS(1107), @@ -44224,66 +40188,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1109), [sym_word] = ACTIONS(1109), }, - [1425] = { - [aux_sym_concatenation_repeat1] = STATE(1425), - [sym__concat] = ACTIONS(4120), - [sym_variable_name] = ACTIONS(1654), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1654), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_PIPE_PIPE] = ACTIONS(1654), - [sym__special_characters] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1654), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [anon_sym_LT_LPAREN] = ACTIONS(1654), - [anon_sym_GT_LPAREN] = ACTIONS(1654), + [1394] = { + [aux_sym_concatenation_repeat1] = STATE(1394), + [sym__concat] = ACTIONS(4032), + [sym_variable_name] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1642), + [anon_sym_AMP_AMP] = ACTIONS(1642), + [anon_sym_PIPE_PIPE] = ACTIONS(1642), + [sym__special_characters] = ACTIONS(1642), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1642), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1642), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), + [anon_sym_LT_LPAREN] = ACTIONS(1642), + [anon_sym_GT_LPAREN] = ACTIONS(1642), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1656), - [sym_word] = ACTIONS(1656), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1644), + [sym_word] = ACTIONS(1644), }, - [1426] = { - [aux_sym_concatenation_repeat1] = STATE(1426), - [sym__concat] = ACTIONS(4163), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1654), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_PIPE_PIPE] = ACTIONS(1654), - [sym__special_characters] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1654), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [anon_sym_LT_LPAREN] = ACTIONS(1654), - [anon_sym_GT_LPAREN] = ACTIONS(1654), + [1395] = { + [aux_sym_concatenation_repeat1] = STATE(1395), + [sym__concat] = ACTIONS(4075), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1642), + [anon_sym_AMP_AMP] = ACTIONS(1642), + [anon_sym_PIPE_PIPE] = ACTIONS(1642), + [sym__special_characters] = ACTIONS(1642), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1642), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1642), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), + [anon_sym_LT_LPAREN] = ACTIONS(1642), + [anon_sym_GT_LPAREN] = ACTIONS(1642), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1656), - [sym_word] = ACTIONS(1656), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1644), + [sym_word] = ACTIONS(1644), }, - [1427] = { - [sym_file_redirect] = STATE(1826), - [sym_file_descriptor] = ACTIONS(3209), - [anon_sym_PIPE] = ACTIONS(2376), - [anon_sym_PIPE_AMP] = ACTIONS(2378), - [anon_sym_AMP_AMP] = ACTIONS(2378), - [anon_sym_PIPE_PIPE] = ACTIONS(2378), - [anon_sym_LT] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(3211), - [anon_sym_GT_GT] = ACTIONS(3213), - [anon_sym_AMP_GT] = ACTIONS(3211), - [anon_sym_AMP_GT_GT] = ACTIONS(3213), - [anon_sym_LT_AMP] = ACTIONS(3213), - [anon_sym_GT_AMP] = ACTIONS(3213), - [anon_sym_BQUOTE] = ACTIONS(2378), + [1396] = { + [sym_file_redirect] = STATE(1776), + [sym_file_descriptor] = ACTIONS(3167), + [anon_sym_PIPE] = ACTIONS(2334), + [anon_sym_PIPE_AMP] = ACTIONS(2336), + [anon_sym_AMP_AMP] = ACTIONS(2336), + [anon_sym_PIPE_PIPE] = ACTIONS(2336), + [anon_sym_LT] = ACTIONS(3169), + [anon_sym_GT] = ACTIONS(3169), + [anon_sym_GT_GT] = ACTIONS(3171), + [anon_sym_AMP_GT] = ACTIONS(3169), + [anon_sym_AMP_GT_GT] = ACTIONS(3171), + [anon_sym_LT_AMP] = ACTIONS(3171), + [anon_sym_GT_AMP] = ACTIONS(3171), + [anon_sym_BQUOTE] = ACTIONS(2336), [sym_comment] = ACTIONS(53), }, - [1428] = { - [aux_sym_concatenation_repeat1] = STATE(1430), + [1397] = { + [aux_sym_concatenation_repeat1] = STATE(1399), [sym__simple_heredoc_body] = ACTIONS(1089), [sym__heredoc_body_beginning] = ACTIONS(1089), [sym_file_descriptor] = ACTIONS(1089), @@ -44305,8 +40269,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1089), [sym_comment] = ACTIONS(53), }, - [1429] = { - [aux_sym_concatenation_repeat1] = STATE(1430), + [1398] = { + [aux_sym_concatenation_repeat1] = STATE(1399), [sym__simple_heredoc_body] = ACTIONS(1093), [sym__heredoc_body_beginning] = ACTIONS(1093), [sym_file_descriptor] = ACTIONS(1093), @@ -44328,8 +40292,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1093), [sym_comment] = ACTIONS(53), }, - [1430] = { - [aux_sym_concatenation_repeat1] = STATE(1840), + [1399] = { + [aux_sym_concatenation_repeat1] = STATE(1790), [sym__simple_heredoc_body] = ACTIONS(693), [sym__heredoc_body_beginning] = ACTIONS(693), [sym_file_descriptor] = ACTIONS(693), @@ -44351,19 +40315,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(693), [sym_comment] = ACTIONS(53), }, - [1431] = { - [sym_file_redirect] = STATE(975), - [sym_heredoc_redirect] = STATE(975), - [sym_heredoc_body] = STATE(1828), - [sym_herestring_redirect] = STATE(975), - [aux_sym_while_statement_repeat1] = STATE(975), + [1400] = { + [sym_file_redirect] = STATE(965), + [sym_heredoc_redirect] = STATE(965), + [sym_heredoc_body] = STATE(1778), + [sym_herestring_redirect] = STATE(965), + [aux_sym_while_statement_repeat1] = STATE(965), [sym__simple_heredoc_body] = ACTIONS(877), [sym__heredoc_body_beginning] = ACTIONS(879), [sym_file_descriptor] = ACTIONS(929), - [anon_sym_PIPE] = ACTIONS(3325), - [anon_sym_PIPE_AMP] = ACTIONS(3327), - [anon_sym_AMP_AMP] = ACTIONS(3327), - [anon_sym_PIPE_PIPE] = ACTIONS(3327), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_PIPE_AMP] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), [anon_sym_LT] = ACTIONS(933), [anon_sym_GT] = ACTIONS(933), [anon_sym_GT_GT] = ACTIONS(935), @@ -44374,76 +40338,606 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(889), [anon_sym_LT_LT_DASH] = ACTIONS(891), [anon_sym_LT_LT_LT] = ACTIONS(937), - [anon_sym_BQUOTE] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(3285), [sym_comment] = ACTIONS(53), }, - [1432] = { - [anon_sym_esac] = ACTIONS(3609), - [anon_sym_PIPE] = ACTIONS(3609), - [anon_sym_RPAREN] = ACTIONS(3609), - [anon_sym_SEMI_SEMI] = ACTIONS(3609), - [anon_sym_PIPE_AMP] = ACTIONS(3609), - [anon_sym_AMP_AMP] = ACTIONS(3609), - [anon_sym_PIPE_PIPE] = ACTIONS(3609), + [1401] = { + [anon_sym_esac] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_RPAREN] = ACTIONS(3521), + [anon_sym_SEMI_SEMI] = ACTIONS(3521), + [anon_sym_PIPE_AMP] = ACTIONS(3521), + [anon_sym_AMP_AMP] = ACTIONS(3521), + [anon_sym_PIPE_PIPE] = ACTIONS(3521), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3609), - [anon_sym_LF] = ACTIONS(3611), - [anon_sym_AMP] = ACTIONS(3609), + [anon_sym_SEMI] = ACTIONS(3521), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3521), }, - [1433] = { - [sym_concatenation] = STATE(1844), - [sym_string] = STATE(1843), - [sym_simple_expansion] = STATE(1843), - [sym_string_expansion] = STATE(1843), - [sym_expansion] = STATE(1843), - [sym_command_substitution] = STATE(1843), - [sym_process_substitution] = STATE(1843), - [anon_sym_RBRACE] = ACTIONS(4262), - [sym__special_characters] = ACTIONS(4264), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(4266), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), + [1402] = { + [sym_concatenation] = STATE(1794), + [sym_string] = STATE(1793), + [sym_simple_expansion] = STATE(1793), + [sym_string_expansion] = STATE(1793), + [sym_expansion] = STATE(1793), + [sym_command_substitution] = STATE(1793), + [sym_process_substitution] = STATE(1793), + [anon_sym_RBRACE] = ACTIONS(4174), + [sym__special_characters] = ACTIONS(4176), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(4178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4266), + [sym_word] = ACTIONS(4178), }, - [1434] = { - [sym__heredoc_body_middle] = ACTIONS(1744), - [sym__heredoc_body_end] = ACTIONS(1744), - [anon_sym_DOLLAR] = ACTIONS(1746), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1744), + [1403] = { + [sym__heredoc_body_middle] = ACTIONS(1732), + [sym__heredoc_body_end] = ACTIONS(1732), + [anon_sym_DOLLAR] = ACTIONS(1734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1732), [sym_comment] = ACTIONS(53), }, - [1435] = { + [1404] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4268), + [sym_regex_without_right_brace] = ACTIONS(4180), }, - [1436] = { - [sym_concatenation] = STATE(839), + [1405] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1406] = { + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(4184), + [sym_comment] = ACTIONS(53), + }, + [1407] = { + [sym_concatenation] = STATE(1800), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1800), + [anon_sym_RBRACE] = ACTIONS(4186), + [anon_sym_EQ] = ACTIONS(4188), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(4192), + [anon_sym_COLON] = ACTIONS(4188), + [anon_sym_COLON_QMARK] = ACTIONS(4188), + [anon_sym_COLON_DASH] = ACTIONS(4188), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_DASH] = ACTIONS(4188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1408] = { + [sym_concatenation] = STATE(1803), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1803), + [anon_sym_RBRACE] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(4196), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4198), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(4200), + [anon_sym_COLON] = ACTIONS(4196), + [anon_sym_COLON_QMARK] = ACTIONS(4196), + [anon_sym_COLON_DASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1409] = { + [sym_concatenation] = STATE(1805), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1805), + [anon_sym_RBRACE] = ACTIONS(4174), + [anon_sym_EQ] = ACTIONS(4202), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(4206), + [anon_sym_COLON] = ACTIONS(4202), + [anon_sym_COLON_QMARK] = ACTIONS(4202), + [anon_sym_COLON_DASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1410] = { + [sym__heredoc_body_middle] = ACTIONS(1798), + [sym__heredoc_body_end] = ACTIONS(1798), + [anon_sym_DOLLAR] = ACTIONS(1800), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1798), + [sym_comment] = ACTIONS(53), + }, + [1411] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4208), + }, + [1412] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4210), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1413] = { + [sym__heredoc_body_middle] = ACTIONS(1806), + [sym__heredoc_body_end] = ACTIONS(1806), + [anon_sym_DOLLAR] = ACTIONS(1808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1806), + [sym_comment] = ACTIONS(53), + }, + [1414] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4212), + }, + [1415] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4174), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1416] = { + [aux_sym_concatenation_repeat1] = STATE(1416), + [sym__simple_heredoc_body] = ACTIONS(1642), + [sym__heredoc_body_beginning] = ACTIONS(1642), + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(1646), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1644), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1644), + [anon_sym_LT_AMP] = ACTIONS(1644), + [anon_sym_GT_AMP] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1644), + [anon_sym_LT_LT_DASH] = ACTIONS(1644), + [anon_sym_LT_LT_LT] = ACTIONS(1644), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), + }, + [1417] = { + [anon_sym_esac] = ACTIONS(4214), + [anon_sym_PIPE] = ACTIONS(4214), + [anon_sym_RPAREN] = ACTIONS(4214), + [anon_sym_SEMI_SEMI] = ACTIONS(4214), + [anon_sym_PIPE_AMP] = ACTIONS(4214), + [anon_sym_AMP_AMP] = ACTIONS(4214), + [anon_sym_PIPE_PIPE] = ACTIONS(4214), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4214), + [anon_sym_LF] = ACTIONS(4216), + [anon_sym_AMP] = ACTIONS(4214), + }, + [1418] = { + [anon_sym_EQ] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [sym_comment] = ACTIONS(53), + }, + [1419] = { + [anon_sym_EQ] = ACTIONS(4220), + [anon_sym_PLUS_EQ] = ACTIONS(4220), + [sym_comment] = ACTIONS(53), + }, + [1420] = { + [sym__concat] = ACTIONS(1642), + [anon_sym_RPAREN] = ACTIONS(1642), + [sym__special_characters] = ACTIONS(1642), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1642), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1642), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), + [anon_sym_LT_LPAREN] = ACTIONS(1642), + [anon_sym_GT_LPAREN] = ACTIONS(1642), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1642), + }, + [1421] = { + [aux_sym_concatenation_repeat1] = STATE(1421), + [sym__concat] = ACTIONS(4222), + [anon_sym_RPAREN] = ACTIONS(1642), + [sym__special_characters] = ACTIONS(1642), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1642), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1642), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), + [anon_sym_LT_LPAREN] = ACTIONS(1642), + [anon_sym_GT_LPAREN] = ACTIONS(1642), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1642), + }, + [1422] = { + [sym__concat] = ACTIONS(1691), + [anon_sym_RPAREN] = ACTIONS(1691), + [sym__special_characters] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(1693), + [sym_raw_string] = ACTIONS(1691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1691), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1691), + [anon_sym_BQUOTE] = ACTIONS(1691), + [anon_sym_LT_LPAREN] = ACTIONS(1691), + [anon_sym_GT_LPAREN] = ACTIONS(1691), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1691), + }, + [1423] = { + [sym_concatenation] = STATE(1812), + [sym_string] = STATE(1811), + [sym_simple_expansion] = STATE(1811), + [sym_string_expansion] = STATE(1811), + [sym_expansion] = STATE(1811), + [sym_command_substitution] = STATE(1811), + [sym_process_substitution] = STATE(1811), + [anon_sym_RBRACE] = ACTIONS(4225), + [sym__special_characters] = ACTIONS(4227), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(4229), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4229), + }, + [1424] = { + [sym__concat] = ACTIONS(1732), + [anon_sym_RPAREN] = ACTIONS(1732), + [sym__special_characters] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1732), + [anon_sym_DOLLAR] = ACTIONS(1734), + [sym_raw_string] = ACTIONS(1732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1732), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1732), + [anon_sym_BQUOTE] = ACTIONS(1732), + [anon_sym_LT_LPAREN] = ACTIONS(1732), + [anon_sym_GT_LPAREN] = ACTIONS(1732), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1732), + }, + [1425] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4231), + }, + [1426] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4233), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1427] = { + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(4235), + [sym_comment] = ACTIONS(53), + }, + [1428] = { + [sym_concatenation] = STATE(1818), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1818), + [anon_sym_RBRACE] = ACTIONS(4237), + [anon_sym_EQ] = ACTIONS(4239), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4241), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_COLON_QMARK] = ACTIONS(4239), + [anon_sym_COLON_DASH] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4239), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1429] = { + [sym_concatenation] = STATE(1821), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1821), + [anon_sym_RBRACE] = ACTIONS(4245), + [anon_sym_EQ] = ACTIONS(4247), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4249), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(4251), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_COLON_QMARK] = ACTIONS(4247), + [anon_sym_COLON_DASH] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1430] = { + [sym_concatenation] = STATE(1823), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1823), + [anon_sym_RBRACE] = ACTIONS(4225), + [anon_sym_EQ] = ACTIONS(4253), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(4257), + [anon_sym_COLON] = ACTIONS(4253), + [anon_sym_COLON_QMARK] = ACTIONS(4253), + [anon_sym_COLON_DASH] = ACTIONS(4253), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_DASH] = ACTIONS(4253), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1431] = { + [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(53), + [sym_word] = ACTIONS(1798), + }, + [1432] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4259), + }, + [1433] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4261), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1434] = { + [sym__concat] = ACTIONS(1806), + [anon_sym_RPAREN] = ACTIONS(1806), + [sym__special_characters] = ACTIONS(1806), + [anon_sym_DQUOTE] = ACTIONS(1806), + [anon_sym_DOLLAR] = ACTIONS(1808), + [sym_raw_string] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1806), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1806), + [anon_sym_BQUOTE] = ACTIONS(1806), + [anon_sym_LT_LPAREN] = ACTIONS(1806), + [anon_sym_GT_LPAREN] = ACTIONS(1806), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1806), + }, + [1435] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4263), + }, + [1436] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4225), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -44452,133 +40946,106 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [1437] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(4272), + [sym__concat] = ACTIONS(1940), + [anon_sym_RPAREN] = ACTIONS(1940), + [sym__special_characters] = ACTIONS(1940), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(1942), + [sym_raw_string] = ACTIONS(1940), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1940), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [anon_sym_LT_LPAREN] = ACTIONS(1940), + [anon_sym_GT_LPAREN] = ACTIONS(1940), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1940), }, [1438] = { - [sym_concatenation] = STATE(1850), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1850), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_EQ] = ACTIONS(4276), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4278), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(4280), - [anon_sym_COLON] = ACTIONS(4276), - [anon_sym_COLON_QMARK] = ACTIONS(4276), - [anon_sym_COLON_DASH] = ACTIONS(4276), - [anon_sym_PERCENT] = ACTIONS(4276), - [anon_sym_DASH] = ACTIONS(4276), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(2006), + [anon_sym_RPAREN] = ACTIONS(2006), + [sym__special_characters] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [anon_sym_DOLLAR] = ACTIONS(2008), + [sym_raw_string] = ACTIONS(2006), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2006), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2006), + [anon_sym_BQUOTE] = ACTIONS(2006), + [anon_sym_LT_LPAREN] = ACTIONS(2006), + [anon_sym_GT_LPAREN] = ACTIONS(2006), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2006), }, [1439] = { - [sym_concatenation] = STATE(1853), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1853), - [anon_sym_RBRACE] = ACTIONS(4282), - [anon_sym_EQ] = ACTIONS(4284), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(4288), - [anon_sym_COLON] = ACTIONS(4284), - [anon_sym_COLON_QMARK] = ACTIONS(4284), - [anon_sym_COLON_DASH] = ACTIONS(4284), - [anon_sym_PERCENT] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_file_descriptor] = ACTIONS(2710), + [sym__concat] = ACTIONS(2710), + [sym_variable_name] = ACTIONS(2710), + [anon_sym_esac] = ACTIONS(2712), + [anon_sym_PIPE] = ACTIONS(2712), + [anon_sym_RPAREN] = ACTIONS(2712), + [anon_sym_SEMI_SEMI] = ACTIONS(2712), + [anon_sym_PIPE_AMP] = ACTIONS(2712), + [anon_sym_AMP_AMP] = ACTIONS(2712), + [anon_sym_PIPE_PIPE] = ACTIONS(2712), + [anon_sym_LT] = ACTIONS(2712), + [anon_sym_GT] = ACTIONS(2712), + [anon_sym_GT_GT] = ACTIONS(2712), + [anon_sym_AMP_GT] = ACTIONS(2712), + [anon_sym_AMP_GT_GT] = ACTIONS(2712), + [anon_sym_LT_AMP] = ACTIONS(2712), + [anon_sym_GT_AMP] = ACTIONS(2712), + [sym__special_characters] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [anon_sym_DOLLAR] = ACTIONS(2712), + [sym_raw_string] = ACTIONS(2712), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2712), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2712), + [anon_sym_BQUOTE] = ACTIONS(2712), + [anon_sym_LT_LPAREN] = ACTIONS(2712), + [anon_sym_GT_LPAREN] = ACTIONS(2712), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(2712), + [anon_sym_SEMI] = ACTIONS(2712), + [anon_sym_LF] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2712), }, [1440] = { - [sym_concatenation] = STATE(1855), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1855), - [anon_sym_RBRACE] = ACTIONS(4262), - [anon_sym_EQ] = ACTIONS(4290), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(4294), - [anon_sym_COLON] = ACTIONS(4290), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_COLON_DASH] = ACTIONS(4290), - [anon_sym_PERCENT] = ACTIONS(4290), - [anon_sym_DASH] = ACTIONS(4290), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4265), + [sym_comment] = ACTIONS(53), }, [1441] = { - [sym__heredoc_body_middle] = ACTIONS(1810), - [sym__heredoc_body_end] = ACTIONS(1810), - [anon_sym_DOLLAR] = ACTIONS(1812), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4267), [sym_comment] = ACTIONS(53), }, [1442] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4296), + [anon_sym_RBRACE] = ACTIONS(4267), + [sym_comment] = ACTIONS(53), }, [1443] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(1830), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(1830), + [anon_sym_RBRACE] = ACTIONS(4269), + [anon_sym_EQ] = ACTIONS(4271), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(4273), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_COLON_QMARK] = ACTIONS(4271), + [anon_sym_COLON_DASH] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4271), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -44587,1216 +41054,377 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [1444] = { - [sym__heredoc_body_middle] = ACTIONS(1818), - [sym__heredoc_body_end] = ACTIONS(1818), - [anon_sym_DOLLAR] = ACTIONS(1820), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1818), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(2788), + [sym__concat] = ACTIONS(2788), + [sym_variable_name] = ACTIONS(2788), + [anon_sym_esac] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_RPAREN] = ACTIONS(2790), + [anon_sym_SEMI_SEMI] = ACTIONS(2790), + [anon_sym_PIPE_AMP] = ACTIONS(2790), + [anon_sym_AMP_AMP] = ACTIONS(2790), + [anon_sym_PIPE_PIPE] = ACTIONS(2790), + [anon_sym_LT] = ACTIONS(2790), + [anon_sym_GT] = ACTIONS(2790), + [anon_sym_GT_GT] = ACTIONS(2790), + [anon_sym_AMP_GT] = ACTIONS(2790), + [anon_sym_AMP_GT_GT] = ACTIONS(2790), + [anon_sym_LT_AMP] = ACTIONS(2790), + [anon_sym_GT_AMP] = ACTIONS(2790), + [sym__special_characters] = ACTIONS(2790), + [anon_sym_DQUOTE] = ACTIONS(2790), + [anon_sym_DOLLAR] = ACTIONS(2790), + [sym_raw_string] = ACTIONS(2790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2790), + [anon_sym_BQUOTE] = ACTIONS(2790), + [anon_sym_LT_LPAREN] = ACTIONS(2790), + [anon_sym_GT_LPAREN] = ACTIONS(2790), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_LF] = ACTIONS(2788), + [anon_sym_AMP] = ACTIONS(2790), }, [1445] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4300), + [sym_concatenation] = STATE(1833), + [sym_string] = STATE(1832), + [sym_simple_expansion] = STATE(1832), + [sym_string_expansion] = STATE(1832), + [sym_expansion] = STATE(1832), + [sym_command_substitution] = STATE(1832), + [sym_process_substitution] = STATE(1832), + [anon_sym_RBRACE] = ACTIONS(4267), + [sym__special_characters] = ACTIONS(4275), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(4277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4277), }, [1446] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4262), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_file_descriptor] = ACTIONS(2831), + [sym__concat] = ACTIONS(2831), + [sym_variable_name] = ACTIONS(2831), + [anon_sym_esac] = ACTIONS(2833), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_RPAREN] = ACTIONS(2833), + [anon_sym_SEMI_SEMI] = ACTIONS(2833), + [anon_sym_PIPE_AMP] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_GT_GT] = ACTIONS(2833), + [anon_sym_AMP_GT] = ACTIONS(2833), + [anon_sym_AMP_GT_GT] = ACTIONS(2833), + [anon_sym_LT_AMP] = ACTIONS(2833), + [anon_sym_GT_AMP] = ACTIONS(2833), + [sym__special_characters] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_DOLLAR] = ACTIONS(2833), + [sym_raw_string] = ACTIONS(2833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2833), + [anon_sym_BQUOTE] = ACTIONS(2833), + [anon_sym_LT_LPAREN] = ACTIONS(2833), + [anon_sym_GT_LPAREN] = ACTIONS(2833), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(2833), + [anon_sym_SEMI] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(2833), }, [1447] = { - [aux_sym_concatenation_repeat1] = STATE(1447), - [sym__simple_heredoc_body] = ACTIONS(1654), - [sym__heredoc_body_beginning] = ACTIONS(1654), - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(1658), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1656), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1656), - [anon_sym_LT_AMP] = ACTIONS(1656), - [anon_sym_GT_AMP] = ACTIONS(1656), - [anon_sym_LT_LT] = ACTIONS(1656), - [anon_sym_LT_LT_DASH] = ACTIONS(1656), - [anon_sym_LT_LT_LT] = ACTIONS(1656), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), + [sym_regex_without_right_brace] = ACTIONS(4279), }, [1448] = { - [anon_sym_esac] = ACTIONS(4302), - [anon_sym_PIPE] = ACTIONS(4302), - [anon_sym_RPAREN] = ACTIONS(4302), - [anon_sym_SEMI_SEMI] = ACTIONS(4302), - [anon_sym_PIPE_AMP] = ACTIONS(4302), - [anon_sym_AMP_AMP] = ACTIONS(4302), - [anon_sym_PIPE_PIPE] = ACTIONS(4302), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4302), - [anon_sym_LF] = ACTIONS(4304), - [anon_sym_AMP] = ACTIONS(4302), + [sym_word] = ACTIONS(767), }, [1449] = { - [anon_sym_EQ] = ACTIONS(4306), - [anon_sym_PLUS_EQ] = ACTIONS(4306), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(2839), + [sym__concat] = ACTIONS(2839), + [sym_variable_name] = ACTIONS(2839), + [anon_sym_esac] = ACTIONS(2841), + [anon_sym_PIPE] = ACTIONS(2841), + [anon_sym_RPAREN] = ACTIONS(2841), + [anon_sym_SEMI_SEMI] = ACTIONS(2841), + [anon_sym_PIPE_AMP] = ACTIONS(2841), + [anon_sym_AMP_AMP] = ACTIONS(2841), + [anon_sym_PIPE_PIPE] = ACTIONS(2841), + [anon_sym_LT] = ACTIONS(2841), + [anon_sym_GT] = ACTIONS(2841), + [anon_sym_GT_GT] = ACTIONS(2841), + [anon_sym_AMP_GT] = ACTIONS(2841), + [anon_sym_AMP_GT_GT] = ACTIONS(2841), + [anon_sym_LT_AMP] = ACTIONS(2841), + [anon_sym_GT_AMP] = ACTIONS(2841), + [sym__special_characters] = ACTIONS(2841), + [anon_sym_DQUOTE] = ACTIONS(2841), + [anon_sym_DOLLAR] = ACTIONS(2841), + [sym_raw_string] = ACTIONS(2841), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2841), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2841), + [anon_sym_BQUOTE] = ACTIONS(2841), + [anon_sym_LT_LPAREN] = ACTIONS(2841), + [anon_sym_GT_LPAREN] = ACTIONS(2841), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym_LF] = ACTIONS(2839), + [anon_sym_AMP] = ACTIONS(2841), }, [1450] = { - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_PLUS_EQ] = ACTIONS(4308), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4283), }, [1451] = { - [sym__concat] = ACTIONS(1654), - [anon_sym_RPAREN] = ACTIONS(1654), - [sym__special_characters] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1654), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [anon_sym_LT_LPAREN] = ACTIONS(1654), - [anon_sym_GT_LPAREN] = ACTIONS(1654), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1654), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4285), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1452] = { - [aux_sym_concatenation_repeat1] = STATE(1452), - [sym__concat] = ACTIONS(4310), - [anon_sym_RPAREN] = ACTIONS(1654), - [sym__special_characters] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1654), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [anon_sym_LT_LPAREN] = ACTIONS(1654), - [anon_sym_GT_LPAREN] = ACTIONS(1654), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1654), + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4287), }, [1453] = { - [sym__concat] = ACTIONS(1703), - [anon_sym_RPAREN] = ACTIONS(1703), - [sym__special_characters] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1703), - [anon_sym_DOLLAR] = ACTIONS(1705), - [sym_raw_string] = ACTIONS(1703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1703), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1703), - [anon_sym_BQUOTE] = ACTIONS(1703), - [anon_sym_LT_LPAREN] = ACTIONS(1703), - [anon_sym_GT_LPAREN] = ACTIONS(1703), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1703), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1454] = { - [sym_concatenation] = STATE(1862), - [sym_string] = STATE(1861), - [sym_simple_expansion] = STATE(1861), - [sym_string_expansion] = STATE(1861), - [sym_expansion] = STATE(1861), - [sym_command_substitution] = STATE(1861), - [sym_process_substitution] = STATE(1861), - [anon_sym_RBRACE] = ACTIONS(4313), - [sym__special_characters] = ACTIONS(4315), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(4317), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4317), + [sym_concatenation] = STATE(1840), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1840), + [anon_sym_RBRACE] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4291), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4291), + [anon_sym_COLON_QMARK] = ACTIONS(4291), + [anon_sym_COLON_DASH] = ACTIONS(4291), + [anon_sym_PERCENT] = ACTIONS(4291), + [anon_sym_DASH] = ACTIONS(4291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1455] = { - [sym__concat] = ACTIONS(1744), - [anon_sym_RPAREN] = ACTIONS(1744), - [sym__special_characters] = ACTIONS(1744), - [anon_sym_DQUOTE] = ACTIONS(1744), - [anon_sym_DOLLAR] = ACTIONS(1746), - [sym_raw_string] = ACTIONS(1744), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1744), - [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(53), - [sym_word] = ACTIONS(1744), + [sym_file_descriptor] = ACTIONS(2855), + [sym__concat] = ACTIONS(2855), + [sym_variable_name] = ACTIONS(2855), + [anon_sym_esac] = ACTIONS(2857), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2857), + [anon_sym_SEMI_SEMI] = ACTIONS(2857), + [anon_sym_PIPE_AMP] = ACTIONS(2857), + [anon_sym_AMP_AMP] = ACTIONS(2857), + [anon_sym_PIPE_PIPE] = ACTIONS(2857), + [anon_sym_LT] = ACTIONS(2857), + [anon_sym_GT] = ACTIONS(2857), + [anon_sym_GT_GT] = ACTIONS(2857), + [anon_sym_AMP_GT] = ACTIONS(2857), + [anon_sym_AMP_GT_GT] = ACTIONS(2857), + [anon_sym_LT_AMP] = ACTIONS(2857), + [anon_sym_GT_AMP] = ACTIONS(2857), + [sym__special_characters] = ACTIONS(2857), + [anon_sym_DQUOTE] = ACTIONS(2857), + [anon_sym_DOLLAR] = ACTIONS(2857), + [sym_raw_string] = ACTIONS(2857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2857), + [anon_sym_BQUOTE] = ACTIONS(2857), + [anon_sym_LT_LPAREN] = ACTIONS(2857), + [anon_sym_GT_LPAREN] = ACTIONS(2857), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_LF] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2857), }, [1456] = { + [sym_concatenation] = STATE(1842), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1842), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(4297), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_COLON_QMARK] = ACTIONS(4297), + [anon_sym_COLON_DASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4319), + [sym_word] = ACTIONS(767), }, [1457] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4321), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [aux_sym_concatenation_repeat1] = STATE(1457), + [sym__concat] = ACTIONS(2267), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [sym__special_characters] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1644), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1644), + [anon_sym_LT_LPAREN] = ACTIONS(1644), + [anon_sym_GT_LPAREN] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, [1458] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(4323), - [sym_comment] = ACTIONS(53), + [anon_sym_esac] = ACTIONS(4301), + [anon_sym_PIPE] = ACTIONS(4301), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_SEMI_SEMI] = ACTIONS(4301), + [anon_sym_PIPE_AMP] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_LF] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4301), }, [1459] = { - [sym_concatenation] = STATE(1868), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1868), - [anon_sym_RBRACE] = ACTIONS(4325), - [anon_sym_EQ] = ACTIONS(4327), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4329), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(4331), - [anon_sym_COLON] = ACTIONS(4327), - [anon_sym_COLON_QMARK] = ACTIONS(4327), - [anon_sym_COLON_DASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [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(177), - [sym_word] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(3440), + [anon_sym_LF] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3440), }, [1460] = { - [sym_concatenation] = STATE(1871), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1871), - [anon_sym_RBRACE] = ACTIONS(4333), - [anon_sym_EQ] = ACTIONS(4335), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4337), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(4339), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_COLON_QMARK] = ACTIONS(4335), - [anon_sym_COLON_DASH] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4335), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1461] = { - [sym_concatenation] = STATE(1873), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1873), - [anon_sym_RBRACE] = ACTIONS(4313), - [anon_sym_EQ] = ACTIONS(4341), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4343), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(4345), - [anon_sym_COLON] = ACTIONS(4341), - [anon_sym_COLON_QMARK] = ACTIONS(4341), - [anon_sym_COLON_DASH] = ACTIONS(4341), - [anon_sym_PERCENT] = ACTIONS(4341), - [anon_sym_DASH] = ACTIONS(4341), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1462] = { - [sym__concat] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [sym__special_characters] = ACTIONS(1810), - [anon_sym_DQUOTE] = ACTIONS(1810), - [anon_sym_DOLLAR] = ACTIONS(1812), - [sym_raw_string] = ACTIONS(1810), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1810), - [anon_sym_LT_LPAREN] = ACTIONS(1810), - [anon_sym_GT_LPAREN] = ACTIONS(1810), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1810), - }, - [1463] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4347), - }, - [1464] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4349), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1465] = { - [sym__concat] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [sym__special_characters] = ACTIONS(1818), - [anon_sym_DQUOTE] = ACTIONS(1818), - [anon_sym_DOLLAR] = ACTIONS(1820), - [sym_raw_string] = ACTIONS(1818), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1818), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1818), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1818), - [anon_sym_GT_LPAREN] = ACTIONS(1818), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1818), - }, - [1466] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4351), - }, - [1467] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4313), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1468] = { - [sym__concat] = ACTIONS(1952), - [anon_sym_RPAREN] = ACTIONS(1952), - [sym__special_characters] = ACTIONS(1952), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(1952), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1952), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1952), - [anon_sym_BQUOTE] = ACTIONS(1952), - [anon_sym_LT_LPAREN] = ACTIONS(1952), - [anon_sym_GT_LPAREN] = ACTIONS(1952), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1952), - }, - [1469] = { - [sym__concat] = ACTIONS(2018), - [anon_sym_RPAREN] = ACTIONS(2018), - [sym__special_characters] = ACTIONS(2018), - [anon_sym_DQUOTE] = ACTIONS(2018), - [anon_sym_DOLLAR] = ACTIONS(2020), - [sym_raw_string] = ACTIONS(2018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2018), - [anon_sym_BQUOTE] = ACTIONS(2018), - [anon_sym_LT_LPAREN] = ACTIONS(2018), - [anon_sym_GT_LPAREN] = ACTIONS(2018), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2018), - }, - [1470] = { - [sym_file_descriptor] = ACTIONS(2752), - [sym__concat] = ACTIONS(2752), - [sym_variable_name] = ACTIONS(2752), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_SEMI_SEMI] = ACTIONS(2754), - [anon_sym_PIPE_AMP] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2754), - [anon_sym_GT] = ACTIONS(2754), - [anon_sym_GT_GT] = ACTIONS(2754), - [anon_sym_AMP_GT] = ACTIONS(2754), - [anon_sym_AMP_GT_GT] = ACTIONS(2754), - [anon_sym_LT_AMP] = ACTIONS(2754), - [anon_sym_GT_AMP] = ACTIONS(2754), - [sym__special_characters] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2754), - [anon_sym_DOLLAR] = ACTIONS(2754), - [sym_raw_string] = ACTIONS(2754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2754), - [anon_sym_BQUOTE] = ACTIONS(2754), - [anon_sym_LT_LPAREN] = ACTIONS(2754), - [anon_sym_GT_LPAREN] = ACTIONS(2754), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2754), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_LF] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2754), - }, - [1471] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(4353), - [sym_comment] = ACTIONS(53), - }, - [1472] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(4355), - [sym_comment] = ACTIONS(53), - }, - [1473] = { - [anon_sym_RBRACE] = ACTIONS(4355), - [sym_comment] = ACTIONS(53), - }, - [1474] = { - [sym_concatenation] = STATE(1880), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1880), - [anon_sym_RBRACE] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(4359), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4361), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4359), - [anon_sym_COLON_QMARK] = ACTIONS(4359), - [anon_sym_COLON_DASH] = ACTIONS(4359), - [anon_sym_PERCENT] = ACTIONS(4359), - [anon_sym_DASH] = ACTIONS(4359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1475] = { - [sym_file_descriptor] = ACTIONS(2830), - [sym__concat] = ACTIONS(2830), - [sym_variable_name] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_RPAREN] = ACTIONS(2832), - [anon_sym_SEMI_SEMI] = ACTIONS(2832), - [anon_sym_PIPE_AMP] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_PIPE_PIPE] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_GT_GT] = ACTIONS(2832), - [anon_sym_AMP_GT] = ACTIONS(2832), - [anon_sym_AMP_GT_GT] = ACTIONS(2832), - [anon_sym_LT_AMP] = ACTIONS(2832), - [anon_sym_GT_AMP] = ACTIONS(2832), - [sym__special_characters] = ACTIONS(2832), - [anon_sym_DQUOTE] = ACTIONS(2832), - [anon_sym_DOLLAR] = ACTIONS(2832), - [sym_raw_string] = ACTIONS(2832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2832), - [anon_sym_BQUOTE] = ACTIONS(2832), - [anon_sym_LT_LPAREN] = ACTIONS(2832), - [anon_sym_GT_LPAREN] = ACTIONS(2832), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_LF] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2832), - }, - [1476] = { - [sym_concatenation] = STATE(1883), - [sym_string] = STATE(1882), - [sym_simple_expansion] = STATE(1882), - [sym_string_expansion] = STATE(1882), - [sym_expansion] = STATE(1882), - [sym_command_substitution] = STATE(1882), - [sym_process_substitution] = STATE(1882), - [anon_sym_RBRACE] = ACTIONS(4355), - [sym__special_characters] = ACTIONS(4363), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(4365), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4365), - }, - [1477] = { - [sym_file_descriptor] = ACTIONS(2873), - [sym__concat] = ACTIONS(2873), - [sym_variable_name] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(2875), - [anon_sym_RPAREN] = ACTIONS(2875), - [anon_sym_SEMI_SEMI] = ACTIONS(2875), - [anon_sym_PIPE_AMP] = ACTIONS(2875), - [anon_sym_AMP_AMP] = ACTIONS(2875), - [anon_sym_PIPE_PIPE] = ACTIONS(2875), - [anon_sym_LT] = ACTIONS(2875), - [anon_sym_GT] = ACTIONS(2875), - [anon_sym_GT_GT] = ACTIONS(2875), - [anon_sym_AMP_GT] = ACTIONS(2875), - [anon_sym_AMP_GT_GT] = ACTIONS(2875), - [anon_sym_LT_AMP] = ACTIONS(2875), - [anon_sym_GT_AMP] = ACTIONS(2875), - [sym__special_characters] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2875), - [anon_sym_DOLLAR] = ACTIONS(2875), - [sym_raw_string] = ACTIONS(2875), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2875), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2875), - [anon_sym_BQUOTE] = ACTIONS(2875), - [anon_sym_LT_LPAREN] = ACTIONS(2875), - [anon_sym_GT_LPAREN] = ACTIONS(2875), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym_LF] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2875), - }, - [1478] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4367), - }, - [1479] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4369), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1480] = { - [sym_file_descriptor] = ACTIONS(2881), - [sym__concat] = ACTIONS(2881), - [sym_variable_name] = ACTIONS(2881), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_RPAREN] = ACTIONS(2883), - [anon_sym_SEMI_SEMI] = ACTIONS(2883), - [anon_sym_PIPE_AMP] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_PIPE_PIPE] = ACTIONS(2883), - [anon_sym_LT] = ACTIONS(2883), - [anon_sym_GT] = ACTIONS(2883), - [anon_sym_GT_GT] = ACTIONS(2883), - [anon_sym_AMP_GT] = ACTIONS(2883), - [anon_sym_AMP_GT_GT] = ACTIONS(2883), - [anon_sym_LT_AMP] = ACTIONS(2883), - [anon_sym_GT_AMP] = ACTIONS(2883), - [sym__special_characters] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2883), - [sym_raw_string] = ACTIONS(2883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2883), - [anon_sym_BQUOTE] = ACTIONS(2883), - [anon_sym_LT_LPAREN] = ACTIONS(2883), - [anon_sym_GT_LPAREN] = ACTIONS(2883), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2883), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym_LF] = ACTIONS(2881), - [anon_sym_AMP] = ACTIONS(2883), - }, - [1481] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4371), - }, - [1482] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1483] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4375), - }, - [1484] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4355), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1485] = { - [sym_concatenation] = STATE(1890), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1890), - [anon_sym_RBRACE] = ACTIONS(4377), - [anon_sym_EQ] = ACTIONS(4379), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4381), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4379), - [anon_sym_COLON_QMARK] = ACTIONS(4379), - [anon_sym_COLON_DASH] = ACTIONS(4379), - [anon_sym_PERCENT] = ACTIONS(4379), - [anon_sym_DASH] = ACTIONS(4379), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1486] = { - [sym_file_descriptor] = ACTIONS(2897), - [sym__concat] = ACTIONS(2897), - [sym_variable_name] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_RPAREN] = ACTIONS(2899), - [anon_sym_SEMI_SEMI] = ACTIONS(2899), - [anon_sym_PIPE_AMP] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_PIPE_PIPE] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [anon_sym_GT_GT] = ACTIONS(2899), - [anon_sym_AMP_GT] = ACTIONS(2899), - [anon_sym_AMP_GT_GT] = ACTIONS(2899), - [anon_sym_LT_AMP] = ACTIONS(2899), - [anon_sym_GT_AMP] = ACTIONS(2899), - [sym__special_characters] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2899), - [anon_sym_DOLLAR] = ACTIONS(2899), - [sym_raw_string] = ACTIONS(2899), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2899), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2899), - [anon_sym_BQUOTE] = ACTIONS(2899), - [anon_sym_LT_LPAREN] = ACTIONS(2899), - [anon_sym_GT_LPAREN] = ACTIONS(2899), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2899), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym_LF] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2899), - }, - [1487] = { - [sym_concatenation] = STATE(1892), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1892), - [anon_sym_RBRACE] = ACTIONS(4383), - [anon_sym_EQ] = ACTIONS(4385), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4387), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4385), - [anon_sym_COLON_QMARK] = ACTIONS(4385), - [anon_sym_COLON_DASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1488] = { - [sym__concat] = ACTIONS(1654), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [sym__special_characters] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1656), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1656), - [anon_sym_BQUOTE] = ACTIONS(1656), - [anon_sym_LT_LPAREN] = ACTIONS(1656), - [anon_sym_GT_LPAREN] = ACTIONS(1656), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), - }, - [1489] = { - [aux_sym_concatenation_repeat1] = STATE(1489), - [sym__concat] = ACTIONS(4389), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [sym__special_characters] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1656), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1656), - [anon_sym_BQUOTE] = ACTIONS(1656), - [anon_sym_LT_LPAREN] = ACTIONS(1656), - [anon_sym_GT_LPAREN] = ACTIONS(1656), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), - }, - [1490] = { - [sym__concat] = ACTIONS(1703), - [anon_sym_SEMI_SEMI] = ACTIONS(1705), - [sym__special_characters] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1705), - [sym_raw_string] = ACTIONS(1705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1705), - [anon_sym_BQUOTE] = ACTIONS(1705), - [anon_sym_LT_LPAREN] = ACTIONS(1705), - [anon_sym_GT_LPAREN] = ACTIONS(1705), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_LF] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1705), - }, - [1491] = { - [sym_concatenation] = STATE(1896), - [sym_string] = STATE(1895), - [sym_simple_expansion] = STATE(1895), - [sym_string_expansion] = STATE(1895), - [sym_expansion] = STATE(1895), - [sym_command_substitution] = STATE(1895), - [sym_process_substitution] = STATE(1895), - [anon_sym_RBRACE] = ACTIONS(4392), - [sym__special_characters] = ACTIONS(4394), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(4396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4396), - }, - [1492] = { - [sym__concat] = ACTIONS(1744), - [anon_sym_SEMI_SEMI] = ACTIONS(1746), - [sym__special_characters] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1746), - [sym_raw_string] = ACTIONS(1746), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1746), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_LT_LPAREN] = ACTIONS(1746), - [anon_sym_GT_LPAREN] = ACTIONS(1746), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LF] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1746), - }, - [1493] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4398), - }, - [1494] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4400), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1495] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(4402), - [sym_comment] = ACTIONS(53), - }, - [1496] = { - [sym_concatenation] = STATE(1902), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1902), - [anon_sym_RBRACE] = ACTIONS(4404), - [anon_sym_EQ] = ACTIONS(4406), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4408), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(4410), - [anon_sym_COLON] = ACTIONS(4406), - [anon_sym_COLON_QMARK] = ACTIONS(4406), - [anon_sym_COLON_DASH] = ACTIONS(4406), - [anon_sym_PERCENT] = ACTIONS(4406), - [anon_sym_DASH] = ACTIONS(4406), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1497] = { - [sym_concatenation] = STATE(1905), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1905), - [anon_sym_RBRACE] = ACTIONS(4412), - [anon_sym_EQ] = ACTIONS(4414), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4416), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(4418), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1498] = { - [sym_concatenation] = STATE(1907), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1907), - [anon_sym_RBRACE] = ACTIONS(4392), - [anon_sym_EQ] = ACTIONS(4420), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4422), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(4424), - [anon_sym_COLON] = ACTIONS(4420), - [anon_sym_COLON_QMARK] = ACTIONS(4420), - [anon_sym_COLON_DASH] = ACTIONS(4420), - [anon_sym_PERCENT] = ACTIONS(4420), - [anon_sym_DASH] = ACTIONS(4420), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1499] = { - [sym__concat] = ACTIONS(1810), - [anon_sym_SEMI_SEMI] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(1812), - [anon_sym_DQUOTE] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1812), - [sym_raw_string] = ACTIONS(1812), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1812), - [anon_sym_GT_LPAREN] = ACTIONS(1812), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_LF] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1812), - }, - [1500] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4426), - }, - [1501] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4428), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1502] = { - [sym__concat] = ACTIONS(1818), - [anon_sym_SEMI_SEMI] = ACTIONS(1820), - [sym__special_characters] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1820), - [sym_raw_string] = ACTIONS(1820), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1820), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1820), - [anon_sym_BQUOTE] = ACTIONS(1820), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_LF] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1820), - }, - [1503] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4430), - }, - [1504] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4392), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1505] = { - [sym__concat] = ACTIONS(1952), - [anon_sym_SEMI_SEMI] = ACTIONS(1954), - [sym__special_characters] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(1954), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1954), - [anon_sym_BQUOTE] = ACTIONS(1954), - [anon_sym_LT_LPAREN] = ACTIONS(1954), - [anon_sym_GT_LPAREN] = ACTIONS(1954), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1954), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_LF] = ACTIONS(1952), - [anon_sym_AMP] = ACTIONS(1954), - }, - [1506] = { - [sym__concat] = ACTIONS(2018), - [anon_sym_SEMI_SEMI] = ACTIONS(2020), - [sym__special_characters] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym_DOLLAR] = ACTIONS(2020), - [sym_raw_string] = ACTIONS(2020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2020), - [anon_sym_BQUOTE] = ACTIONS(2020), - [anon_sym_LT_LPAREN] = ACTIONS(2020), - [anon_sym_GT_LPAREN] = ACTIONS(2020), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2020), - [anon_sym_SEMI] = ACTIONS(2020), - [anon_sym_LF] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2020), - }, - [1507] = { - [anon_sym_esac] = ACTIONS(4432), - [anon_sym_PIPE] = ACTIONS(4432), - [anon_sym_RPAREN] = ACTIONS(4432), - [anon_sym_SEMI_SEMI] = ACTIONS(4432), - [anon_sym_PIPE_AMP] = ACTIONS(4432), - [anon_sym_AMP_AMP] = ACTIONS(4432), - [anon_sym_PIPE_PIPE] = ACTIONS(4432), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4432), - [anon_sym_LF] = ACTIONS(4434), - [anon_sym_AMP] = ACTIONS(4432), - }, - [1508] = { - [anon_sym_esac] = ACTIONS(3524), - [anon_sym_PIPE] = ACTIONS(3524), - [anon_sym_RPAREN] = ACTIONS(3524), - [anon_sym_SEMI_SEMI] = ACTIONS(3524), - [anon_sym_PIPE_AMP] = ACTIONS(3524), - [anon_sym_AMP_AMP] = ACTIONS(3524), - [anon_sym_PIPE_PIPE] = ACTIONS(3524), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3524), - [anon_sym_LF] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3524), - }, - [1509] = { - [sym__terminated_statement] = STATE(1911), - [sym_for_statement] = STATE(607), - [sym_while_statement] = STATE(607), - [sym_if_statement] = STATE(607), - [sym_case_statement] = STATE(607), - [sym_function_definition] = STATE(607), - [sym_subshell] = STATE(607), - [sym_pipeline] = STATE(607), - [sym_list] = STATE(607), - [sym_negated_command] = STATE(607), - [sym_test_command] = STATE(607), - [sym_declaration_command] = STATE(607), - [sym_unset_command] = STATE(607), - [sym_command] = STATE(607), + [sym__terminated_statement] = STATE(1843), + [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_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(610), + [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -45806,16 +41434,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1911), + [aux_sym_program_repeat1] = STATE(1843), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), [anon_sym_while] = ACTIONS(13), [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(4436), - [anon_sym_elif] = ACTIONS(4436), - [anon_sym_else] = ACTIONS(4436), + [anon_sym_fi] = ACTIONS(4305), + [anon_sym_elif] = ACTIONS(4305), + [anon_sym_else] = ACTIONS(4305), [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), @@ -45848,62 +41476,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [1510] = { - [sym_file_descriptor] = ACTIONS(951), - [sym_variable_name] = ACTIONS(951), - [anon_sym_for] = ACTIONS(953), - [anon_sym_while] = ACTIONS(953), - [anon_sym_if] = ACTIONS(953), - [anon_sym_fi] = ACTIONS(953), - [anon_sym_case] = ACTIONS(953), - [anon_sym_function] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_BANG] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_LBRACK_LBRACK] = ACTIONS(951), - [anon_sym_declare] = ACTIONS(953), - [anon_sym_typeset] = ACTIONS(953), - [anon_sym_export] = ACTIONS(953), - [anon_sym_readonly] = ACTIONS(953), - [anon_sym_local] = ACTIONS(953), - [anon_sym_unset] = ACTIONS(953), - [anon_sym_unsetenv] = ACTIONS(953), - [anon_sym_LT] = ACTIONS(953), - [anon_sym_GT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_AMP_GT] = ACTIONS(953), - [anon_sym_AMP_GT_GT] = ACTIONS(951), - [anon_sym_LT_AMP] = ACTIONS(951), - [anon_sym_GT_AMP] = ACTIONS(951), - [sym__special_characters] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(953), - [sym_raw_string] = ACTIONS(951), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(951), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(951), - [anon_sym_BQUOTE] = ACTIONS(951), - [anon_sym_LT_LPAREN] = ACTIONS(951), - [anon_sym_GT_LPAREN] = ACTIONS(951), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(953), - }, - [1511] = { - [sym__terminated_statement] = STATE(1511), - [sym_for_statement] = STATE(1066), - [sym_while_statement] = STATE(1066), - [sym_if_statement] = STATE(1066), - [sym_case_statement] = STATE(1066), - [sym_function_definition] = STATE(1066), - [sym_subshell] = STATE(1066), - [sym_pipeline] = STATE(1066), - [sym_list] = STATE(1066), - [sym_negated_command] = STATE(1066), - [sym_test_command] = STATE(1066), - [sym_declaration_command] = STATE(1066), - [sym_unset_command] = STATE(1066), - [sym_command] = STATE(1066), + [1461] = { + [sym__terminated_statement] = STATE(1461), + [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_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(1067), + [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -45913,14 +41502,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1511), + [aux_sym_program_repeat1] = STATE(1461), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(999), [sym_variable_name] = ACTIONS(1002), [anon_sym_for] = ACTIONS(1007), [anon_sym_while] = ACTIONS(1010), [anon_sym_if] = ACTIONS(1013), - [anon_sym_fi] = ACTIONS(3526), + [anon_sym_fi] = ACTIONS(3442), [anon_sym_case] = ACTIONS(1016), [anon_sym_function] = ACTIONS(1019), [anon_sym_LPAREN] = ACTIONS(1022), @@ -45953,91 +41542,91 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(1070), }, - [1512] = { - [anon_sym_esac] = ACTIONS(4438), - [anon_sym_PIPE] = ACTIONS(4438), - [anon_sym_RPAREN] = ACTIONS(4438), - [anon_sym_SEMI_SEMI] = ACTIONS(4438), - [anon_sym_PIPE_AMP] = ACTIONS(4438), - [anon_sym_AMP_AMP] = ACTIONS(4438), - [anon_sym_PIPE_PIPE] = ACTIONS(4438), + [1462] = { + [anon_sym_esac] = ACTIONS(4307), + [anon_sym_PIPE] = ACTIONS(4307), + [anon_sym_RPAREN] = ACTIONS(4307), + [anon_sym_SEMI_SEMI] = ACTIONS(4307), + [anon_sym_PIPE_AMP] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4438), - [anon_sym_LF] = ACTIONS(4440), - [anon_sym_AMP] = ACTIONS(4438), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym_LF] = ACTIONS(4309), + [anon_sym_AMP] = ACTIONS(4307), }, - [1513] = { - [anon_sym_fi] = ACTIONS(4442), + [1463] = { + [anon_sym_fi] = ACTIONS(4311), [sym_comment] = ACTIONS(53), }, - [1514] = { - [sym_concatenation] = STATE(1915), - [sym_string] = STATE(1914), - [sym_simple_expansion] = STATE(1914), - [sym_string_expansion] = STATE(1914), - [sym_expansion] = STATE(1914), - [sym_command_substitution] = STATE(1914), - [sym_process_substitution] = STATE(1914), - [sym__special_characters] = ACTIONS(4444), + [1464] = { + [sym_concatenation] = STATE(1847), + [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(4313), [anon_sym_DQUOTE] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(4446), + [sym_raw_string] = ACTIONS(4315), [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), [anon_sym_BQUOTE] = ACTIONS(149), [anon_sym_LT_LPAREN] = ACTIONS(151), [anon_sym_GT_LPAREN] = ACTIONS(151), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4446), + [sym_word] = ACTIONS(4315), }, - [1515] = { - [sym__terminated_statement] = STATE(1939), - [sym_for_statement] = STATE(1934), - [sym_while_statement] = STATE(1934), - [sym_if_statement] = STATE(1934), - [sym_case_statement] = STATE(1934), - [sym_function_definition] = STATE(1934), - [sym_subshell] = STATE(1934), - [sym_pipeline] = STATE(1934), - [sym_list] = STATE(1934), - [sym_negated_command] = STATE(1934), - [sym_test_command] = STATE(1934), - [sym_declaration_command] = STATE(1934), - [sym_unset_command] = STATE(1934), - [sym_command] = STATE(1934), - [sym_command_name] = STATE(1935), - [sym_variable_assignment] = STATE(1936), - [sym_subscript] = STATE(1937), + [1465] = { + [sym__terminated_statement] = STATE(1864), + [sym_for_statement] = STATE(1860), + [sym_while_statement] = STATE(1860), + [sym_if_statement] = STATE(1860), + [sym_case_statement] = STATE(1860), + [sym_function_definition] = STATE(1860), + [sym_subshell] = STATE(1860), + [sym_pipeline] = STATE(1860), + [sym_list] = STATE(1860), + [sym_negated_command] = STATE(1860), + [sym_test_command] = STATE(1860), + [sym_declaration_command] = STATE(1860), + [sym_unset_command] = STATE(1860), + [sym_command] = STATE(1860), + [sym_command_name] = STATE(1861), + [sym_variable_assignment] = STATE(1862), + [sym_subscript] = STATE(1863), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(1938), - [sym_string] = STATE(1928), - [sym_simple_expansion] = STATE(1928), - [sym_string_expansion] = STATE(1928), - [sym_expansion] = STATE(1928), - [sym_command_substitution] = STATE(1928), - [sym_process_substitution] = STATE(1928), - [aux_sym_program_repeat1] = STATE(1939), - [aux_sym_command_repeat1] = STATE(1940), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1858), + [sym_simple_expansion] = STATE(1858), + [sym_string_expansion] = STATE(1858), + [sym_expansion] = STATE(1858), + [sym_command_substitution] = STATE(1858), + [sym_process_substitution] = STATE(1858), + [aux_sym_program_repeat1] = STATE(1864), + [aux_sym_command_repeat1] = STATE(1865), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4448), + [sym_variable_name] = ACTIONS(4317), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4450), + [anon_sym_while] = ACTIONS(4319), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(4452), - [anon_sym_SEMI_SEMI] = ACTIONS(4454), - [anon_sym_function] = ACTIONS(4456), + [anon_sym_esac] = ACTIONS(4321), + [anon_sym_SEMI_SEMI] = ACTIONS(4323), + [anon_sym_function] = ACTIONS(4325), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4458), - [anon_sym_LBRACK] = ACTIONS(4460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4462), - [anon_sym_declare] = ACTIONS(4464), - [anon_sym_typeset] = ACTIONS(4464), - [anon_sym_export] = ACTIONS(4464), - [anon_sym_readonly] = ACTIONS(4464), - [anon_sym_local] = ACTIONS(4464), - [anon_sym_unset] = ACTIONS(4466), - [anon_sym_unsetenv] = ACTIONS(4466), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4331), + [anon_sym_declare] = ACTIONS(4333), + [anon_sym_typeset] = ACTIONS(4333), + [anon_sym_export] = ACTIONS(4333), + [anon_sym_readonly] = ACTIONS(4333), + [anon_sym_local] = ACTIONS(4333), + [anon_sym_unset] = ACTIONS(4335), + [anon_sym_unsetenv] = ACTIONS(4335), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -46045,79 +41634,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4468), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(4474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), + [sym__special_characters] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4484), + [sym_word] = ACTIONS(4341), }, - [1516] = { - [aux_sym_case_item_repeat1] = STATE(1942), - [anon_sym_PIPE] = ACTIONS(3555), - [anon_sym_RPAREN] = ACTIONS(4486), + [1466] = { + [aux_sym_case_item_repeat1] = STATE(1867), + [anon_sym_PIPE] = ACTIONS(3467), + [anon_sym_RPAREN] = ACTIONS(4343), [sym_comment] = ACTIONS(53), }, - [1517] = { - [aux_sym_concatenation_repeat1] = STATE(1943), + [1467] = { + [aux_sym_concatenation_repeat1] = STATE(1868), [sym__concat] = ACTIONS(551), [anon_sym_PIPE] = ACTIONS(693), [anon_sym_RPAREN] = ACTIONS(693), [sym_comment] = ACTIONS(53), }, - [1518] = { - [sym__terminated_statement] = STATE(1947), - [sym_for_statement] = STATE(1945), - [sym_while_statement] = STATE(1945), - [sym_if_statement] = STATE(1945), - [sym_case_statement] = STATE(1945), - [sym_function_definition] = STATE(1945), - [sym_subshell] = STATE(1945), - [sym_pipeline] = STATE(1945), - [sym_list] = STATE(1945), - [sym_negated_command] = STATE(1945), - [sym_test_command] = STATE(1945), - [sym_declaration_command] = STATE(1945), - [sym_unset_command] = STATE(1945), - [sym_command] = STATE(1945), - [sym_command_name] = STATE(1935), - [sym_variable_assignment] = STATE(1946), - [sym_subscript] = STATE(1937), + [1468] = { + [sym__terminated_statement] = STATE(1872), + [sym_for_statement] = STATE(1870), + [sym_while_statement] = STATE(1870), + [sym_if_statement] = STATE(1870), + [sym_case_statement] = STATE(1870), + [sym_function_definition] = STATE(1870), + [sym_subshell] = STATE(1870), + [sym_pipeline] = STATE(1870), + [sym_list] = STATE(1870), + [sym_negated_command] = STATE(1870), + [sym_test_command] = STATE(1870), + [sym_declaration_command] = STATE(1870), + [sym_unset_command] = STATE(1870), + [sym_command] = STATE(1870), + [sym_command_name] = STATE(1861), + [sym_variable_assignment] = STATE(1871), + [sym_subscript] = STATE(1863), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(1938), - [sym_string] = STATE(1928), - [sym_simple_expansion] = STATE(1928), - [sym_string_expansion] = STATE(1928), - [sym_expansion] = STATE(1928), - [sym_command_substitution] = STATE(1928), - [sym_process_substitution] = STATE(1928), - [aux_sym_program_repeat1] = STATE(1947), - [aux_sym_command_repeat1] = STATE(1940), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1858), + [sym_simple_expansion] = STATE(1858), + [sym_string_expansion] = STATE(1858), + [sym_expansion] = STATE(1858), + [sym_command_substitution] = STATE(1858), + [sym_process_substitution] = STATE(1858), + [aux_sym_program_repeat1] = STATE(1872), + [aux_sym_command_repeat1] = STATE(1865), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4448), + [sym_variable_name] = ACTIONS(4317), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4450), + [anon_sym_while] = ACTIONS(4319), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(4488), - [anon_sym_SEMI_SEMI] = ACTIONS(4490), - [anon_sym_function] = ACTIONS(4456), + [anon_sym_esac] = ACTIONS(4345), + [anon_sym_SEMI_SEMI] = ACTIONS(4347), + [anon_sym_function] = ACTIONS(4325), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4458), - [anon_sym_LBRACK] = ACTIONS(4460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4462), - [anon_sym_declare] = ACTIONS(4464), - [anon_sym_typeset] = ACTIONS(4464), - [anon_sym_export] = ACTIONS(4464), - [anon_sym_readonly] = ACTIONS(4464), - [anon_sym_local] = ACTIONS(4464), - [anon_sym_unset] = ACTIONS(4466), - [anon_sym_unsetenv] = ACTIONS(4466), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4331), + [anon_sym_declare] = ACTIONS(4333), + [anon_sym_typeset] = ACTIONS(4333), + [anon_sym_export] = ACTIONS(4333), + [anon_sym_readonly] = ACTIONS(4333), + [anon_sym_local] = ACTIONS(4333), + [anon_sym_unset] = ACTIONS(4335), + [anon_sym_unsetenv] = ACTIONS(4335), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -46125,201 +41714,231 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4468), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(4474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), + [sym__special_characters] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4484), + [sym_word] = ACTIONS(4341), }, - [1519] = { - [aux_sym_case_item_repeat1] = STATE(1942), - [anon_sym_PIPE] = ACTIONS(3555), - [anon_sym_RPAREN] = ACTIONS(4492), + [1469] = { + [aux_sym_case_item_repeat1] = STATE(1867), + [anon_sym_PIPE] = ACTIONS(3467), + [anon_sym_RPAREN] = ACTIONS(4349), [sym_comment] = ACTIONS(53), }, - [1520] = { - [anon_sym_esac] = ACTIONS(4494), - [anon_sym_PIPE] = ACTIONS(4494), - [anon_sym_RPAREN] = ACTIONS(4494), - [anon_sym_SEMI_SEMI] = ACTIONS(4494), - [anon_sym_PIPE_AMP] = ACTIONS(4494), - [anon_sym_AMP_AMP] = ACTIONS(4494), - [anon_sym_PIPE_PIPE] = ACTIONS(4494), + [1470] = { + [anon_sym_esac] = ACTIONS(4351), + [anon_sym_PIPE] = ACTIONS(4351), + [anon_sym_RPAREN] = ACTIONS(4351), + [anon_sym_SEMI_SEMI] = ACTIONS(4351), + [anon_sym_PIPE_AMP] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4494), - [anon_sym_LF] = ACTIONS(4496), - [anon_sym_AMP] = ACTIONS(4494), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_LF] = ACTIONS(4353), + [anon_sym_AMP] = ACTIONS(4351), }, - [1521] = { - [anon_sym_esac] = ACTIONS(4498), + [1471] = { + [anon_sym_esac] = ACTIONS(4355), [sym_comment] = ACTIONS(53), }, - [1522] = { - [sym_case_item] = STATE(1522), - [sym_concatenation] = STATE(1952), - [sym_string] = STATE(1951), - [sym_simple_expansion] = STATE(1951), - [sym_string_expansion] = STATE(1951), - [sym_expansion] = STATE(1951), - [sym_command_substitution] = STATE(1951), - [sym_process_substitution] = STATE(1951), - [aux_sym_case_statement_repeat1] = STATE(1522), - [sym__special_characters] = ACTIONS(4500), - [anon_sym_DQUOTE] = ACTIONS(4503), - [anon_sym_DOLLAR] = ACTIONS(4506), - [sym_raw_string] = ACTIONS(4509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4512), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4515), - [anon_sym_BQUOTE] = ACTIONS(4518), - [anon_sym_LT_LPAREN] = ACTIONS(4521), - [anon_sym_GT_LPAREN] = ACTIONS(4521), + [1472] = { + [sym_case_item] = STATE(1472), + [sym_concatenation] = STATE(1877), + [sym_string] = STATE(1876), + [sym_simple_expansion] = STATE(1876), + [sym_string_expansion] = STATE(1876), + [sym_expansion] = STATE(1876), + [sym_command_substitution] = STATE(1876), + [sym_process_substitution] = STATE(1876), + [aux_sym_case_statement_repeat1] = STATE(1472), + [sym__special_characters] = ACTIONS(4357), + [anon_sym_DQUOTE] = ACTIONS(4360), + [anon_sym_DOLLAR] = ACTIONS(4363), + [sym_raw_string] = ACTIONS(4366), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4369), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4372), + [anon_sym_BQUOTE] = ACTIONS(4375), + [anon_sym_LT_LPAREN] = ACTIONS(4378), + [anon_sym_GT_LPAREN] = ACTIONS(4378), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4509), + [sym_word] = ACTIONS(4366), }, - [1523] = { - [anon_sym_esac] = ACTIONS(4524), - [anon_sym_PIPE] = ACTIONS(4524), - [anon_sym_RPAREN] = ACTIONS(4524), - [anon_sym_SEMI_SEMI] = ACTIONS(4524), - [anon_sym_PIPE_AMP] = ACTIONS(4524), - [anon_sym_AMP_AMP] = ACTIONS(4524), - [anon_sym_PIPE_PIPE] = ACTIONS(4524), + [1473] = { + [anon_sym_esac] = ACTIONS(4381), + [anon_sym_PIPE] = ACTIONS(4381), + [anon_sym_RPAREN] = ACTIONS(4381), + [anon_sym_SEMI_SEMI] = ACTIONS(4381), + [anon_sym_PIPE_AMP] = ACTIONS(4381), + [anon_sym_AMP_AMP] = ACTIONS(4381), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4524), - [anon_sym_LF] = ACTIONS(4526), - [anon_sym_AMP] = ACTIONS(4524), + [anon_sym_SEMI] = ACTIONS(4381), + [anon_sym_LF] = ACTIONS(4383), + [anon_sym_AMP] = ACTIONS(4381), }, - [1524] = { - [sym_case_item] = STATE(1522), - [sym_last_case_item] = STATE(1953), - [sym_concatenation] = STATE(1079), - [sym_string] = STATE(1077), - [sym_simple_expansion] = STATE(1077), - [sym_string_expansion] = STATE(1077), - [sym_expansion] = STATE(1077), - [sym_command_substitution] = STATE(1077), - [sym_process_substitution] = STATE(1077), - [aux_sym_case_statement_repeat1] = STATE(1522), - [sym__special_characters] = ACTIONS(2299), + [1474] = { + [sym_case_item] = STATE(1472), + [sym_last_case_item] = STATE(1878), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(1046), + [sym_simple_expansion] = STATE(1046), + [sym_string_expansion] = STATE(1046), + [sym_expansion] = STATE(1046), + [sym_command_substitution] = STATE(1046), + [sym_process_substitution] = STATE(1046), + [aux_sym_case_statement_repeat1] = STATE(1472), + [sym__special_characters] = ACTIONS(2257), [anon_sym_DQUOTE] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2259), [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), [anon_sym_BQUOTE] = ACTIONS(149), [anon_sym_LT_LPAREN] = ACTIONS(151), [anon_sym_GT_LPAREN] = ACTIONS(151), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2301), + [sym_word] = ACTIONS(2259), }, - [1525] = { - [anon_sym_esac] = ACTIONS(4528), - [anon_sym_PIPE] = ACTIONS(4528), - [anon_sym_RPAREN] = ACTIONS(4528), - [anon_sym_SEMI_SEMI] = ACTIONS(4528), - [anon_sym_PIPE_AMP] = ACTIONS(4528), - [anon_sym_AMP_AMP] = ACTIONS(4528), - [anon_sym_PIPE_PIPE] = ACTIONS(4528), + [1475] = { + [anon_sym_esac] = ACTIONS(4385), + [anon_sym_PIPE] = ACTIONS(4385), + [anon_sym_RPAREN] = ACTIONS(4385), + [anon_sym_SEMI_SEMI] = ACTIONS(4385), + [anon_sym_PIPE_AMP] = ACTIONS(4385), + [anon_sym_AMP_AMP] = ACTIONS(4385), + [anon_sym_PIPE_PIPE] = ACTIONS(4385), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4528), - [anon_sym_LF] = ACTIONS(4530), - [anon_sym_AMP] = ACTIONS(4528), + [anon_sym_SEMI] = ACTIONS(4385), + [anon_sym_LF] = ACTIONS(4387), + [anon_sym_AMP] = ACTIONS(4385), }, - [1526] = { - [anon_sym_esac] = ACTIONS(4532), + [1476] = { + [anon_sym_esac] = ACTIONS(4389), [sym_comment] = ACTIONS(53), }, - [1527] = { - [anon_sym_esac] = ACTIONS(4534), - [anon_sym_PIPE] = ACTIONS(4534), - [anon_sym_RPAREN] = ACTIONS(4534), - [anon_sym_SEMI_SEMI] = ACTIONS(4534), - [anon_sym_PIPE_AMP] = ACTIONS(4534), - [anon_sym_AMP_AMP] = ACTIONS(4534), - [anon_sym_PIPE_PIPE] = ACTIONS(4534), + [1477] = { + [anon_sym_esac] = ACTIONS(4391), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [anon_sym_SEMI_SEMI] = ACTIONS(4391), + [anon_sym_PIPE_AMP] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_PIPE_PIPE] = ACTIONS(4391), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4534), - [anon_sym_LF] = ACTIONS(4536), - [anon_sym_AMP] = ACTIONS(4534), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_LF] = ACTIONS(4393), + [anon_sym_AMP] = ACTIONS(4391), }, - [1528] = { - [sym_case_item] = STATE(1522), - [sym_last_case_item] = STATE(1955), - [sym_concatenation] = STATE(1079), - [sym_string] = STATE(1077), - [sym_simple_expansion] = STATE(1077), - [sym_string_expansion] = STATE(1077), - [sym_expansion] = STATE(1077), - [sym_command_substitution] = STATE(1077), - [sym_process_substitution] = STATE(1077), - [aux_sym_case_statement_repeat1] = STATE(1522), - [sym__special_characters] = ACTIONS(2299), + [1478] = { + [sym_case_item] = STATE(1472), + [sym_last_case_item] = STATE(1880), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(1046), + [sym_simple_expansion] = STATE(1046), + [sym_string_expansion] = STATE(1046), + [sym_expansion] = STATE(1046), + [sym_command_substitution] = STATE(1046), + [sym_process_substitution] = STATE(1046), + [aux_sym_case_statement_repeat1] = STATE(1472), + [sym__special_characters] = ACTIONS(2257), [anon_sym_DQUOTE] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2259), [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), [anon_sym_BQUOTE] = ACTIONS(149), [anon_sym_LT_LPAREN] = ACTIONS(151), [anon_sym_GT_LPAREN] = ACTIONS(151), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2301), + [sym_word] = ACTIONS(2259), }, - [1529] = { - [sym__concat] = ACTIONS(3917), - [anon_sym_in] = ACTIONS(3919), - [anon_sym_SEMI_SEMI] = ACTIONS(3919), + [1479] = { + [sym__concat] = ACTIONS(3829), + [anon_sym_in] = ACTIONS(3831), + [anon_sym_SEMI_SEMI] = ACTIONS(3831), + [sym__special_characters] = ACTIONS(3831), + [anon_sym_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3831), + [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(177), - [anon_sym_SEMI] = ACTIONS(3919), - [anon_sym_LF] = ACTIONS(3917), - [anon_sym_AMP] = ACTIONS(3919), + [sym_word] = ACTIONS(3831), + [anon_sym_SEMI] = ACTIONS(3831), + [anon_sym_LF] = ACTIONS(3829), + [anon_sym_AMP] = ACTIONS(3831), }, - [1530] = { - [sym__concat] = ACTIONS(3923), - [anon_sym_in] = ACTIONS(3925), - [anon_sym_SEMI_SEMI] = ACTIONS(3925), + [1480] = { + [sym__concat] = ACTIONS(3835), + [anon_sym_in] = ACTIONS(3837), + [anon_sym_SEMI_SEMI] = ACTIONS(3837), + [sym__special_characters] = ACTIONS(3837), + [anon_sym_DQUOTE] = ACTIONS(3837), + [anon_sym_DOLLAR] = ACTIONS(3837), + [sym_raw_string] = ACTIONS(3837), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3837), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3837), + [anon_sym_BQUOTE] = ACTIONS(3837), + [anon_sym_LT_LPAREN] = ACTIONS(3837), + [anon_sym_GT_LPAREN] = ACTIONS(3837), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3925), - [anon_sym_LF] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3925), + [sym_word] = ACTIONS(3837), + [anon_sym_SEMI] = ACTIONS(3837), + [anon_sym_LF] = ACTIONS(3835), + [anon_sym_AMP] = ACTIONS(3837), }, - [1531] = { - [sym__concat] = ACTIONS(4008), - [anon_sym_in] = ACTIONS(4010), - [anon_sym_SEMI_SEMI] = ACTIONS(4010), + [1481] = { + [sym__concat] = ACTIONS(3920), + [anon_sym_in] = ACTIONS(3922), + [anon_sym_SEMI_SEMI] = ACTIONS(3922), + [sym__special_characters] = ACTIONS(3922), + [anon_sym_DQUOTE] = ACTIONS(3922), + [anon_sym_DOLLAR] = ACTIONS(3922), + [sym_raw_string] = ACTIONS(3922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3922), + [anon_sym_BQUOTE] = ACTIONS(3922), + [anon_sym_LT_LPAREN] = ACTIONS(3922), + [anon_sym_GT_LPAREN] = ACTIONS(3922), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4010), - [anon_sym_LF] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4010), + [sym_word] = ACTIONS(3922), + [anon_sym_SEMI] = ACTIONS(3922), + [anon_sym_LF] = ACTIONS(3920), + [anon_sym_AMP] = ACTIONS(3922), }, - [1532] = { - [sym_concatenation] = STATE(839), + [1482] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4538), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4395), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -46327,44 +41946,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1533] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(4540), + [1483] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4397), [sym_comment] = ACTIONS(53), }, - [1534] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(4542), + [1484] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4399), [sym_comment] = ACTIONS(53), }, - [1535] = { - [anon_sym_RBRACE] = ACTIONS(4542), + [1485] = { + [anon_sym_RBRACE] = ACTIONS(4399), [sym_comment] = ACTIONS(53), }, - [1536] = { - [sym_concatenation] = STATE(1960), + [1486] = { + [sym_concatenation] = STATE(1885), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1960), - [anon_sym_RBRACE] = ACTIONS(4544), - [anon_sym_EQ] = ACTIONS(4546), + [aux_sym_expansion_repeat1] = STATE(1885), + [anon_sym_RBRACE] = ACTIONS(4401), + [anon_sym_EQ] = ACTIONS(4403), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4548), + [anon_sym_POUND] = ACTIONS(4405), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4546), - [anon_sym_COLON_QMARK] = ACTIONS(4546), - [anon_sym_COLON_DASH] = ACTIONS(4546), - [anon_sym_PERCENT] = ACTIONS(4546), - [anon_sym_DASH] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4403), + [anon_sym_COLON_QMARK] = ACTIONS(4403), + [anon_sym_COLON_DASH] = ACTIONS(4403), + [anon_sym_PERCENT] = ACTIONS(4403), + [anon_sym_DASH] = ACTIONS(4403), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -46372,37 +41991,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1537] = { - [sym__concat] = ACTIONS(4024), - [anon_sym_in] = ACTIONS(4026), - [anon_sym_SEMI_SEMI] = ACTIONS(4026), + [1487] = { + [sym__concat] = ACTIONS(3936), + [anon_sym_in] = ACTIONS(3938), + [anon_sym_SEMI_SEMI] = ACTIONS(3938), + [sym__special_characters] = ACTIONS(3938), + [anon_sym_DQUOTE] = ACTIONS(3938), + [anon_sym_DOLLAR] = ACTIONS(3938), + [sym_raw_string] = ACTIONS(3938), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3938), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3938), + [anon_sym_BQUOTE] = ACTIONS(3938), + [anon_sym_LT_LPAREN] = ACTIONS(3938), + [anon_sym_GT_LPAREN] = ACTIONS(3938), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym_LF] = ACTIONS(4024), - [anon_sym_AMP] = ACTIONS(4026), + [sym_word] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(3938), + [anon_sym_LF] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3938), }, - [1538] = { - [sym_concatenation] = STATE(1962), + [1488] = { + [sym_concatenation] = STATE(1887), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1962), - [anon_sym_RBRACE] = ACTIONS(4550), - [anon_sym_EQ] = ACTIONS(4552), + [aux_sym_expansion_repeat1] = STATE(1887), + [anon_sym_RBRACE] = ACTIONS(4407), + [anon_sym_EQ] = ACTIONS(4409), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4554), + [anon_sym_POUND] = ACTIONS(4411), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4552), - [anon_sym_COLON_QMARK] = ACTIONS(4552), - [anon_sym_COLON_DASH] = ACTIONS(4552), - [anon_sym_PERCENT] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), + [anon_sym_COLON] = ACTIONS(4409), + [anon_sym_COLON_QMARK] = ACTIONS(4409), + [anon_sym_COLON_DASH] = ACTIONS(4409), + [anon_sym_PERCENT] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -46410,37 +42039,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1539] = { - [sym__concat] = ACTIONS(4034), - [anon_sym_in] = ACTIONS(4036), - [anon_sym_SEMI_SEMI] = ACTIONS(4036), + [1489] = { + [sym__concat] = ACTIONS(3946), + [anon_sym_in] = ACTIONS(3948), + [anon_sym_SEMI_SEMI] = ACTIONS(3948), + [sym__special_characters] = ACTIONS(3948), + [anon_sym_DQUOTE] = ACTIONS(3948), + [anon_sym_DOLLAR] = ACTIONS(3948), + [sym_raw_string] = ACTIONS(3948), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3948), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3948), + [anon_sym_BQUOTE] = ACTIONS(3948), + [anon_sym_LT_LPAREN] = ACTIONS(3948), + [anon_sym_GT_LPAREN] = ACTIONS(3948), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_LF] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4036), + [sym_word] = ACTIONS(3948), + [anon_sym_SEMI] = ACTIONS(3948), + [anon_sym_LF] = ACTIONS(3946), + [anon_sym_AMP] = ACTIONS(3948), }, - [1540] = { - [sym_concatenation] = STATE(1964), + [1490] = { + [sym_concatenation] = STATE(1889), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1964), - [anon_sym_RBRACE] = ACTIONS(4556), - [anon_sym_EQ] = ACTIONS(4558), + [aux_sym_expansion_repeat1] = STATE(1889), + [anon_sym_RBRACE] = ACTIONS(4413), + [anon_sym_EQ] = ACTIONS(4415), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4560), + [anon_sym_POUND] = ACTIONS(4417), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4558), - [anon_sym_COLON_QMARK] = ACTIONS(4558), - [anon_sym_COLON_DASH] = ACTIONS(4558), - [anon_sym_PERCENT] = ACTIONS(4558), - [anon_sym_DASH] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4415), + [anon_sym_COLON_QMARK] = ACTIONS(4415), + [anon_sym_COLON_DASH] = ACTIONS(4415), + [anon_sym_PERCENT] = ACTIONS(4415), + [anon_sym_DASH] = ACTIONS(4415), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -46448,37 +42087,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1541] = { - [sym__concat] = ACTIONS(4044), - [anon_sym_in] = ACTIONS(4046), - [anon_sym_SEMI_SEMI] = ACTIONS(4046), + [1491] = { + [sym__concat] = ACTIONS(3956), + [anon_sym_in] = ACTIONS(3958), + [anon_sym_SEMI_SEMI] = ACTIONS(3958), + [sym__special_characters] = ACTIONS(3958), + [anon_sym_DQUOTE] = ACTIONS(3958), + [anon_sym_DOLLAR] = ACTIONS(3958), + [sym_raw_string] = ACTIONS(3958), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3958), + [anon_sym_BQUOTE] = ACTIONS(3958), + [anon_sym_LT_LPAREN] = ACTIONS(3958), + [anon_sym_GT_LPAREN] = ACTIONS(3958), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4046), - [anon_sym_LF] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4046), + [sym_word] = ACTIONS(3958), + [anon_sym_SEMI] = ACTIONS(3958), + [anon_sym_LF] = ACTIONS(3956), + [anon_sym_AMP] = ACTIONS(3958), }, - [1542] = { - [sym_concatenation] = STATE(839), + [1492] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4562), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4419), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -46486,37 +42135,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1543] = { - [sym__concat] = ACTIONS(4050), - [anon_sym_in] = ACTIONS(4052), - [anon_sym_SEMI_SEMI] = ACTIONS(4052), + [1493] = { + [sym__concat] = ACTIONS(3962), + [anon_sym_in] = ACTIONS(3964), + [anon_sym_SEMI_SEMI] = ACTIONS(3964), + [sym__special_characters] = ACTIONS(3964), + [anon_sym_DQUOTE] = ACTIONS(3964), + [anon_sym_DOLLAR] = ACTIONS(3964), + [sym_raw_string] = ACTIONS(3964), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3964), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3964), + [anon_sym_BQUOTE] = ACTIONS(3964), + [anon_sym_LT_LPAREN] = ACTIONS(3964), + [anon_sym_GT_LPAREN] = ACTIONS(3964), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4052), + [sym_word] = ACTIONS(3964), + [anon_sym_SEMI] = ACTIONS(3964), + [anon_sym_LF] = ACTIONS(3962), + [anon_sym_AMP] = ACTIONS(3964), }, - [1544] = { - [sym_concatenation] = STATE(839), + [1494] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4564), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4421), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -46524,21 +42183,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1545] = { - [anon_sym_esac] = ACTIONS(4566), - [anon_sym_PIPE] = ACTIONS(4566), - [anon_sym_RPAREN] = ACTIONS(4566), - [anon_sym_SEMI_SEMI] = ACTIONS(4566), - [anon_sym_PIPE_AMP] = ACTIONS(4566), - [anon_sym_AMP_AMP] = ACTIONS(4566), - [anon_sym_PIPE_PIPE] = ACTIONS(4566), + [1495] = { + [anon_sym_esac] = ACTIONS(4423), + [anon_sym_PIPE] = ACTIONS(4423), + [anon_sym_RPAREN] = ACTIONS(4423), + [anon_sym_SEMI_SEMI] = ACTIONS(4423), + [anon_sym_PIPE_AMP] = ACTIONS(4423), + [anon_sym_AMP_AMP] = ACTIONS(4423), + [anon_sym_PIPE_PIPE] = ACTIONS(4423), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4566), - [anon_sym_LF] = ACTIONS(4568), - [anon_sym_AMP] = ACTIONS(4566), + [anon_sym_SEMI] = ACTIONS(4423), + [anon_sym_LF] = ACTIONS(4425), + [anon_sym_AMP] = ACTIONS(4423), }, - [1546] = { - [aux_sym_concatenation_repeat1] = STATE(1549), + [1496] = { + [aux_sym_concatenation_repeat1] = STATE(1499), [sym__concat] = ACTIONS(621), [anon_sym_PIPE] = ACTIONS(1091), [anon_sym_SEMI_SEMI] = ACTIONS(1091), @@ -46550,8 +42209,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1089), [anon_sym_AMP] = ACTIONS(1091), }, - [1547] = { - [aux_sym_concatenation_repeat1] = STATE(1549), + [1497] = { + [aux_sym_concatenation_repeat1] = STATE(1499), [sym__concat] = ACTIONS(621), [anon_sym_PIPE] = ACTIONS(1095), [anon_sym_SEMI_SEMI] = ACTIONS(1095), @@ -46563,7 +42222,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1093), [anon_sym_AMP] = ACTIONS(1095), }, - [1548] = { + [1498] = { [anon_sym_esac] = ACTIONS(1095), [anon_sym_PIPE] = ACTIONS(1095), [anon_sym_RPAREN] = ACTIONS(1095), @@ -46576,8 +42235,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1093), [anon_sym_AMP] = ACTIONS(1095), }, - [1549] = { - [aux_sym_concatenation_repeat1] = STATE(1967), + [1499] = { + [aux_sym_concatenation_repeat1] = STATE(1892), [sym__concat] = ACTIONS(621), [anon_sym_PIPE] = ACTIONS(695), [anon_sym_SEMI_SEMI] = ACTIONS(695), @@ -46589,82 +42248,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(693), [anon_sym_AMP] = ACTIONS(695), }, - [1550] = { - [aux_sym_concatenation_repeat1] = STATE(1550), - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(3409), - [sym_variable_name] = ACTIONS(1654), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1656), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1656), - [anon_sym_LT_AMP] = ACTIONS(1656), - [anon_sym_GT_AMP] = ACTIONS(1656), - [sym__special_characters] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1656), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1656), - [anon_sym_BQUOTE] = ACTIONS(1656), - [anon_sym_LT_LPAREN] = ACTIONS(1656), - [anon_sym_GT_LPAREN] = ACTIONS(1656), + [1500] = { + [aux_sym_concatenation_repeat1] = STATE(1500), + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(3367), + [sym_variable_name] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1644), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1644), + [anon_sym_LT_AMP] = ACTIONS(1644), + [anon_sym_GT_AMP] = ACTIONS(1644), + [sym__special_characters] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1644), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1644), + [anon_sym_LT_LPAREN] = ACTIONS(1644), + [anon_sym_GT_LPAREN] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), + [sym_word] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, - [1551] = { - [sym_file_redirect] = STATE(1545), - [sym_file_descriptor] = ACTIONS(2382), - [anon_sym_PIPE] = ACTIONS(3609), - [anon_sym_RPAREN] = ACTIONS(3609), - [anon_sym_SEMI_SEMI] = ACTIONS(3609), - [anon_sym_PIPE_AMP] = ACTIONS(3609), - [anon_sym_AMP_AMP] = ACTIONS(3609), - [anon_sym_PIPE_PIPE] = ACTIONS(3609), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_GT_GT] = ACTIONS(2384), - [anon_sym_AMP_GT] = ACTIONS(2384), - [anon_sym_AMP_GT_GT] = ACTIONS(2384), - [anon_sym_LT_AMP] = ACTIONS(2384), - [anon_sym_GT_AMP] = ACTIONS(2384), + [1501] = { + [sym_file_redirect] = STATE(1495), + [sym_file_descriptor] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_RPAREN] = ACTIONS(3521), + [anon_sym_SEMI_SEMI] = ACTIONS(3521), + [anon_sym_PIPE_AMP] = ACTIONS(3521), + [anon_sym_AMP_AMP] = ACTIONS(3521), + [anon_sym_PIPE_PIPE] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(2342), + [anon_sym_GT] = ACTIONS(2342), + [anon_sym_GT_GT] = ACTIONS(2342), + [anon_sym_AMP_GT] = ACTIONS(2342), + [anon_sym_AMP_GT_GT] = ACTIONS(2342), + [anon_sym_LT_AMP] = ACTIONS(2342), + [anon_sym_GT_AMP] = ACTIONS(2342), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3609), - [anon_sym_LF] = ACTIONS(3611), - [anon_sym_AMP] = ACTIONS(3609), + [anon_sym_SEMI] = ACTIONS(3521), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3521), }, - [1552] = { - [sym_concatenation] = STATE(1548), - [sym_string] = STATE(1969), - [sym_simple_expansion] = STATE(1969), - [sym_string_expansion] = STATE(1969), - [sym_expansion] = STATE(1969), - [sym_command_substitution] = STATE(1969), - [sym_process_substitution] = STATE(1969), - [sym__special_characters] = ACTIONS(4570), + [1502] = { + [sym_concatenation] = STATE(1498), + [sym_string] = STATE(1894), + [sym_simple_expansion] = STATE(1894), + [sym_string_expansion] = STATE(1894), + [sym_expansion] = STATE(1894), + [sym_command_substitution] = STATE(1894), + [sym_process_substitution] = STATE(1894), + [sym__special_characters] = ACTIONS(4427), [anon_sym_DQUOTE] = ACTIONS(629), [anon_sym_DOLLAR] = ACTIONS(189), - [sym_raw_string] = ACTIONS(4572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1533), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1535), - [anon_sym_BQUOTE] = ACTIONS(1537), - [anon_sym_LT_LPAREN] = ACTIONS(1539), - [anon_sym_GT_LPAREN] = ACTIONS(1539), + [sym_raw_string] = ACTIONS(4429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1521), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1523), + [anon_sym_BQUOTE] = ACTIONS(1525), + [anon_sym_LT_LPAREN] = ACTIONS(1527), + [anon_sym_GT_LPAREN] = ACTIONS(1527), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4572), + [sym_word] = ACTIONS(4429), }, - [1553] = { - [aux_sym_concatenation_repeat1] = STATE(1970), + [1503] = { + [aux_sym_concatenation_repeat1] = STATE(1895), [sym__concat] = ACTIONS(621), [anon_sym_PIPE] = ACTIONS(665), [anon_sym_RPAREN] = ACTIONS(665), @@ -46677,8 +42336,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(661), [anon_sym_AMP] = ACTIONS(665), }, - [1554] = { - [aux_sym_concatenation_repeat1] = STATE(1970), + [1504] = { + [aux_sym_concatenation_repeat1] = STATE(1895), [sym__concat] = ACTIONS(621), [anon_sym_PIPE] = ACTIONS(679), [anon_sym_RPAREN] = ACTIONS(679), @@ -46691,30 +42350,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(677), [anon_sym_AMP] = ACTIONS(679), }, - [1555] = { - [sym_concatenation] = STATE(1581), - [sym_string] = STATE(1972), - [sym_simple_expansion] = STATE(1972), - [sym_string_expansion] = STATE(1972), - [sym_expansion] = STATE(1972), - [sym_command_substitution] = STATE(1972), - [sym_process_substitution] = STATE(1972), - [sym__special_characters] = ACTIONS(4574), - [anon_sym_DQUOTE] = ACTIONS(2500), - [anon_sym_DOLLAR] = ACTIONS(2502), - [sym_raw_string] = ACTIONS(4576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2506), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2508), - [anon_sym_BQUOTE] = ACTIONS(2510), - [anon_sym_LT_LPAREN] = ACTIONS(2512), - [anon_sym_GT_LPAREN] = ACTIONS(2512), + [1505] = { + [sym_concatenation] = STATE(1531), + [sym_string] = STATE(1897), + [sym_simple_expansion] = STATE(1897), + [sym_string_expansion] = STATE(1897), + [sym_expansion] = STATE(1897), + [sym_command_substitution] = STATE(1897), + [sym_process_substitution] = STATE(1897), + [sym__special_characters] = ACTIONS(4431), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_DOLLAR] = ACTIONS(2460), + [sym_raw_string] = ACTIONS(4433), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2466), + [anon_sym_BQUOTE] = ACTIONS(2468), + [anon_sym_LT_LPAREN] = ACTIONS(2470), + [anon_sym_GT_LPAREN] = ACTIONS(2470), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4576), + [sym_word] = ACTIONS(4433), }, - [1556] = { - [aux_sym_concatenation_repeat1] = STATE(1973), + [1506] = { + [aux_sym_concatenation_repeat1] = STATE(1898), [sym_file_descriptor] = ACTIONS(661), - [sym__concat] = ACTIONS(3687), + [sym__concat] = ACTIONS(3599), [anon_sym_PIPE] = ACTIONS(665), [anon_sym_RPAREN] = ACTIONS(665), [anon_sym_SEMI_SEMI] = ACTIONS(665), @@ -46736,10 +42395,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(661), [anon_sym_AMP] = ACTIONS(665), }, - [1557] = { - [aux_sym_concatenation_repeat1] = STATE(1973), + [1507] = { + [aux_sym_concatenation_repeat1] = STATE(1898), [sym_file_descriptor] = ACTIONS(677), - [sym__concat] = ACTIONS(3687), + [sym__concat] = ACTIONS(3599), [anon_sym_PIPE] = ACTIONS(679), [anon_sym_RPAREN] = ACTIONS(679), [anon_sym_SEMI_SEMI] = ACTIONS(679), @@ -46761,201 +42420,201 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(677), [anon_sym_AMP] = ACTIONS(679), }, - [1558] = { - [aux_sym_concatenation_repeat1] = STATE(1973), - [sym_file_descriptor] = ACTIONS(2070), - [sym__concat] = ACTIONS(3687), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_RPAREN] = ACTIONS(2072), - [anon_sym_SEMI_SEMI] = ACTIONS(2072), - [anon_sym_PIPE_AMP] = ACTIONS(2072), - [anon_sym_AMP_AMP] = ACTIONS(2072), - [anon_sym_PIPE_PIPE] = ACTIONS(2072), - [anon_sym_LT] = ACTIONS(2072), - [anon_sym_GT] = ACTIONS(2072), - [anon_sym_GT_GT] = ACTIONS(2072), - [anon_sym_AMP_GT] = ACTIONS(2072), - [anon_sym_AMP_GT_GT] = ACTIONS(2072), - [anon_sym_LT_AMP] = ACTIONS(2072), - [anon_sym_GT_AMP] = ACTIONS(2072), - [anon_sym_LT_LT] = ACTIONS(2072), - [anon_sym_LT_LT_DASH] = ACTIONS(2072), - [anon_sym_LT_LT_LT] = ACTIONS(2072), + [1508] = { + [aux_sym_concatenation_repeat1] = STATE(1898), + [sym_file_descriptor] = ACTIONS(2058), + [sym__concat] = ACTIONS(3599), + [anon_sym_PIPE] = ACTIONS(2060), + [anon_sym_RPAREN] = ACTIONS(2060), + [anon_sym_SEMI_SEMI] = ACTIONS(2060), + [anon_sym_PIPE_AMP] = ACTIONS(2060), + [anon_sym_AMP_AMP] = ACTIONS(2060), + [anon_sym_PIPE_PIPE] = ACTIONS(2060), + [anon_sym_LT] = ACTIONS(2060), + [anon_sym_GT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2060), + [anon_sym_AMP_GT] = ACTIONS(2060), + [anon_sym_AMP_GT_GT] = ACTIONS(2060), + [anon_sym_LT_AMP] = ACTIONS(2060), + [anon_sym_GT_AMP] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_LT_LT_DASH] = ACTIONS(2060), + [anon_sym_LT_LT_LT] = ACTIONS(2060), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_LF] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2060), + }, + [1509] = { + [aux_sym_concatenation_repeat1] = STATE(1898), + [sym_file_descriptor] = ACTIONS(2062), + [sym__concat] = ACTIONS(3599), + [anon_sym_PIPE] = ACTIONS(2064), + [anon_sym_RPAREN] = ACTIONS(2064), + [anon_sym_SEMI_SEMI] = ACTIONS(2064), + [anon_sym_PIPE_AMP] = ACTIONS(2064), + [anon_sym_AMP_AMP] = ACTIONS(2064), + [anon_sym_PIPE_PIPE] = ACTIONS(2064), + [anon_sym_LT] = ACTIONS(2064), + [anon_sym_GT] = ACTIONS(2064), + [anon_sym_GT_GT] = ACTIONS(2064), + [anon_sym_AMP_GT] = ACTIONS(2064), + [anon_sym_AMP_GT_GT] = ACTIONS(2064), + [anon_sym_LT_AMP] = ACTIONS(2064), + [anon_sym_GT_AMP] = ACTIONS(2064), + [anon_sym_LT_LT] = ACTIONS(2064), + [anon_sym_LT_LT_DASH] = ACTIONS(2064), + [anon_sym_LT_LT_LT] = ACTIONS(2064), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2064), + [anon_sym_LF] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2064), + }, + [1510] = { + [sym_file_redirect] = STATE(1510), + [sym_heredoc_redirect] = STATE(1510), + [sym_herestring_redirect] = STATE(1510), + [aux_sym_while_statement_repeat1] = STATE(1510), + [sym_file_descriptor] = ACTIONS(4435), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_RPAREN] = ACTIONS(2075), + [anon_sym_SEMI_SEMI] = ACTIONS(2075), + [anon_sym_PIPE_AMP] = ACTIONS(2075), + [anon_sym_AMP_AMP] = ACTIONS(2075), + [anon_sym_PIPE_PIPE] = ACTIONS(2075), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_GT_GT] = ACTIONS(4438), + [anon_sym_AMP_GT] = ACTIONS(4438), + [anon_sym_AMP_GT_GT] = ACTIONS(4438), + [anon_sym_LT_AMP] = ACTIONS(4438), + [anon_sym_GT_AMP] = ACTIONS(4438), + [anon_sym_LT_LT] = ACTIONS(3627), + [anon_sym_LT_LT_DASH] = ACTIONS(3627), + [anon_sym_LT_LT_LT] = ACTIONS(4441), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2075), [anon_sym_LF] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(2072), + [anon_sym_AMP] = ACTIONS(2075), }, - [1559] = { - [aux_sym_concatenation_repeat1] = STATE(1973), - [sym_file_descriptor] = ACTIONS(2074), - [sym__concat] = ACTIONS(3687), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2076), - [anon_sym_SEMI_SEMI] = ACTIONS(2076), - [anon_sym_PIPE_AMP] = ACTIONS(2076), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_GT_GT] = ACTIONS(2076), - [anon_sym_AMP_GT] = ACTIONS(2076), - [anon_sym_AMP_GT_GT] = ACTIONS(2076), - [anon_sym_LT_AMP] = ACTIONS(2076), - [anon_sym_GT_AMP] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(2076), - [anon_sym_LT_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT_LT] = ACTIONS(2076), + [1511] = { + [aux_sym_concatenation_repeat1] = STATE(1511), + [sym__simple_heredoc_body] = ACTIONS(1642), + [sym__heredoc_body_beginning] = ACTIONS(1642), + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(1646), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1644), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1644), + [anon_sym_LT_AMP] = ACTIONS(1644), + [anon_sym_GT_AMP] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1644), + [anon_sym_LT_LT_DASH] = ACTIONS(1644), + [anon_sym_LT_LT_LT] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, - [1560] = { - [sym_file_redirect] = STATE(1560), - [sym_heredoc_redirect] = STATE(1560), - [sym_herestring_redirect] = STATE(1560), - [aux_sym_while_statement_repeat1] = STATE(1560), - [sym_file_descriptor] = ACTIONS(4578), - [anon_sym_PIPE] = ACTIONS(2087), - [anon_sym_RPAREN] = ACTIONS(2087), - [anon_sym_SEMI_SEMI] = ACTIONS(2087), - [anon_sym_PIPE_AMP] = ACTIONS(2087), - [anon_sym_AMP_AMP] = ACTIONS(2087), - [anon_sym_PIPE_PIPE] = ACTIONS(2087), - [anon_sym_LT] = ACTIONS(4581), - [anon_sym_GT] = ACTIONS(4581), - [anon_sym_GT_GT] = ACTIONS(4581), - [anon_sym_AMP_GT] = ACTIONS(4581), - [anon_sym_AMP_GT_GT] = ACTIONS(4581), - [anon_sym_LT_AMP] = ACTIONS(4581), - [anon_sym_GT_AMP] = ACTIONS(4581), - [anon_sym_LT_LT] = ACTIONS(3715), - [anon_sym_LT_LT_DASH] = ACTIONS(3715), - [anon_sym_LT_LT_LT] = ACTIONS(4584), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym_LF] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2087), - }, - [1561] = { - [aux_sym_concatenation_repeat1] = STATE(1561), - [sym__simple_heredoc_body] = ACTIONS(1654), - [sym__heredoc_body_beginning] = ACTIONS(1654), - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(1658), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1656), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1656), - [anon_sym_LT_AMP] = ACTIONS(1656), - [anon_sym_GT_AMP] = ACTIONS(1656), - [anon_sym_LT_LT] = ACTIONS(1656), - [anon_sym_LT_LT_DASH] = ACTIONS(1656), - [anon_sym_LT_LT_LT] = ACTIONS(1656), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), - }, - [1562] = { - [sym_file_descriptor] = ACTIONS(3379), - [sym_variable_name] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3381), - [anon_sym_RPAREN] = ACTIONS(3379), - [anon_sym_PIPE_AMP] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3379), - [anon_sym_PIPE_PIPE] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_GT] = ACTIONS(3381), - [anon_sym_GT_GT] = ACTIONS(3379), - [anon_sym_AMP_GT] = ACTIONS(3381), - [anon_sym_AMP_GT_GT] = ACTIONS(3379), - [anon_sym_LT_AMP] = ACTIONS(3379), - [anon_sym_GT_AMP] = ACTIONS(3379), - [sym__special_characters] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [anon_sym_DOLLAR] = ACTIONS(3381), - [sym_raw_string] = ACTIONS(3379), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3379), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3379), - [anon_sym_BQUOTE] = ACTIONS(3379), - [anon_sym_LT_LPAREN] = ACTIONS(3379), - [anon_sym_GT_LPAREN] = ACTIONS(3379), + [1512] = { + [sym_file_descriptor] = ACTIONS(3337), + [sym_variable_name] = ACTIONS(3337), + [anon_sym_PIPE] = ACTIONS(3339), + [anon_sym_RPAREN] = ACTIONS(3337), + [anon_sym_PIPE_AMP] = ACTIONS(3337), + [anon_sym_AMP_AMP] = ACTIONS(3337), + [anon_sym_PIPE_PIPE] = ACTIONS(3337), + [anon_sym_LT] = ACTIONS(3339), + [anon_sym_GT] = ACTIONS(3339), + [anon_sym_GT_GT] = ACTIONS(3337), + [anon_sym_AMP_GT] = ACTIONS(3339), + [anon_sym_AMP_GT_GT] = ACTIONS(3337), + [anon_sym_LT_AMP] = ACTIONS(3337), + [anon_sym_GT_AMP] = ACTIONS(3337), + [sym__special_characters] = ACTIONS(3337), + [anon_sym_DQUOTE] = ACTIONS(3337), + [anon_sym_DOLLAR] = ACTIONS(3339), + [sym_raw_string] = ACTIONS(3337), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3337), + [anon_sym_BQUOTE] = ACTIONS(3337), + [anon_sym_LT_LPAREN] = ACTIONS(3337), + [anon_sym_GT_LPAREN] = ACTIONS(3337), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3379), + [sym_word] = ACTIONS(3337), }, - [1563] = { - [sym__concat] = ACTIONS(3917), - [anon_sym_AMP_AMP] = ACTIONS(3917), - [anon_sym_PIPE_PIPE] = ACTIONS(3917), - [anon_sym_RBRACK] = ACTIONS(3917), - [anon_sym_EQ_TILDE] = ACTIONS(3917), - [anon_sym_EQ_EQ] = ACTIONS(3917), - [anon_sym_EQ] = ACTIONS(3919), - [anon_sym_LT] = ACTIONS(3917), - [anon_sym_GT] = ACTIONS(3917), - [anon_sym_BANG_EQ] = ACTIONS(3917), + [1513] = { + [sym__concat] = ACTIONS(3829), + [anon_sym_AMP_AMP] = ACTIONS(3829), + [anon_sym_PIPE_PIPE] = ACTIONS(3829), + [anon_sym_RBRACK] = ACTIONS(3829), + [anon_sym_EQ_TILDE] = ACTIONS(3829), + [anon_sym_EQ_EQ] = ACTIONS(3829), + [anon_sym_EQ] = ACTIONS(3831), + [anon_sym_LT] = ACTIONS(3829), + [anon_sym_GT] = ACTIONS(3829), + [anon_sym_BANG_EQ] = ACTIONS(3829), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3917), + [sym_test_operator] = ACTIONS(3829), }, - [1564] = { - [sym__concat] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3923), - [anon_sym_PIPE_PIPE] = ACTIONS(3923), - [anon_sym_RBRACK] = ACTIONS(3923), - [anon_sym_EQ_TILDE] = ACTIONS(3923), - [anon_sym_EQ_EQ] = ACTIONS(3923), - [anon_sym_EQ] = ACTIONS(3925), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_BANG_EQ] = ACTIONS(3923), + [1514] = { + [sym__concat] = ACTIONS(3835), + [anon_sym_AMP_AMP] = ACTIONS(3835), + [anon_sym_PIPE_PIPE] = ACTIONS(3835), + [anon_sym_RBRACK] = ACTIONS(3835), + [anon_sym_EQ_TILDE] = ACTIONS(3835), + [anon_sym_EQ_EQ] = ACTIONS(3835), + [anon_sym_EQ] = ACTIONS(3837), + [anon_sym_LT] = ACTIONS(3835), + [anon_sym_GT] = ACTIONS(3835), + [anon_sym_BANG_EQ] = ACTIONS(3835), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3923), + [sym_test_operator] = ACTIONS(3835), }, - [1565] = { - [sym__concat] = ACTIONS(4008), - [anon_sym_AMP_AMP] = ACTIONS(4008), - [anon_sym_PIPE_PIPE] = ACTIONS(4008), - [anon_sym_RBRACK] = ACTIONS(4008), - [anon_sym_EQ_TILDE] = ACTIONS(4008), - [anon_sym_EQ_EQ] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_LT] = ACTIONS(4008), - [anon_sym_GT] = ACTIONS(4008), - [anon_sym_BANG_EQ] = ACTIONS(4008), + [1515] = { + [sym__concat] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3920), + [anon_sym_PIPE_PIPE] = ACTIONS(3920), + [anon_sym_RBRACK] = ACTIONS(3920), + [anon_sym_EQ_TILDE] = ACTIONS(3920), + [anon_sym_EQ_EQ] = ACTIONS(3920), + [anon_sym_EQ] = ACTIONS(3922), + [anon_sym_LT] = ACTIONS(3920), + [anon_sym_GT] = ACTIONS(3920), + [anon_sym_BANG_EQ] = ACTIONS(3920), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4008), + [sym_test_operator] = ACTIONS(3920), }, - [1566] = { - [sym_concatenation] = STATE(839), + [1516] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4587), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -46963,44 +42622,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1567] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(4589), + [1517] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4446), [sym_comment] = ACTIONS(53), }, - [1568] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(4591), + [1518] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4448), [sym_comment] = ACTIONS(53), }, - [1569] = { - [anon_sym_RBRACE] = ACTIONS(4591), + [1519] = { + [anon_sym_RBRACE] = ACTIONS(4448), [sym_comment] = ACTIONS(53), }, - [1570] = { - [sym_concatenation] = STATE(1978), + [1520] = { + [sym_concatenation] = STATE(1903), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1978), - [anon_sym_RBRACE] = ACTIONS(4593), - [anon_sym_EQ] = ACTIONS(4595), + [aux_sym_expansion_repeat1] = STATE(1903), + [anon_sym_RBRACE] = ACTIONS(4450), + [anon_sym_EQ] = ACTIONS(4452), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4597), + [anon_sym_POUND] = ACTIONS(4454), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4595), - [anon_sym_COLON_QMARK] = ACTIONS(4595), - [anon_sym_COLON_DASH] = ACTIONS(4595), - [anon_sym_PERCENT] = ACTIONS(4595), - [anon_sym_DASH] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4452), + [anon_sym_COLON_QMARK] = ACTIONS(4452), + [anon_sym_COLON_DASH] = ACTIONS(4452), + [anon_sym_PERCENT] = ACTIONS(4452), + [anon_sym_DASH] = ACTIONS(4452), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -47008,42 +42667,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1571] = { - [sym__concat] = ACTIONS(4024), - [anon_sym_AMP_AMP] = ACTIONS(4024), - [anon_sym_PIPE_PIPE] = ACTIONS(4024), - [anon_sym_RBRACK] = ACTIONS(4024), - [anon_sym_EQ_TILDE] = ACTIONS(4024), - [anon_sym_EQ_EQ] = ACTIONS(4024), - [anon_sym_EQ] = ACTIONS(4026), - [anon_sym_LT] = ACTIONS(4024), - [anon_sym_GT] = ACTIONS(4024), - [anon_sym_BANG_EQ] = ACTIONS(4024), + [1521] = { + [sym__concat] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [anon_sym_RBRACK] = ACTIONS(3936), + [anon_sym_EQ_TILDE] = ACTIONS(3936), + [anon_sym_EQ_EQ] = ACTIONS(3936), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3936), + [anon_sym_GT] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3936), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4024), + [sym_test_operator] = ACTIONS(3936), }, - [1572] = { - [sym_concatenation] = STATE(1980), + [1522] = { + [sym_concatenation] = STATE(1905), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1980), - [anon_sym_RBRACE] = ACTIONS(4599), - [anon_sym_EQ] = ACTIONS(4601), + [aux_sym_expansion_repeat1] = STATE(1905), + [anon_sym_RBRACE] = ACTIONS(4456), + [anon_sym_EQ] = ACTIONS(4458), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4460), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4601), - [anon_sym_COLON_QMARK] = ACTIONS(4601), - [anon_sym_COLON_DASH] = ACTIONS(4601), - [anon_sym_PERCENT] = ACTIONS(4601), - [anon_sym_DASH] = ACTIONS(4601), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -47051,42 +42710,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1573] = { - [sym__concat] = ACTIONS(4034), - [anon_sym_AMP_AMP] = ACTIONS(4034), - [anon_sym_PIPE_PIPE] = ACTIONS(4034), - [anon_sym_RBRACK] = ACTIONS(4034), - [anon_sym_EQ_TILDE] = ACTIONS(4034), - [anon_sym_EQ_EQ] = ACTIONS(4034), - [anon_sym_EQ] = ACTIONS(4036), - [anon_sym_LT] = ACTIONS(4034), - [anon_sym_GT] = ACTIONS(4034), - [anon_sym_BANG_EQ] = ACTIONS(4034), + [1523] = { + [sym__concat] = ACTIONS(3946), + [anon_sym_AMP_AMP] = ACTIONS(3946), + [anon_sym_PIPE_PIPE] = ACTIONS(3946), + [anon_sym_RBRACK] = ACTIONS(3946), + [anon_sym_EQ_TILDE] = ACTIONS(3946), + [anon_sym_EQ_EQ] = ACTIONS(3946), + [anon_sym_EQ] = ACTIONS(3948), + [anon_sym_LT] = ACTIONS(3946), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_BANG_EQ] = ACTIONS(3946), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4034), + [sym_test_operator] = ACTIONS(3946), }, - [1574] = { - [sym_concatenation] = STATE(1982), + [1524] = { + [sym_concatenation] = STATE(1907), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1982), - [anon_sym_RBRACE] = ACTIONS(4605), - [anon_sym_EQ] = ACTIONS(4607), + [aux_sym_expansion_repeat1] = STATE(1907), + [anon_sym_RBRACE] = ACTIONS(4462), + [anon_sym_EQ] = ACTIONS(4464), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4609), + [anon_sym_POUND] = ACTIONS(4466), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4607), - [anon_sym_COLON_QMARK] = ACTIONS(4607), - [anon_sym_COLON_DASH] = ACTIONS(4607), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_DASH] = ACTIONS(4607), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -47094,42 +42753,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1575] = { - [sym__concat] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_PIPE_PIPE] = ACTIONS(4044), - [anon_sym_RBRACK] = ACTIONS(4044), - [anon_sym_EQ_TILDE] = ACTIONS(4044), - [anon_sym_EQ_EQ] = ACTIONS(4044), - [anon_sym_EQ] = ACTIONS(4046), - [anon_sym_LT] = ACTIONS(4044), - [anon_sym_GT] = ACTIONS(4044), - [anon_sym_BANG_EQ] = ACTIONS(4044), + [1525] = { + [sym__concat] = ACTIONS(3956), + [anon_sym_AMP_AMP] = ACTIONS(3956), + [anon_sym_PIPE_PIPE] = ACTIONS(3956), + [anon_sym_RBRACK] = ACTIONS(3956), + [anon_sym_EQ_TILDE] = ACTIONS(3956), + [anon_sym_EQ_EQ] = ACTIONS(3956), + [anon_sym_EQ] = ACTIONS(3958), + [anon_sym_LT] = ACTIONS(3956), + [anon_sym_GT] = ACTIONS(3956), + [anon_sym_BANG_EQ] = ACTIONS(3956), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4044), + [sym_test_operator] = ACTIONS(3956), }, - [1576] = { - [sym_concatenation] = STATE(839), + [1526] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4611), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4468), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -47137,42 +42796,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1577] = { - [sym__concat] = ACTIONS(4050), - [anon_sym_AMP_AMP] = ACTIONS(4050), - [anon_sym_PIPE_PIPE] = ACTIONS(4050), - [anon_sym_RBRACK] = ACTIONS(4050), - [anon_sym_EQ_TILDE] = ACTIONS(4050), - [anon_sym_EQ_EQ] = ACTIONS(4050), - [anon_sym_EQ] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(4050), - [anon_sym_GT] = ACTIONS(4050), - [anon_sym_BANG_EQ] = ACTIONS(4050), + [1527] = { + [sym__concat] = ACTIONS(3962), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3962), + [anon_sym_RBRACK] = ACTIONS(3962), + [anon_sym_EQ_TILDE] = ACTIONS(3962), + [anon_sym_EQ_EQ] = ACTIONS(3962), + [anon_sym_EQ] = ACTIONS(3964), + [anon_sym_LT] = ACTIONS(3962), + [anon_sym_GT] = ACTIONS(3962), + [anon_sym_BANG_EQ] = ACTIONS(3962), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4050), + [sym_test_operator] = ACTIONS(3962), }, - [1578] = { - [sym_concatenation] = STATE(839), + [1528] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4613), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4470), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -47180,10 +42839,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1579] = { - [aux_sym_concatenation_repeat1] = STATE(1583), + [1529] = { + [aux_sym_concatenation_repeat1] = STATE(1533), [sym_file_descriptor] = ACTIONS(1089), - [sym__concat] = ACTIONS(3687), + [sym__concat] = ACTIONS(3599), [anon_sym_PIPE] = ACTIONS(1091), [anon_sym_SEMI_SEMI] = ACTIONS(1091), [anon_sym_PIPE_AMP] = ACTIONS(1091), @@ -47204,10 +42863,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1089), [anon_sym_AMP] = ACTIONS(1091), }, - [1580] = { - [aux_sym_concatenation_repeat1] = STATE(1583), + [1530] = { + [aux_sym_concatenation_repeat1] = STATE(1533), [sym_file_descriptor] = ACTIONS(1093), - [sym__concat] = ACTIONS(3687), + [sym__concat] = ACTIONS(3599), [anon_sym_PIPE] = ACTIONS(1095), [anon_sym_SEMI_SEMI] = ACTIONS(1095), [anon_sym_PIPE_AMP] = ACTIONS(1095), @@ -47228,7 +42887,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1093), [anon_sym_AMP] = ACTIONS(1095), }, - [1581] = { + [1531] = { [sym_file_descriptor] = ACTIONS(1093), [anon_sym_esac] = ACTIONS(1095), [anon_sym_PIPE] = ACTIONS(1095), @@ -47252,29 +42911,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1093), [anon_sym_AMP] = ACTIONS(1095), }, - [1582] = { - [sym_string] = STATE(1985), - [sym_simple_expansion] = STATE(1985), - [sym_string_expansion] = STATE(1985), - [sym_expansion] = STATE(1985), - [sym_command_substitution] = STATE(1985), - [sym_process_substitution] = STATE(1985), - [sym__special_characters] = ACTIONS(4615), - [anon_sym_DQUOTE] = ACTIONS(2500), - [anon_sym_DOLLAR] = ACTIONS(2502), - [sym_raw_string] = ACTIONS(4615), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2506), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2508), - [anon_sym_BQUOTE] = ACTIONS(2510), - [anon_sym_LT_LPAREN] = ACTIONS(2512), - [anon_sym_GT_LPAREN] = ACTIONS(2512), + [1532] = { + [sym_string] = STATE(1910), + [sym_simple_expansion] = STATE(1910), + [sym_string_expansion] = STATE(1910), + [sym_expansion] = STATE(1910), + [sym_command_substitution] = STATE(1910), + [sym_process_substitution] = STATE(1910), + [sym__special_characters] = ACTIONS(4472), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_DOLLAR] = ACTIONS(2460), + [sym_raw_string] = ACTIONS(4472), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2466), + [anon_sym_BQUOTE] = ACTIONS(2468), + [anon_sym_LT_LPAREN] = ACTIONS(2470), + [anon_sym_GT_LPAREN] = ACTIONS(2470), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4615), + [sym_word] = ACTIONS(4472), }, - [1583] = { - [aux_sym_concatenation_repeat1] = STATE(1986), + [1533] = { + [aux_sym_concatenation_repeat1] = STATE(1911), [sym_file_descriptor] = ACTIONS(693), - [sym__concat] = ACTIONS(3687), + [sym__concat] = ACTIONS(3599), [anon_sym_PIPE] = ACTIONS(695), [anon_sym_SEMI_SEMI] = ACTIONS(695), [anon_sym_PIPE_AMP] = ACTIONS(695), @@ -47295,7 +42954,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(693), [anon_sym_AMP] = ACTIONS(695), }, - [1584] = { + [1534] = { [sym_file_descriptor] = ACTIONS(697), [sym__concat] = ACTIONS(697), [anon_sym_esac] = ACTIONS(699), @@ -47320,12 +42979,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(697), [anon_sym_AMP] = ACTIONS(699), }, - [1585] = { + [1535] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(4617), + [anon_sym_DQUOTE] = ACTIONS(4474), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -47333,7 +42992,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(237), [sym_comment] = ACTIONS(177), }, - [1586] = { + [1536] = { [sym_file_descriptor] = ACTIONS(727), [sym__concat] = ACTIONS(727), [anon_sym_esac] = ACTIONS(729), @@ -47358,7 +43017,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(727), [anon_sym_AMP] = ACTIONS(729), }, - [1587] = { + [1537] = { [sym_file_descriptor] = ACTIONS(731), [sym__concat] = ACTIONS(731), [anon_sym_esac] = ACTIONS(733), @@ -47383,7 +43042,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(731), [anon_sym_AMP] = ACTIONS(733), }, - [1588] = { + [1538] = { [sym_file_descriptor] = ACTIONS(735), [sym__concat] = ACTIONS(735), [anon_sym_esac] = ACTIONS(737), @@ -47408,34 +43067,1048 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(735), [anon_sym_AMP] = ACTIONS(737), }, - [1589] = { + [1539] = { [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_EQ] = ACTIONS(4476), [sym_comment] = ACTIONS(53), }, - [1590] = { - [sym_concatenation] = STATE(1991), + [1540] = { + [sym_concatenation] = STATE(1916), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1991), - [anon_sym_RBRACE] = ACTIONS(4621), - [anon_sym_EQ] = ACTIONS(4623), + [aux_sym_expansion_repeat1] = STATE(1916), + [anon_sym_RBRACE] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4480), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4625), + [anon_sym_POUND] = ACTIONS(4482), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(4627), - [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), + [aux_sym_SLASH] = ACTIONS(4484), + [anon_sym_COLON] = ACTIONS(4480), + [anon_sym_COLON_QMARK] = ACTIONS(4480), + [anon_sym_COLON_DASH] = ACTIONS(4480), + [anon_sym_PERCENT] = ACTIONS(4480), + [anon_sym_DASH] = ACTIONS(4480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1541] = { + [sym_subscript] = STATE(1920), + [sym_variable_name] = ACTIONS(4486), + [anon_sym_DOLLAR] = ACTIONS(4488), + [anon_sym_DASH] = ACTIONS(4488), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(4488), + [anon_sym_AT] = ACTIONS(4488), + [anon_sym_QMARK] = ACTIONS(4488), + [anon_sym_0] = ACTIONS(4492), + [anon_sym__] = ACTIONS(4492), + }, + [1542] = { + [sym_concatenation] = STATE(1923), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1923), + [anon_sym_RBRACE] = ACTIONS(4494), + [anon_sym_EQ] = ACTIONS(4496), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4498), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(4500), + [anon_sym_COLON] = ACTIONS(4496), + [anon_sym_COLON_QMARK] = ACTIONS(4496), + [anon_sym_COLON_DASH] = ACTIONS(4496), + [anon_sym_PERCENT] = ACTIONS(4496), + [anon_sym_DASH] = ACTIONS(4496), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1543] = { + [sym_concatenation] = STATE(1926), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1926), + [anon_sym_RBRACE] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4504), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4506), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(4508), + [anon_sym_COLON] = ACTIONS(4504), + [anon_sym_COLON_QMARK] = ACTIONS(4504), + [anon_sym_COLON_DASH] = ACTIONS(4504), + [anon_sym_PERCENT] = ACTIONS(4504), + [anon_sym_DASH] = ACTIONS(4504), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1544] = { + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(4510), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(875), + [anon_sym_PIPE_PIPE] = ACTIONS(875), + [sym_comment] = ACTIONS(53), + }, + [1545] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(4510), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(875), + [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_AMP_GT] = ACTIONS(371), + [anon_sym_AMP_GT_GT] = ACTIONS(369), + [anon_sym_LT_AMP] = ACTIONS(369), + [anon_sym_GT_AMP] = ACTIONS(369), + [sym__special_characters] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(369), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, + [1546] = { + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_PIPE_AMP] = ACTIONS(925), + [anon_sym_AMP_AMP] = ACTIONS(927), + [anon_sym_PIPE_PIPE] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(4510), + [sym_comment] = ACTIONS(53), + }, + [1547] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_PIPE_AMP] = ACTIONS(925), + [anon_sym_AMP_AMP] = ACTIONS(927), + [anon_sym_PIPE_PIPE] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_AMP_GT] = ACTIONS(371), + [anon_sym_AMP_GT_GT] = ACTIONS(369), + [anon_sym_LT_AMP] = ACTIONS(369), + [anon_sym_GT_AMP] = ACTIONS(369), + [sym__special_characters] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(4510), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, + [1548] = { + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(4512), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(875), + [anon_sym_PIPE_PIPE] = ACTIONS(875), + [sym_comment] = ACTIONS(53), + }, + [1549] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(4512), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(875), + [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_AMP_GT] = ACTIONS(371), + [anon_sym_AMP_GT_GT] = ACTIONS(369), + [anon_sym_LT_AMP] = ACTIONS(369), + [anon_sym_GT_AMP] = ACTIONS(369), + [sym__special_characters] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(369), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, + [1550] = { + [sym__concat] = ACTIONS(3829), + [anon_sym_PIPE] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(3829), + [anon_sym_AMP_AMP] = ACTIONS(3829), + [anon_sym_PIPE_PIPE] = ACTIONS(3829), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3829), + [anon_sym_EQ_TILDE] = ACTIONS(3829), + [anon_sym_EQ_EQ] = ACTIONS(3829), + [anon_sym_EQ] = ACTIONS(3831), + [anon_sym_LT] = ACTIONS(3829), + [anon_sym_GT] = ACTIONS(3829), + [anon_sym_BANG_EQ] = ACTIONS(3829), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3829), + }, + [1551] = { + [sym__concat] = ACTIONS(3835), + [anon_sym_PIPE] = ACTIONS(3837), + [anon_sym_RPAREN] = ACTIONS(3835), + [anon_sym_AMP_AMP] = ACTIONS(3835), + [anon_sym_PIPE_PIPE] = ACTIONS(3835), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3835), + [anon_sym_EQ_TILDE] = ACTIONS(3835), + [anon_sym_EQ_EQ] = ACTIONS(3835), + [anon_sym_EQ] = ACTIONS(3837), + [anon_sym_LT] = ACTIONS(3835), + [anon_sym_GT] = ACTIONS(3835), + [anon_sym_BANG_EQ] = ACTIONS(3835), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3835), + }, + [1552] = { + [sym__concat] = ACTIONS(3920), + [anon_sym_PIPE] = ACTIONS(3922), + [anon_sym_RPAREN] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3920), + [anon_sym_PIPE_PIPE] = ACTIONS(3920), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3920), + [anon_sym_EQ_TILDE] = ACTIONS(3920), + [anon_sym_EQ_EQ] = ACTIONS(3920), + [anon_sym_EQ] = ACTIONS(3922), + [anon_sym_LT] = ACTIONS(3920), + [anon_sym_GT] = ACTIONS(3920), + [anon_sym_BANG_EQ] = ACTIONS(3920), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3920), + }, + [1553] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4514), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1554] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4516), + [sym_comment] = ACTIONS(53), + }, + [1555] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4518), + [sym_comment] = ACTIONS(53), + }, + [1556] = { + [anon_sym_RBRACE] = ACTIONS(4518), + [sym_comment] = ACTIONS(53), + }, + [1557] = { + [sym_concatenation] = STATE(1933), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1933), + [anon_sym_RBRACE] = ACTIONS(4520), + [anon_sym_EQ] = ACTIONS(4522), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4524), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4522), + [anon_sym_COLON_QMARK] = ACTIONS(4522), + [anon_sym_COLON_DASH] = ACTIONS(4522), + [anon_sym_PERCENT] = ACTIONS(4522), + [anon_sym_DASH] = ACTIONS(4522), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1558] = { + [sym__concat] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_RPAREN] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3936), + [anon_sym_EQ_TILDE] = ACTIONS(3936), + [anon_sym_EQ_EQ] = ACTIONS(3936), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3936), + [anon_sym_GT] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3936), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3936), + }, + [1559] = { + [sym_concatenation] = STATE(1935), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1935), + [anon_sym_RBRACE] = ACTIONS(4526), + [anon_sym_EQ] = ACTIONS(4528), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4530), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4528), + [anon_sym_COLON_QMARK] = ACTIONS(4528), + [anon_sym_COLON_DASH] = ACTIONS(4528), + [anon_sym_PERCENT] = ACTIONS(4528), + [anon_sym_DASH] = ACTIONS(4528), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1560] = { + [sym__concat] = ACTIONS(3946), + [anon_sym_PIPE] = ACTIONS(3948), + [anon_sym_RPAREN] = ACTIONS(3946), + [anon_sym_AMP_AMP] = ACTIONS(3946), + [anon_sym_PIPE_PIPE] = ACTIONS(3946), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3946), + [anon_sym_EQ_TILDE] = ACTIONS(3946), + [anon_sym_EQ_EQ] = ACTIONS(3946), + [anon_sym_EQ] = ACTIONS(3948), + [anon_sym_LT] = ACTIONS(3946), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_BANG_EQ] = ACTIONS(3946), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3946), + }, + [1561] = { + [sym_concatenation] = STATE(1937), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1937), + [anon_sym_RBRACE] = ACTIONS(4532), + [anon_sym_EQ] = ACTIONS(4534), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4536), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4534), + [anon_sym_COLON_QMARK] = ACTIONS(4534), + [anon_sym_COLON_DASH] = ACTIONS(4534), + [anon_sym_PERCENT] = ACTIONS(4534), + [anon_sym_DASH] = ACTIONS(4534), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1562] = { + [sym__concat] = ACTIONS(3956), + [anon_sym_PIPE] = ACTIONS(3958), + [anon_sym_RPAREN] = ACTIONS(3956), + [anon_sym_AMP_AMP] = ACTIONS(3956), + [anon_sym_PIPE_PIPE] = ACTIONS(3956), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3956), + [anon_sym_EQ_TILDE] = ACTIONS(3956), + [anon_sym_EQ_EQ] = ACTIONS(3956), + [anon_sym_EQ] = ACTIONS(3958), + [anon_sym_LT] = ACTIONS(3956), + [anon_sym_GT] = ACTIONS(3956), + [anon_sym_BANG_EQ] = ACTIONS(3956), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3956), + }, + [1563] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4538), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1564] = { + [sym__concat] = ACTIONS(3962), + [anon_sym_PIPE] = ACTIONS(3964), + [anon_sym_RPAREN] = ACTIONS(3962), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3962), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3962), + [anon_sym_EQ_TILDE] = ACTIONS(3962), + [anon_sym_EQ_EQ] = ACTIONS(3962), + [anon_sym_EQ] = ACTIONS(3964), + [anon_sym_LT] = ACTIONS(3962), + [anon_sym_GT] = ACTIONS(3962), + [anon_sym_BANG_EQ] = ACTIONS(3962), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3962), + }, + [1565] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4540), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1566] = { + [sym_variable_name] = ACTIONS(3337), + [anon_sym_PIPE] = ACTIONS(3339), + [anon_sym_RPAREN] = ACTIONS(3339), + [anon_sym_SEMI_SEMI] = ACTIONS(3339), + [anon_sym_PIPE_AMP] = ACTIONS(3339), + [anon_sym_AMP_AMP] = ACTIONS(3339), + [anon_sym_PIPE_PIPE] = ACTIONS(3339), + [sym__special_characters] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(3339), + [anon_sym_DOLLAR] = ACTIONS(3339), + [sym_raw_string] = ACTIONS(3339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3339), + [anon_sym_BQUOTE] = ACTIONS(3339), + [anon_sym_LT_LPAREN] = ACTIONS(3339), + [anon_sym_GT_LPAREN] = ACTIONS(3339), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3339), + [sym_word] = ACTIONS(3339), + [anon_sym_SEMI] = ACTIONS(3339), + [anon_sym_LF] = ACTIONS(3337), + [anon_sym_AMP] = ACTIONS(3339), + }, + [1567] = { + [sym__concat] = ACTIONS(3829), + [sym_variable_name] = ACTIONS(3829), + [anon_sym_PIPE] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(3831), + [anon_sym_SEMI_SEMI] = 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(3831), + [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(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3831), + [sym_word] = ACTIONS(3831), + [anon_sym_SEMI] = ACTIONS(3831), + [anon_sym_LF] = ACTIONS(3829), + [anon_sym_AMP] = ACTIONS(3831), + }, + [1568] = { + [sym__concat] = ACTIONS(3835), + [sym_variable_name] = ACTIONS(3835), + [anon_sym_PIPE] = ACTIONS(3837), + [anon_sym_RPAREN] = ACTIONS(3837), + [anon_sym_SEMI_SEMI] = ACTIONS(3837), + [anon_sym_PIPE_AMP] = ACTIONS(3837), + [anon_sym_AMP_AMP] = ACTIONS(3837), + [anon_sym_PIPE_PIPE] = ACTIONS(3837), + [sym__special_characters] = ACTIONS(3837), + [anon_sym_DQUOTE] = ACTIONS(3837), + [anon_sym_DOLLAR] = ACTIONS(3837), + [sym_raw_string] = ACTIONS(3837), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3837), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3837), + [anon_sym_BQUOTE] = ACTIONS(3837), + [anon_sym_LT_LPAREN] = ACTIONS(3837), + [anon_sym_GT_LPAREN] = ACTIONS(3837), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3837), + [sym_word] = ACTIONS(3837), + [anon_sym_SEMI] = ACTIONS(3837), + [anon_sym_LF] = ACTIONS(3835), + [anon_sym_AMP] = ACTIONS(3837), + }, + [1569] = { + [sym__concat] = ACTIONS(3920), + [sym_variable_name] = ACTIONS(3920), + [anon_sym_PIPE] = ACTIONS(3922), + [anon_sym_RPAREN] = ACTIONS(3922), + [anon_sym_SEMI_SEMI] = ACTIONS(3922), + [anon_sym_PIPE_AMP] = ACTIONS(3922), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3922), + [sym__special_characters] = ACTIONS(3922), + [anon_sym_DQUOTE] = ACTIONS(3922), + [anon_sym_DOLLAR] = ACTIONS(3922), + [sym_raw_string] = ACTIONS(3922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3922), + [anon_sym_BQUOTE] = ACTIONS(3922), + [anon_sym_LT_LPAREN] = ACTIONS(3922), + [anon_sym_GT_LPAREN] = ACTIONS(3922), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3922), + [sym_word] = ACTIONS(3922), + [anon_sym_SEMI] = ACTIONS(3922), + [anon_sym_LF] = ACTIONS(3920), + [anon_sym_AMP] = ACTIONS(3922), + }, + [1570] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4542), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1571] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4544), + [sym_comment] = ACTIONS(53), + }, + [1572] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4546), + [sym_comment] = ACTIONS(53), + }, + [1573] = { + [anon_sym_RBRACE] = ACTIONS(4546), + [sym_comment] = ACTIONS(53), + }, + [1574] = { + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1944), + [anon_sym_RBRACE] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4550), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4552), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_COLON_QMARK] = ACTIONS(4550), + [anon_sym_COLON_DASH] = ACTIONS(4550), + [anon_sym_PERCENT] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1575] = { + [sym__concat] = ACTIONS(3936), + [sym_variable_name] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_RPAREN] = ACTIONS(3938), + [anon_sym_SEMI_SEMI] = ACTIONS(3938), + [anon_sym_PIPE_AMP] = ACTIONS(3938), + [anon_sym_AMP_AMP] = ACTIONS(3938), + [anon_sym_PIPE_PIPE] = ACTIONS(3938), + [sym__special_characters] = ACTIONS(3938), + [anon_sym_DQUOTE] = ACTIONS(3938), + [anon_sym_DOLLAR] = ACTIONS(3938), + [sym_raw_string] = ACTIONS(3938), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3938), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3938), + [anon_sym_BQUOTE] = ACTIONS(3938), + [anon_sym_LT_LPAREN] = ACTIONS(3938), + [anon_sym_GT_LPAREN] = ACTIONS(3938), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3938), + [sym_word] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(3938), + [anon_sym_LF] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3938), + }, + [1576] = { + [sym_concatenation] = STATE(1946), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1946), + [anon_sym_RBRACE] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4556), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4558), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4556), + [anon_sym_COLON_QMARK] = ACTIONS(4556), + [anon_sym_COLON_DASH] = ACTIONS(4556), + [anon_sym_PERCENT] = ACTIONS(4556), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1577] = { + [sym__concat] = ACTIONS(3946), + [sym_variable_name] = ACTIONS(3946), + [anon_sym_PIPE] = ACTIONS(3948), + [anon_sym_RPAREN] = ACTIONS(3948), + [anon_sym_SEMI_SEMI] = ACTIONS(3948), + [anon_sym_PIPE_AMP] = ACTIONS(3948), + [anon_sym_AMP_AMP] = ACTIONS(3948), + [anon_sym_PIPE_PIPE] = ACTIONS(3948), + [sym__special_characters] = ACTIONS(3948), + [anon_sym_DQUOTE] = ACTIONS(3948), + [anon_sym_DOLLAR] = ACTIONS(3948), + [sym_raw_string] = ACTIONS(3948), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3948), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3948), + [anon_sym_BQUOTE] = ACTIONS(3948), + [anon_sym_LT_LPAREN] = ACTIONS(3948), + [anon_sym_GT_LPAREN] = ACTIONS(3948), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3948), + [sym_word] = ACTIONS(3948), + [anon_sym_SEMI] = ACTIONS(3948), + [anon_sym_LF] = ACTIONS(3946), + [anon_sym_AMP] = ACTIONS(3948), + }, + [1578] = { + [sym_concatenation] = STATE(1948), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1948), + [anon_sym_RBRACE] = ACTIONS(4560), + [anon_sym_EQ] = ACTIONS(4562), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_COLON_QMARK] = ACTIONS(4562), + [anon_sym_COLON_DASH] = ACTIONS(4562), + [anon_sym_PERCENT] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4562), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1579] = { + [sym__concat] = ACTIONS(3956), + [sym_variable_name] = ACTIONS(3956), + [anon_sym_PIPE] = ACTIONS(3958), + [anon_sym_RPAREN] = ACTIONS(3958), + [anon_sym_SEMI_SEMI] = ACTIONS(3958), + [anon_sym_PIPE_AMP] = ACTIONS(3958), + [anon_sym_AMP_AMP] = ACTIONS(3958), + [anon_sym_PIPE_PIPE] = ACTIONS(3958), + [sym__special_characters] = ACTIONS(3958), + [anon_sym_DQUOTE] = ACTIONS(3958), + [anon_sym_DOLLAR] = ACTIONS(3958), + [sym_raw_string] = ACTIONS(3958), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3958), + [anon_sym_BQUOTE] = ACTIONS(3958), + [anon_sym_LT_LPAREN] = ACTIONS(3958), + [anon_sym_GT_LPAREN] = ACTIONS(3958), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3958), + [sym_word] = ACTIONS(3958), + [anon_sym_SEMI] = ACTIONS(3958), + [anon_sym_LF] = ACTIONS(3956), + [anon_sym_AMP] = ACTIONS(3958), + }, + [1580] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1581] = { + [sym__concat] = ACTIONS(3962), + [sym_variable_name] = ACTIONS(3962), + [anon_sym_PIPE] = ACTIONS(3964), + [anon_sym_RPAREN] = ACTIONS(3964), + [anon_sym_SEMI_SEMI] = ACTIONS(3964), + [anon_sym_PIPE_AMP] = ACTIONS(3964), + [anon_sym_AMP_AMP] = ACTIONS(3964), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [sym__special_characters] = ACTIONS(3964), + [anon_sym_DQUOTE] = ACTIONS(3964), + [anon_sym_DOLLAR] = ACTIONS(3964), + [sym_raw_string] = ACTIONS(3964), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3964), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3964), + [anon_sym_BQUOTE] = ACTIONS(3964), + [anon_sym_LT_LPAREN] = ACTIONS(3964), + [anon_sym_GT_LPAREN] = ACTIONS(3964), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3964), + [sym_word] = ACTIONS(3964), + [anon_sym_SEMI] = ACTIONS(3964), + [anon_sym_LF] = ACTIONS(3962), + [anon_sym_AMP] = ACTIONS(3964), + }, + [1582] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4568), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1583] = { + [sym__concat] = ACTIONS(3829), + [anon_sym_PIPE] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(3831), + [anon_sym_SEMI_SEMI] = 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(3831), + [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(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3831), + [sym_word] = ACTIONS(3831), + [anon_sym_SEMI] = ACTIONS(3831), + [anon_sym_LF] = ACTIONS(3829), + [anon_sym_AMP] = ACTIONS(3831), + }, + [1584] = { + [sym__concat] = ACTIONS(3835), + [anon_sym_PIPE] = ACTIONS(3837), + [anon_sym_RPAREN] = ACTIONS(3837), + [anon_sym_SEMI_SEMI] = ACTIONS(3837), + [anon_sym_PIPE_AMP] = ACTIONS(3837), + [anon_sym_AMP_AMP] = ACTIONS(3837), + [anon_sym_PIPE_PIPE] = ACTIONS(3837), + [sym__special_characters] = ACTIONS(3837), + [anon_sym_DQUOTE] = ACTIONS(3837), + [anon_sym_DOLLAR] = ACTIONS(3837), + [sym_raw_string] = ACTIONS(3837), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3837), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3837), + [anon_sym_BQUOTE] = ACTIONS(3837), + [anon_sym_LT_LPAREN] = ACTIONS(3837), + [anon_sym_GT_LPAREN] = ACTIONS(3837), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3837), + [sym_word] = ACTIONS(3837), + [anon_sym_SEMI] = ACTIONS(3837), + [anon_sym_LF] = ACTIONS(3835), + [anon_sym_AMP] = ACTIONS(3837), + }, + [1585] = { + [sym__concat] = ACTIONS(3920), + [anon_sym_PIPE] = ACTIONS(3922), + [anon_sym_RPAREN] = ACTIONS(3922), + [anon_sym_SEMI_SEMI] = ACTIONS(3922), + [anon_sym_PIPE_AMP] = ACTIONS(3922), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3922), + [sym__special_characters] = ACTIONS(3922), + [anon_sym_DQUOTE] = ACTIONS(3922), + [anon_sym_DOLLAR] = ACTIONS(3922), + [sym_raw_string] = ACTIONS(3922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3922), + [anon_sym_BQUOTE] = ACTIONS(3922), + [anon_sym_LT_LPAREN] = ACTIONS(3922), + [anon_sym_GT_LPAREN] = ACTIONS(3922), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3922), + [sym_word] = ACTIONS(3922), + [anon_sym_SEMI] = ACTIONS(3922), + [anon_sym_LF] = ACTIONS(3920), + [anon_sym_AMP] = ACTIONS(3922), + }, + [1586] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4570), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1587] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4572), + [sym_comment] = ACTIONS(53), + }, + [1588] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4574), + [sym_comment] = ACTIONS(53), + }, + [1589] = { + [anon_sym_RBRACE] = ACTIONS(4574), + [sym_comment] = ACTIONS(53), + }, + [1590] = { + [sym_concatenation] = STATE(1955), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1955), + [anon_sym_RBRACE] = ACTIONS(4576), + [anon_sym_EQ] = ACTIONS(4578), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4580), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4578), + [anon_sym_COLON_QMARK] = ACTIONS(4578), + [anon_sym_COLON_DASH] = ACTIONS(4578), + [anon_sym_PERCENT] = ACTIONS(4578), + [anon_sym_DASH] = ACTIONS(4578), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -47444,41 +44117,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [1591] = { - [sym_subscript] = STATE(1995), - [sym_variable_name] = ACTIONS(4629), - [anon_sym_DOLLAR] = ACTIONS(4631), - [anon_sym_DASH] = ACTIONS(4631), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4633), - [anon_sym_STAR] = ACTIONS(4631), - [anon_sym_AT] = ACTIONS(4631), - [anon_sym_QMARK] = ACTIONS(4631), - [anon_sym_0] = ACTIONS(4635), - [anon_sym__] = ACTIONS(4635), + [sym__concat] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_RPAREN] = ACTIONS(3938), + [anon_sym_SEMI_SEMI] = ACTIONS(3938), + [anon_sym_PIPE_AMP] = ACTIONS(3938), + [anon_sym_AMP_AMP] = ACTIONS(3938), + [anon_sym_PIPE_PIPE] = ACTIONS(3938), + [sym__special_characters] = ACTIONS(3938), + [anon_sym_DQUOTE] = ACTIONS(3938), + [anon_sym_DOLLAR] = ACTIONS(3938), + [sym_raw_string] = ACTIONS(3938), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3938), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3938), + [anon_sym_BQUOTE] = ACTIONS(3938), + [anon_sym_LT_LPAREN] = ACTIONS(3938), + [anon_sym_GT_LPAREN] = ACTIONS(3938), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3938), + [sym_word] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(3938), + [anon_sym_LF] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3938), }, [1592] = { - [sym_concatenation] = STATE(1998), + [sym_concatenation] = STATE(1957), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1998), - [anon_sym_RBRACE] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4639), + [aux_sym_expansion_repeat1] = STATE(1957), + [anon_sym_RBRACE] = ACTIONS(4582), + [anon_sym_EQ] = ACTIONS(4584), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4641), + [anon_sym_POUND] = ACTIONS(4586), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(4643), - [anon_sym_COLON] = ACTIONS(4639), - [anon_sym_COLON_QMARK] = ACTIONS(4639), - [anon_sym_COLON_DASH] = ACTIONS(4639), - [anon_sym_PERCENT] = ACTIONS(4639), - [anon_sym_DASH] = ACTIONS(4639), + [anon_sym_COLON] = ACTIONS(4584), + [anon_sym_COLON_QMARK] = ACTIONS(4584), + [anon_sym_COLON_DASH] = ACTIONS(4584), + [anon_sym_PERCENT] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4584), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -47487,209 +44170,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [1593] = { - [sym_concatenation] = STATE(2001), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2001), - [anon_sym_RBRACE] = ACTIONS(4645), - [anon_sym_EQ] = ACTIONS(4647), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4649), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(4651), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym__concat] = ACTIONS(3946), + [anon_sym_PIPE] = ACTIONS(3948), + [anon_sym_RPAREN] = ACTIONS(3948), + [anon_sym_SEMI_SEMI] = ACTIONS(3948), + [anon_sym_PIPE_AMP] = ACTIONS(3948), + [anon_sym_AMP_AMP] = ACTIONS(3948), + [anon_sym_PIPE_PIPE] = ACTIONS(3948), + [sym__special_characters] = ACTIONS(3948), + [anon_sym_DQUOTE] = ACTIONS(3948), + [anon_sym_DOLLAR] = ACTIONS(3948), + [sym_raw_string] = ACTIONS(3948), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3948), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3948), + [anon_sym_BQUOTE] = ACTIONS(3948), + [anon_sym_LT_LPAREN] = ACTIONS(3948), + [anon_sym_GT_LPAREN] = ACTIONS(3948), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3948), + [sym_word] = ACTIONS(3948), + [anon_sym_SEMI] = ACTIONS(3948), + [anon_sym_LF] = ACTIONS(3946), + [anon_sym_AMP] = ACTIONS(3948), }, [1594] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(4653), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [sym_comment] = ACTIONS(53), - }, - [1595] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(4653), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [1596] = { - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_PIPE_AMP] = ACTIONS(925), - [anon_sym_AMP_AMP] = ACTIONS(927), - [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_BQUOTE] = ACTIONS(4653), - [sym_comment] = ACTIONS(53), - }, - [1597] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_PIPE_AMP] = ACTIONS(925), - [anon_sym_AMP_AMP] = ACTIONS(927), - [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(4653), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [1598] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(4655), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [sym_comment] = ACTIONS(53), - }, - [1599] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(4655), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [1600] = { - [sym__concat] = ACTIONS(3917), - [anon_sym_PIPE] = ACTIONS(3919), - [anon_sym_RPAREN] = ACTIONS(3917), - [anon_sym_AMP_AMP] = ACTIONS(3917), - [anon_sym_PIPE_PIPE] = ACTIONS(3917), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3917), - [anon_sym_EQ_TILDE] = ACTIONS(3917), - [anon_sym_EQ_EQ] = ACTIONS(3917), - [anon_sym_EQ] = ACTIONS(3919), - [anon_sym_LT] = ACTIONS(3917), - [anon_sym_GT] = ACTIONS(3917), - [anon_sym_BANG_EQ] = ACTIONS(3917), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3917), - }, - [1601] = { - [sym__concat] = ACTIONS(3923), - [anon_sym_PIPE] = ACTIONS(3925), - [anon_sym_RPAREN] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3923), - [anon_sym_PIPE_PIPE] = ACTIONS(3923), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3923), - [anon_sym_EQ_TILDE] = ACTIONS(3923), - [anon_sym_EQ_EQ] = ACTIONS(3923), - [anon_sym_EQ] = ACTIONS(3925), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_BANG_EQ] = ACTIONS(3923), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3923), - }, - [1602] = { - [sym__concat] = ACTIONS(4008), - [anon_sym_PIPE] = ACTIONS(4010), - [anon_sym_RPAREN] = ACTIONS(4008), - [anon_sym_AMP_AMP] = ACTIONS(4008), - [anon_sym_PIPE_PIPE] = ACTIONS(4008), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4008), - [anon_sym_EQ_TILDE] = ACTIONS(4008), - [anon_sym_EQ_EQ] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4010), - [anon_sym_LT] = ACTIONS(4008), - [anon_sym_GT] = ACTIONS(4008), - [anon_sym_BANG_EQ] = ACTIONS(4008), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4008), - }, - [1603] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(1959), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(1959), + [anon_sym_RBRACE] = ACTIONS(4588), + [anon_sym_EQ] = ACTIONS(4590), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(4592), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_COLON] = ACTIONS(4590), + [anon_sym_COLON_QMARK] = ACTIONS(4590), + [anon_sym_COLON_DASH] = ACTIONS(4590), + [anon_sym_PERCENT] = ACTIONS(4590), + [anon_sym_DASH] = ACTIONS(4590), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -47697,352 +44222,550 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, + [1595] = { + [sym__concat] = ACTIONS(3956), + [anon_sym_PIPE] = ACTIONS(3958), + [anon_sym_RPAREN] = ACTIONS(3958), + [anon_sym_SEMI_SEMI] = ACTIONS(3958), + [anon_sym_PIPE_AMP] = ACTIONS(3958), + [anon_sym_AMP_AMP] = ACTIONS(3958), + [anon_sym_PIPE_PIPE] = ACTIONS(3958), + [sym__special_characters] = ACTIONS(3958), + [anon_sym_DQUOTE] = ACTIONS(3958), + [anon_sym_DOLLAR] = ACTIONS(3958), + [sym_raw_string] = ACTIONS(3958), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3958), + [anon_sym_BQUOTE] = ACTIONS(3958), + [anon_sym_LT_LPAREN] = ACTIONS(3958), + [anon_sym_GT_LPAREN] = ACTIONS(3958), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3958), + [sym_word] = ACTIONS(3958), + [anon_sym_SEMI] = ACTIONS(3958), + [anon_sym_LF] = ACTIONS(3956), + [anon_sym_AMP] = ACTIONS(3958), + }, + [1596] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4594), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1597] = { + [sym__concat] = ACTIONS(3962), + [anon_sym_PIPE] = ACTIONS(3964), + [anon_sym_RPAREN] = ACTIONS(3964), + [anon_sym_SEMI_SEMI] = ACTIONS(3964), + [anon_sym_PIPE_AMP] = ACTIONS(3964), + [anon_sym_AMP_AMP] = ACTIONS(3964), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [sym__special_characters] = ACTIONS(3964), + [anon_sym_DQUOTE] = ACTIONS(3964), + [anon_sym_DOLLAR] = ACTIONS(3964), + [sym_raw_string] = ACTIONS(3964), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3964), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3964), + [anon_sym_BQUOTE] = ACTIONS(3964), + [anon_sym_LT_LPAREN] = ACTIONS(3964), + [anon_sym_GT_LPAREN] = ACTIONS(3964), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3964), + [sym_word] = ACTIONS(3964), + [anon_sym_SEMI] = ACTIONS(3964), + [anon_sym_LF] = ACTIONS(3962), + [anon_sym_AMP] = ACTIONS(3964), + }, + [1598] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4596), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1599] = { + [sym_file_descriptor] = ACTIONS(3829), + [sym__concat] = ACTIONS(3829), + [sym_variable_name] = ACTIONS(3829), + [anon_sym_PIPE] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(3829), + [anon_sym_PIPE_AMP] = ACTIONS(3829), + [anon_sym_AMP_AMP] = ACTIONS(3829), + [anon_sym_PIPE_PIPE] = ACTIONS(3829), + [anon_sym_LT] = ACTIONS(3831), + [anon_sym_GT] = ACTIONS(3831), + [anon_sym_GT_GT] = ACTIONS(3829), + [anon_sym_AMP_GT] = ACTIONS(3831), + [anon_sym_AMP_GT_GT] = ACTIONS(3829), + [anon_sym_LT_AMP] = ACTIONS(3829), + [anon_sym_GT_AMP] = ACTIONS(3829), + [sym__special_characters] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(3829), + [anon_sym_DOLLAR] = ACTIONS(3831), + [sym_raw_string] = ACTIONS(3829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3829), + [anon_sym_BQUOTE] = ACTIONS(3829), + [anon_sym_LT_LPAREN] = ACTIONS(3829), + [anon_sym_GT_LPAREN] = ACTIONS(3829), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3829), + }, + [1600] = { + [sym_file_descriptor] = ACTIONS(3835), + [sym__concat] = ACTIONS(3835), + [sym_variable_name] = ACTIONS(3835), + [anon_sym_PIPE] = ACTIONS(3837), + [anon_sym_RPAREN] = ACTIONS(3835), + [anon_sym_PIPE_AMP] = ACTIONS(3835), + [anon_sym_AMP_AMP] = ACTIONS(3835), + [anon_sym_PIPE_PIPE] = ACTIONS(3835), + [anon_sym_LT] = ACTIONS(3837), + [anon_sym_GT] = ACTIONS(3837), + [anon_sym_GT_GT] = ACTIONS(3835), + [anon_sym_AMP_GT] = ACTIONS(3837), + [anon_sym_AMP_GT_GT] = ACTIONS(3835), + [anon_sym_LT_AMP] = ACTIONS(3835), + [anon_sym_GT_AMP] = ACTIONS(3835), + [sym__special_characters] = ACTIONS(3835), + [anon_sym_DQUOTE] = ACTIONS(3835), + [anon_sym_DOLLAR] = ACTIONS(3837), + [sym_raw_string] = ACTIONS(3835), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3835), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3835), + [anon_sym_BQUOTE] = ACTIONS(3835), + [anon_sym_LT_LPAREN] = ACTIONS(3835), + [anon_sym_GT_LPAREN] = ACTIONS(3835), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3835), + }, + [1601] = { + [sym_file_descriptor] = ACTIONS(3920), + [sym__concat] = ACTIONS(3920), + [sym_variable_name] = ACTIONS(3920), + [anon_sym_PIPE] = ACTIONS(3922), + [anon_sym_RPAREN] = ACTIONS(3920), + [anon_sym_PIPE_AMP] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3920), + [anon_sym_PIPE_PIPE] = ACTIONS(3920), + [anon_sym_LT] = ACTIONS(3922), + [anon_sym_GT] = ACTIONS(3922), + [anon_sym_GT_GT] = ACTIONS(3920), + [anon_sym_AMP_GT] = ACTIONS(3922), + [anon_sym_AMP_GT_GT] = ACTIONS(3920), + [anon_sym_LT_AMP] = ACTIONS(3920), + [anon_sym_GT_AMP] = ACTIONS(3920), + [sym__special_characters] = ACTIONS(3920), + [anon_sym_DQUOTE] = ACTIONS(3920), + [anon_sym_DOLLAR] = ACTIONS(3922), + [sym_raw_string] = ACTIONS(3920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3920), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3920), + [anon_sym_BQUOTE] = ACTIONS(3920), + [anon_sym_LT_LPAREN] = ACTIONS(3920), + [anon_sym_GT_LPAREN] = ACTIONS(3920), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3920), + }, + [1602] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4598), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1603] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4600), + [sym_comment] = ACTIONS(53), + }, [1604] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(4659), + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4602), [sym_comment] = ACTIONS(53), }, [1605] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(4661), + [anon_sym_RBRACE] = ACTIONS(4602), [sym_comment] = ACTIONS(53), }, [1606] = { - [anon_sym_RBRACE] = ACTIONS(4661), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1966), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1966), + [anon_sym_RBRACE] = ACTIONS(4604), + [anon_sym_EQ] = ACTIONS(4606), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4608), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4606), + [anon_sym_COLON_QMARK] = ACTIONS(4606), + [anon_sym_COLON_DASH] = ACTIONS(4606), + [anon_sym_PERCENT] = ACTIONS(4606), + [anon_sym_DASH] = ACTIONS(4606), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1607] = { - [sym_concatenation] = STATE(2008), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2008), - [anon_sym_RBRACE] = ACTIONS(4663), - [anon_sym_EQ] = ACTIONS(4665), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4667), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_COLON_QMARK] = ACTIONS(4665), - [anon_sym_COLON_DASH] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4665), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(3936), + [sym__concat] = ACTIONS(3936), + [sym_variable_name] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_RPAREN] = ACTIONS(3936), + [anon_sym_PIPE_AMP] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_GT_GT] = ACTIONS(3936), + [anon_sym_AMP_GT] = ACTIONS(3938), + [anon_sym_AMP_GT_GT] = ACTIONS(3936), + [anon_sym_LT_AMP] = ACTIONS(3936), + [anon_sym_GT_AMP] = ACTIONS(3936), + [sym__special_characters] = ACTIONS(3936), + [anon_sym_DQUOTE] = ACTIONS(3936), + [anon_sym_DOLLAR] = ACTIONS(3938), + [sym_raw_string] = ACTIONS(3936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(3936), + [anon_sym_LT_LPAREN] = ACTIONS(3936), + [anon_sym_GT_LPAREN] = ACTIONS(3936), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3936), }, [1608] = { - [sym__concat] = ACTIONS(4024), - [anon_sym_PIPE] = ACTIONS(4026), - [anon_sym_RPAREN] = ACTIONS(4024), - [anon_sym_AMP_AMP] = ACTIONS(4024), - [anon_sym_PIPE_PIPE] = ACTIONS(4024), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4024), - [anon_sym_EQ_TILDE] = ACTIONS(4024), - [anon_sym_EQ_EQ] = ACTIONS(4024), - [anon_sym_EQ] = ACTIONS(4026), - [anon_sym_LT] = ACTIONS(4024), - [anon_sym_GT] = ACTIONS(4024), - [anon_sym_BANG_EQ] = ACTIONS(4024), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4024), + [sym_concatenation] = STATE(1968), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1968), + [anon_sym_RBRACE] = ACTIONS(4610), + [anon_sym_EQ] = ACTIONS(4612), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4614), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4612), + [anon_sym_COLON_QMARK] = ACTIONS(4612), + [anon_sym_COLON_DASH] = ACTIONS(4612), + [anon_sym_PERCENT] = ACTIONS(4612), + [anon_sym_DASH] = ACTIONS(4612), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1609] = { - [sym_concatenation] = STATE(2010), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2010), - [anon_sym_RBRACE] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4671), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4673), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4671), - [anon_sym_COLON_QMARK] = ACTIONS(4671), - [anon_sym_COLON_DASH] = ACTIONS(4671), - [anon_sym_PERCENT] = ACTIONS(4671), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(3946), + [sym__concat] = ACTIONS(3946), + [sym_variable_name] = ACTIONS(3946), + [anon_sym_PIPE] = ACTIONS(3948), + [anon_sym_RPAREN] = ACTIONS(3946), + [anon_sym_PIPE_AMP] = ACTIONS(3946), + [anon_sym_AMP_AMP] = ACTIONS(3946), + [anon_sym_PIPE_PIPE] = ACTIONS(3946), + [anon_sym_LT] = ACTIONS(3948), + [anon_sym_GT] = ACTIONS(3948), + [anon_sym_GT_GT] = ACTIONS(3946), + [anon_sym_AMP_GT] = ACTIONS(3948), + [anon_sym_AMP_GT_GT] = ACTIONS(3946), + [anon_sym_LT_AMP] = ACTIONS(3946), + [anon_sym_GT_AMP] = ACTIONS(3946), + [sym__special_characters] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(3946), + [anon_sym_DOLLAR] = ACTIONS(3948), + [sym_raw_string] = ACTIONS(3946), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3946), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3946), + [anon_sym_BQUOTE] = ACTIONS(3946), + [anon_sym_LT_LPAREN] = ACTIONS(3946), + [anon_sym_GT_LPAREN] = ACTIONS(3946), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3946), }, [1610] = { - [sym__concat] = ACTIONS(4034), - [anon_sym_PIPE] = ACTIONS(4036), - [anon_sym_RPAREN] = ACTIONS(4034), - [anon_sym_AMP_AMP] = ACTIONS(4034), - [anon_sym_PIPE_PIPE] = ACTIONS(4034), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4034), - [anon_sym_EQ_TILDE] = ACTIONS(4034), - [anon_sym_EQ_EQ] = ACTIONS(4034), - [anon_sym_EQ] = ACTIONS(4036), - [anon_sym_LT] = ACTIONS(4034), - [anon_sym_GT] = ACTIONS(4034), - [anon_sym_BANG_EQ] = ACTIONS(4034), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4034), + [sym_concatenation] = STATE(1970), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1970), + [anon_sym_RBRACE] = ACTIONS(4616), + [anon_sym_EQ] = ACTIONS(4618), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4620), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4618), + [anon_sym_COLON_QMARK] = ACTIONS(4618), + [anon_sym_COLON_DASH] = ACTIONS(4618), + [anon_sym_PERCENT] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1611] = { - [sym_concatenation] = STATE(2012), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2012), - [anon_sym_RBRACE] = ACTIONS(4675), - [anon_sym_EQ] = ACTIONS(4677), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4679), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_COLON_QMARK] = ACTIONS(4677), - [anon_sym_COLON_DASH] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4677), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(3956), + [sym__concat] = ACTIONS(3956), + [sym_variable_name] = ACTIONS(3956), + [anon_sym_PIPE] = ACTIONS(3958), + [anon_sym_RPAREN] = ACTIONS(3956), + [anon_sym_PIPE_AMP] = ACTIONS(3956), + [anon_sym_AMP_AMP] = ACTIONS(3956), + [anon_sym_PIPE_PIPE] = ACTIONS(3956), + [anon_sym_LT] = ACTIONS(3958), + [anon_sym_GT] = ACTIONS(3958), + [anon_sym_GT_GT] = ACTIONS(3956), + [anon_sym_AMP_GT] = ACTIONS(3958), + [anon_sym_AMP_GT_GT] = ACTIONS(3956), + [anon_sym_LT_AMP] = ACTIONS(3956), + [anon_sym_GT_AMP] = ACTIONS(3956), + [sym__special_characters] = ACTIONS(3956), + [anon_sym_DQUOTE] = ACTIONS(3956), + [anon_sym_DOLLAR] = ACTIONS(3958), + [sym_raw_string] = ACTIONS(3956), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3956), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3956), + [anon_sym_BQUOTE] = ACTIONS(3956), + [anon_sym_LT_LPAREN] = ACTIONS(3956), + [anon_sym_GT_LPAREN] = ACTIONS(3956), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3956), }, [1612] = { - [sym__concat] = ACTIONS(4044), - [anon_sym_PIPE] = ACTIONS(4046), - [anon_sym_RPAREN] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_PIPE_PIPE] = ACTIONS(4044), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4044), - [anon_sym_EQ_TILDE] = ACTIONS(4044), - [anon_sym_EQ_EQ] = ACTIONS(4044), - [anon_sym_EQ] = ACTIONS(4046), - [anon_sym_LT] = ACTIONS(4044), - [anon_sym_GT] = ACTIONS(4044), - [anon_sym_BANG_EQ] = ACTIONS(4044), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4044), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4622), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1613] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(3962), + [sym__concat] = ACTIONS(3962), + [sym_variable_name] = ACTIONS(3962), + [anon_sym_PIPE] = ACTIONS(3964), + [anon_sym_RPAREN] = ACTIONS(3962), + [anon_sym_PIPE_AMP] = ACTIONS(3962), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3962), + [anon_sym_LT] = ACTIONS(3964), + [anon_sym_GT] = ACTIONS(3964), + [anon_sym_GT_GT] = ACTIONS(3962), + [anon_sym_AMP_GT] = ACTIONS(3964), + [anon_sym_AMP_GT_GT] = ACTIONS(3962), + [anon_sym_LT_AMP] = ACTIONS(3962), + [anon_sym_GT_AMP] = ACTIONS(3962), + [sym__special_characters] = ACTIONS(3962), + [anon_sym_DQUOTE] = ACTIONS(3962), + [anon_sym_DOLLAR] = ACTIONS(3964), + [sym_raw_string] = ACTIONS(3962), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3962), + [anon_sym_BQUOTE] = ACTIONS(3962), + [anon_sym_LT_LPAREN] = ACTIONS(3962), + [anon_sym_GT_LPAREN] = ACTIONS(3962), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3962), }, [1614] = { - [sym__concat] = ACTIONS(4050), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_RPAREN] = ACTIONS(4050), - [anon_sym_AMP_AMP] = ACTIONS(4050), - [anon_sym_PIPE_PIPE] = ACTIONS(4050), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4050), - [anon_sym_EQ_TILDE] = ACTIONS(4050), - [anon_sym_EQ_EQ] = ACTIONS(4050), - [anon_sym_EQ] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(4050), - [anon_sym_GT] = ACTIONS(4050), - [anon_sym_BANG_EQ] = ACTIONS(4050), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4050), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4624), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1615] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4683), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym__concat] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3831), + [sym__string_content] = ACTIONS(3829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3831), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3831), + [anon_sym_BQUOTE] = ACTIONS(3831), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), }, [1616] = { - [sym_variable_name] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3381), - [anon_sym_RPAREN] = ACTIONS(3381), - [anon_sym_SEMI_SEMI] = ACTIONS(3381), - [anon_sym_PIPE_AMP] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_PIPE_PIPE] = ACTIONS(3381), - [sym__special_characters] = ACTIONS(3381), - [anon_sym_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3381), - [sym_raw_string] = ACTIONS(3381), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3381), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3381), - [anon_sym_BQUOTE] = ACTIONS(3381), - [anon_sym_LT_LPAREN] = ACTIONS(3381), - [anon_sym_GT_LPAREN] = ACTIONS(3381), + [sym__concat] = ACTIONS(3835), + [anon_sym_DQUOTE] = ACTIONS(3837), + [anon_sym_DOLLAR] = ACTIONS(3837), + [sym__string_content] = ACTIONS(3835), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3837), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3837), + [anon_sym_BQUOTE] = ACTIONS(3837), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3381), - [sym_word] = ACTIONS(3381), - [anon_sym_SEMI] = ACTIONS(3381), - [anon_sym_LF] = ACTIONS(3379), - [anon_sym_AMP] = ACTIONS(3381), }, [1617] = { - [sym__concat] = ACTIONS(3917), - [sym_variable_name] = ACTIONS(3917), - [anon_sym_PIPE] = ACTIONS(3919), - [anon_sym_RPAREN] = ACTIONS(3919), - [anon_sym_SEMI_SEMI] = ACTIONS(3919), - [anon_sym_PIPE_AMP] = ACTIONS(3919), - [anon_sym_AMP_AMP] = ACTIONS(3919), - [anon_sym_PIPE_PIPE] = ACTIONS(3919), - [sym__special_characters] = ACTIONS(3919), - [anon_sym_DQUOTE] = ACTIONS(3919), - [anon_sym_DOLLAR] = ACTIONS(3919), - [sym_raw_string] = ACTIONS(3919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3919), - [anon_sym_BQUOTE] = ACTIONS(3919), - [anon_sym_LT_LPAREN] = ACTIONS(3919), - [anon_sym_GT_LPAREN] = ACTIONS(3919), + [sym__concat] = ACTIONS(3920), + [anon_sym_DQUOTE] = ACTIONS(3922), + [anon_sym_DOLLAR] = ACTIONS(3922), + [sym__string_content] = ACTIONS(3920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3922), + [anon_sym_BQUOTE] = ACTIONS(3922), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3919), - [sym_word] = ACTIONS(3919), - [anon_sym_SEMI] = ACTIONS(3919), - [anon_sym_LF] = ACTIONS(3917), - [anon_sym_AMP] = ACTIONS(3919), }, [1618] = { - [sym__concat] = ACTIONS(3923), - [sym_variable_name] = ACTIONS(3923), - [anon_sym_PIPE] = ACTIONS(3925), - [anon_sym_RPAREN] = ACTIONS(3925), - [anon_sym_SEMI_SEMI] = ACTIONS(3925), - [anon_sym_PIPE_AMP] = ACTIONS(3925), - [anon_sym_AMP_AMP] = ACTIONS(3925), - [anon_sym_PIPE_PIPE] = ACTIONS(3925), - [sym__special_characters] = ACTIONS(3925), - [anon_sym_DQUOTE] = ACTIONS(3925), - [anon_sym_DOLLAR] = ACTIONS(3925), - [sym_raw_string] = ACTIONS(3925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3925), - [anon_sym_BQUOTE] = ACTIONS(3925), - [anon_sym_LT_LPAREN] = ACTIONS(3925), - [anon_sym_GT_LPAREN] = ACTIONS(3925), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3925), - [sym_word] = ACTIONS(3925), - [anon_sym_SEMI] = ACTIONS(3925), - [anon_sym_LF] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3925), - }, - [1619] = { - [sym__concat] = ACTIONS(4008), - [sym_variable_name] = ACTIONS(4008), - [anon_sym_PIPE] = ACTIONS(4010), - [anon_sym_RPAREN] = ACTIONS(4010), - [anon_sym_SEMI_SEMI] = ACTIONS(4010), - [anon_sym_PIPE_AMP] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym__special_characters] = ACTIONS(4010), - [anon_sym_DQUOTE] = ACTIONS(4010), - [anon_sym_DOLLAR] = ACTIONS(4010), - [sym_raw_string] = ACTIONS(4010), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4010), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4010), - [anon_sym_BQUOTE] = ACTIONS(4010), - [anon_sym_LT_LPAREN] = ACTIONS(4010), - [anon_sym_GT_LPAREN] = ACTIONS(4010), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4010), - [sym_word] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4010), - [anon_sym_LF] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4010), - }, - [1620] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4626), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -48050,32 +44773,447 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, + [1619] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4628), + [sym_comment] = ACTIONS(53), + }, + [1620] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4630), + [sym_comment] = ACTIONS(53), + }, [1621] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(4687), + [anon_sym_RBRACE] = ACTIONS(4630), [sym_comment] = ACTIONS(53), }, [1622] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(4689), - [sym_comment] = ACTIONS(53), - }, - [1623] = { - [anon_sym_RBRACE] = ACTIONS(4689), - [sym_comment] = ACTIONS(53), - }, - [1624] = { - [sym_concatenation] = STATE(2019), + [sym_concatenation] = STATE(1977), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2019), - [anon_sym_RBRACE] = ACTIONS(4691), + [aux_sym_expansion_repeat1] = STATE(1977), + [anon_sym_RBRACE] = ACTIONS(4632), + [anon_sym_EQ] = ACTIONS(4634), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4634), + [anon_sym_COLON_QMARK] = ACTIONS(4634), + [anon_sym_COLON_DASH] = ACTIONS(4634), + [anon_sym_PERCENT] = ACTIONS(4634), + [anon_sym_DASH] = ACTIONS(4634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1623] = { + [sym__concat] = ACTIONS(3936), + [anon_sym_DQUOTE] = ACTIONS(3938), + [anon_sym_DOLLAR] = ACTIONS(3938), + [sym__string_content] = ACTIONS(3936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3938), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3938), + [anon_sym_BQUOTE] = ACTIONS(3938), + [sym_comment] = ACTIONS(177), + }, + [1624] = { + [sym_concatenation] = STATE(1979), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1979), + [anon_sym_RBRACE] = ACTIONS(4638), + [anon_sym_EQ] = ACTIONS(4640), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4642), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4640), + [anon_sym_COLON_QMARK] = ACTIONS(4640), + [anon_sym_COLON_DASH] = ACTIONS(4640), + [anon_sym_PERCENT] = ACTIONS(4640), + [anon_sym_DASH] = ACTIONS(4640), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1625] = { + [sym__concat] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(3948), + [anon_sym_DOLLAR] = ACTIONS(3948), + [sym__string_content] = ACTIONS(3946), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3948), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3948), + [anon_sym_BQUOTE] = ACTIONS(3948), + [sym_comment] = ACTIONS(177), + }, + [1626] = { + [sym_concatenation] = STATE(1981), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1981), + [anon_sym_RBRACE] = ACTIONS(4644), + [anon_sym_EQ] = ACTIONS(4646), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1627] = { + [sym__concat] = ACTIONS(3956), + [anon_sym_DQUOTE] = ACTIONS(3958), + [anon_sym_DOLLAR] = ACTIONS(3958), + [sym__string_content] = ACTIONS(3956), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3958), + [anon_sym_BQUOTE] = ACTIONS(3958), + [sym_comment] = ACTIONS(177), + }, + [1628] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4650), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1629] = { + [sym__concat] = ACTIONS(3962), + [anon_sym_DQUOTE] = ACTIONS(3964), + [anon_sym_DOLLAR] = ACTIONS(3964), + [sym__string_content] = ACTIONS(3962), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3964), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3964), + [anon_sym_BQUOTE] = ACTIONS(3964), + [sym_comment] = ACTIONS(177), + }, + [1630] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1631] = { + [sym__concat] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(3289), + [anon_sym_EQ] = ACTIONS(4656), + [sym__special_characters] = ACTIONS(4656), + [anon_sym_DQUOTE] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(4656), + [sym_raw_string] = ACTIONS(3289), + [anon_sym_POUND] = ACTIONS(3289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3289), + [aux_sym_SLASH] = ACTIONS(3289), + [anon_sym_COLON] = ACTIONS(4656), + [anon_sym_COLON_QMARK] = ACTIONS(4656), + [anon_sym_COLON_DASH] = ACTIONS(4656), + [anon_sym_PERCENT] = ACTIONS(4656), + [anon_sym_DASH] = ACTIONS(4656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3289), + [anon_sym_BQUOTE] = ACTIONS(3289), + [anon_sym_LT_LPAREN] = ACTIONS(3289), + [anon_sym_GT_LPAREN] = ACTIONS(3289), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4656), + }, + [1632] = { + [anon_sym_RBRACE] = ACTIONS(3289), + [anon_sym_EQ] = ACTIONS(4656), + [sym__special_characters] = ACTIONS(4656), + [anon_sym_DQUOTE] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(4656), + [sym_raw_string] = ACTIONS(3289), + [anon_sym_POUND] = ACTIONS(3289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3289), + [aux_sym_SLASH] = ACTIONS(3289), + [anon_sym_COLON] = ACTIONS(4656), + [anon_sym_COLON_QMARK] = ACTIONS(4656), + [anon_sym_COLON_DASH] = ACTIONS(4656), + [anon_sym_PERCENT] = ACTIONS(4656), + [anon_sym_DASH] = ACTIONS(4656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3289), + [anon_sym_BQUOTE] = ACTIONS(3289), + [anon_sym_LT_LPAREN] = ACTIONS(3289), + [anon_sym_GT_LPAREN] = ACTIONS(3289), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4656), + }, + [1633] = { + [sym__concat] = ACTIONS(4658), + [anon_sym_RBRACE] = ACTIONS(3293), + [anon_sym_EQ] = ACTIONS(4660), + [sym__special_characters] = ACTIONS(4660), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(4660), + [sym_raw_string] = ACTIONS(3293), + [anon_sym_POUND] = ACTIONS(3293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), + [aux_sym_SLASH] = ACTIONS(3293), + [anon_sym_COLON] = ACTIONS(4660), + [anon_sym_COLON_QMARK] = ACTIONS(4660), + [anon_sym_COLON_DASH] = ACTIONS(4660), + [anon_sym_PERCENT] = ACTIONS(4660), + [anon_sym_DASH] = ACTIONS(4660), + [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(177), + [sym_word] = ACTIONS(4660), + }, + [1634] = { + [anon_sym_RBRACE] = ACTIONS(3293), + [anon_sym_EQ] = ACTIONS(4660), + [sym__special_characters] = ACTIONS(4660), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(4660), + [sym_raw_string] = ACTIONS(3293), + [anon_sym_POUND] = ACTIONS(3293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), + [aux_sym_SLASH] = ACTIONS(3293), + [anon_sym_COLON] = ACTIONS(4660), + [anon_sym_COLON_QMARK] = ACTIONS(4660), + [anon_sym_COLON_DASH] = ACTIONS(4660), + [anon_sym_PERCENT] = ACTIONS(4660), + [anon_sym_DASH] = ACTIONS(4660), + [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(177), + [sym_word] = ACTIONS(4660), + }, + [1635] = { + [sym__concat] = ACTIONS(1642), + [anon_sym_RBRACE] = ACTIONS(1642), + [sym_comment] = ACTIONS(53), + }, + [1636] = { + [aux_sym_concatenation_repeat1] = STATE(1636), + [sym__concat] = ACTIONS(4662), + [anon_sym_RBRACE] = ACTIONS(1642), + [sym_comment] = ACTIONS(53), + }, + [1637] = { + [sym__concat] = ACTIONS(1691), + [anon_sym_RBRACE] = ACTIONS(1691), + [sym_comment] = ACTIONS(53), + }, + [1638] = { + [sym_concatenation] = STATE(1989), + [sym_string] = STATE(1988), + [sym_simple_expansion] = STATE(1988), + [sym_string_expansion] = STATE(1988), + [sym_expansion] = STATE(1988), + [sym_command_substitution] = STATE(1988), + [sym_process_substitution] = STATE(1988), + [anon_sym_RBRACE] = ACTIONS(4665), + [sym__special_characters] = ACTIONS(4667), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(4669), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4669), + }, + [1639] = { + [sym__concat] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [sym_comment] = ACTIONS(53), + }, + [1640] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4671), + }, + [1641] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4673), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1642] = { + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(4675), + [sym_comment] = ACTIONS(53), + }, + [1643] = { + [sym_concatenation] = STATE(1995), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1995), + [anon_sym_RBRACE] = ACTIONS(4677), + [anon_sym_EQ] = ACTIONS(4679), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(4683), + [anon_sym_COLON] = ACTIONS(4679), + [anon_sym_COLON_QMARK] = ACTIONS(4679), + [anon_sym_COLON_DASH] = ACTIONS(4679), + [anon_sym_PERCENT] = ACTIONS(4679), + [anon_sym_DASH] = ACTIONS(4679), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1644] = { + [sym_concatenation] = STATE(1998), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(1998), + [anon_sym_RBRACE] = ACTIONS(4685), + [anon_sym_EQ] = ACTIONS(4687), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4689), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(4691), + [anon_sym_COLON] = ACTIONS(4687), + [anon_sym_COLON_QMARK] = ACTIONS(4687), + [anon_sym_COLON_DASH] = ACTIONS(4687), + [anon_sym_PERCENT] = ACTIONS(4687), + [anon_sym_DASH] = ACTIONS(4687), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1645] = { + [sym_concatenation] = STATE(2000), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2000), + [anon_sym_RBRACE] = ACTIONS(4665), [anon_sym_EQ] = ACTIONS(4693), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), @@ -48083,6 +45221,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(4695), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(4697), [anon_sym_COLON] = ACTIONS(4693), [anon_sym_COLON_QMARK] = ACTIONS(4693), [anon_sym_COLON_DASH] = ACTIONS(4693), @@ -48095,573 +45234,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1625] = { - [sym__concat] = ACTIONS(4024), - [sym_variable_name] = ACTIONS(4024), - [anon_sym_PIPE] = ACTIONS(4026), - [anon_sym_RPAREN] = ACTIONS(4026), - [anon_sym_SEMI_SEMI] = ACTIONS(4026), - [anon_sym_PIPE_AMP] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym__special_characters] = ACTIONS(4026), - [anon_sym_DQUOTE] = ACTIONS(4026), - [anon_sym_DOLLAR] = ACTIONS(4026), - [sym_raw_string] = ACTIONS(4026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4026), - [anon_sym_BQUOTE] = ACTIONS(4026), - [anon_sym_LT_LPAREN] = ACTIONS(4026), - [anon_sym_GT_LPAREN] = ACTIONS(4026), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4026), - [sym_word] = ACTIONS(4026), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym_LF] = ACTIONS(4024), - [anon_sym_AMP] = ACTIONS(4026), - }, - [1626] = { - [sym_concatenation] = STATE(2021), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2021), - [anon_sym_RBRACE] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4699), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4701), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4699), - [anon_sym_COLON_QMARK] = ACTIONS(4699), - [anon_sym_COLON_DASH] = ACTIONS(4699), - [anon_sym_PERCENT] = ACTIONS(4699), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1627] = { - [sym__concat] = ACTIONS(4034), - [sym_variable_name] = ACTIONS(4034), - [anon_sym_PIPE] = ACTIONS(4036), - [anon_sym_RPAREN] = ACTIONS(4036), - [anon_sym_SEMI_SEMI] = ACTIONS(4036), - [anon_sym_PIPE_AMP] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [sym__special_characters] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_DOLLAR] = ACTIONS(4036), - [sym_raw_string] = ACTIONS(4036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4036), - [anon_sym_BQUOTE] = ACTIONS(4036), - [anon_sym_LT_LPAREN] = ACTIONS(4036), - [anon_sym_GT_LPAREN] = ACTIONS(4036), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4036), - [sym_word] = ACTIONS(4036), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_LF] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4036), - }, - [1628] = { - [sym_concatenation] = STATE(2023), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2023), - [anon_sym_RBRACE] = ACTIONS(4703), - [anon_sym_EQ] = ACTIONS(4705), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4707), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4705), - [anon_sym_COLON_QMARK] = ACTIONS(4705), - [anon_sym_COLON_DASH] = ACTIONS(4705), - [anon_sym_PERCENT] = ACTIONS(4705), - [anon_sym_DASH] = ACTIONS(4705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1629] = { - [sym__concat] = ACTIONS(4044), - [sym_variable_name] = ACTIONS(4044), - [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__special_characters] = ACTIONS(4046), - [anon_sym_DQUOTE] = ACTIONS(4046), - [anon_sym_DOLLAR] = ACTIONS(4046), - [sym_raw_string] = ACTIONS(4046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4046), - [anon_sym_BQUOTE] = ACTIONS(4046), - [anon_sym_LT_LPAREN] = ACTIONS(4046), - [anon_sym_GT_LPAREN] = ACTIONS(4046), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4046), - [sym_word] = ACTIONS(4046), - [anon_sym_SEMI] = ACTIONS(4046), - [anon_sym_LF] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4046), - }, - [1630] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4709), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1631] = { - [sym__concat] = ACTIONS(4050), - [sym_variable_name] = ACTIONS(4050), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_RPAREN] = ACTIONS(4052), - [anon_sym_SEMI_SEMI] = ACTIONS(4052), - [anon_sym_PIPE_AMP] = ACTIONS(4052), - [anon_sym_AMP_AMP] = ACTIONS(4052), - [anon_sym_PIPE_PIPE] = ACTIONS(4052), - [sym__special_characters] = ACTIONS(4052), - [anon_sym_DQUOTE] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4052), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4052), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4052), - [anon_sym_BQUOTE] = ACTIONS(4052), - [anon_sym_LT_LPAREN] = ACTIONS(4052), - [anon_sym_GT_LPAREN] = ACTIONS(4052), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4052), - [sym_word] = ACTIONS(4052), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4052), - }, - [1632] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4711), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1633] = { - [sym__concat] = ACTIONS(3917), - [anon_sym_PIPE] = ACTIONS(3919), - [anon_sym_RPAREN] = ACTIONS(3919), - [anon_sym_SEMI_SEMI] = ACTIONS(3919), - [anon_sym_PIPE_AMP] = ACTIONS(3919), - [anon_sym_AMP_AMP] = ACTIONS(3919), - [anon_sym_PIPE_PIPE] = ACTIONS(3919), - [sym__special_characters] = ACTIONS(3919), - [anon_sym_DQUOTE] = ACTIONS(3919), - [anon_sym_DOLLAR] = ACTIONS(3919), - [sym_raw_string] = ACTIONS(3919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3919), - [anon_sym_BQUOTE] = ACTIONS(3919), - [anon_sym_LT_LPAREN] = ACTIONS(3919), - [anon_sym_GT_LPAREN] = ACTIONS(3919), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3919), - [sym_word] = ACTIONS(3919), - [anon_sym_SEMI] = ACTIONS(3919), - [anon_sym_LF] = ACTIONS(3917), - [anon_sym_AMP] = ACTIONS(3919), - }, - [1634] = { - [sym__concat] = ACTIONS(3923), - [anon_sym_PIPE] = ACTIONS(3925), - [anon_sym_RPAREN] = ACTIONS(3925), - [anon_sym_SEMI_SEMI] = ACTIONS(3925), - [anon_sym_PIPE_AMP] = ACTIONS(3925), - [anon_sym_AMP_AMP] = ACTIONS(3925), - [anon_sym_PIPE_PIPE] = ACTIONS(3925), - [sym__special_characters] = ACTIONS(3925), - [anon_sym_DQUOTE] = ACTIONS(3925), - [anon_sym_DOLLAR] = ACTIONS(3925), - [sym_raw_string] = ACTIONS(3925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3925), - [anon_sym_BQUOTE] = ACTIONS(3925), - [anon_sym_LT_LPAREN] = ACTIONS(3925), - [anon_sym_GT_LPAREN] = ACTIONS(3925), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3925), - [sym_word] = ACTIONS(3925), - [anon_sym_SEMI] = ACTIONS(3925), - [anon_sym_LF] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3925), - }, - [1635] = { - [sym__concat] = ACTIONS(4008), - [anon_sym_PIPE] = ACTIONS(4010), - [anon_sym_RPAREN] = ACTIONS(4010), - [anon_sym_SEMI_SEMI] = ACTIONS(4010), - [anon_sym_PIPE_AMP] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym__special_characters] = ACTIONS(4010), - [anon_sym_DQUOTE] = ACTIONS(4010), - [anon_sym_DOLLAR] = ACTIONS(4010), - [sym_raw_string] = ACTIONS(4010), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4010), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4010), - [anon_sym_BQUOTE] = ACTIONS(4010), - [anon_sym_LT_LPAREN] = ACTIONS(4010), - [anon_sym_GT_LPAREN] = ACTIONS(4010), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4010), - [sym_word] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4010), - [anon_sym_LF] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4010), - }, - [1636] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4713), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1637] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(4715), - [sym_comment] = ACTIONS(53), - }, - [1638] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(4717), - [sym_comment] = ACTIONS(53), - }, - [1639] = { - [anon_sym_RBRACE] = ACTIONS(4717), - [sym_comment] = ACTIONS(53), - }, - [1640] = { - [sym_concatenation] = STATE(2030), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2030), - [anon_sym_RBRACE] = ACTIONS(4719), - [anon_sym_EQ] = ACTIONS(4721), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4723), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4721), - [anon_sym_COLON_QMARK] = ACTIONS(4721), - [anon_sym_COLON_DASH] = ACTIONS(4721), - [anon_sym_PERCENT] = ACTIONS(4721), - [anon_sym_DASH] = ACTIONS(4721), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1641] = { - [sym__concat] = ACTIONS(4024), - [anon_sym_PIPE] = ACTIONS(4026), - [anon_sym_RPAREN] = ACTIONS(4026), - [anon_sym_SEMI_SEMI] = ACTIONS(4026), - [anon_sym_PIPE_AMP] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym__special_characters] = ACTIONS(4026), - [anon_sym_DQUOTE] = ACTIONS(4026), - [anon_sym_DOLLAR] = ACTIONS(4026), - [sym_raw_string] = ACTIONS(4026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4026), - [anon_sym_BQUOTE] = ACTIONS(4026), - [anon_sym_LT_LPAREN] = ACTIONS(4026), - [anon_sym_GT_LPAREN] = ACTIONS(4026), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4026), - [sym_word] = ACTIONS(4026), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym_LF] = ACTIONS(4024), - [anon_sym_AMP] = ACTIONS(4026), - }, - [1642] = { - [sym_concatenation] = STATE(2032), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2032), - [anon_sym_RBRACE] = ACTIONS(4725), - [anon_sym_EQ] = ACTIONS(4727), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4727), - [anon_sym_COLON_QMARK] = ACTIONS(4727), - [anon_sym_COLON_DASH] = ACTIONS(4727), - [anon_sym_PERCENT] = ACTIONS(4727), - [anon_sym_DASH] = ACTIONS(4727), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1643] = { - [sym__concat] = ACTIONS(4034), - [anon_sym_PIPE] = ACTIONS(4036), - [anon_sym_RPAREN] = ACTIONS(4036), - [anon_sym_SEMI_SEMI] = ACTIONS(4036), - [anon_sym_PIPE_AMP] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [sym__special_characters] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_DOLLAR] = ACTIONS(4036), - [sym_raw_string] = ACTIONS(4036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4036), - [anon_sym_BQUOTE] = ACTIONS(4036), - [anon_sym_LT_LPAREN] = ACTIONS(4036), - [anon_sym_GT_LPAREN] = ACTIONS(4036), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4036), - [sym_word] = ACTIONS(4036), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_LF] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4036), - }, - [1644] = { - [sym_concatenation] = STATE(2034), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2034), - [anon_sym_RBRACE] = ACTIONS(4731), - [anon_sym_EQ] = ACTIONS(4733), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4735), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4733), - [anon_sym_COLON_QMARK] = ACTIONS(4733), - [anon_sym_COLON_DASH] = ACTIONS(4733), - [anon_sym_PERCENT] = ACTIONS(4733), - [anon_sym_DASH] = ACTIONS(4733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1645] = { - [sym__concat] = ACTIONS(4044), - [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__special_characters] = ACTIONS(4046), - [anon_sym_DQUOTE] = ACTIONS(4046), - [anon_sym_DOLLAR] = ACTIONS(4046), - [sym_raw_string] = ACTIONS(4046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4046), - [anon_sym_BQUOTE] = ACTIONS(4046), - [anon_sym_LT_LPAREN] = ACTIONS(4046), - [anon_sym_GT_LPAREN] = ACTIONS(4046), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4046), - [sym_word] = ACTIONS(4046), - [anon_sym_SEMI] = ACTIONS(4046), - [anon_sym_LF] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4046), - }, [1646] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4737), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [sym_comment] = ACTIONS(53), }, [1647] = { - [sym__concat] = ACTIONS(4050), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_RPAREN] = ACTIONS(4052), - [anon_sym_SEMI_SEMI] = ACTIONS(4052), - [anon_sym_PIPE_AMP] = ACTIONS(4052), - [anon_sym_AMP_AMP] = ACTIONS(4052), - [anon_sym_PIPE_PIPE] = ACTIONS(4052), - [sym__special_characters] = ACTIONS(4052), - [anon_sym_DQUOTE] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4052), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4052), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4052), - [anon_sym_BQUOTE] = ACTIONS(4052), - [anon_sym_LT_LPAREN] = ACTIONS(4052), - [anon_sym_GT_LPAREN] = ACTIONS(4052), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4052), - [sym_word] = ACTIONS(4052), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4052), + [sym_regex_without_right_brace] = ACTIONS(4699), }, [1648] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4739), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4701), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -48670,111 +45273,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [1649] = { - [sym_file_descriptor] = ACTIONS(3917), - [sym__concat] = ACTIONS(3917), - [sym_variable_name] = ACTIONS(3917), - [anon_sym_PIPE] = ACTIONS(3919), - [anon_sym_RPAREN] = ACTIONS(3917), - [anon_sym_PIPE_AMP] = ACTIONS(3917), - [anon_sym_AMP_AMP] = ACTIONS(3917), - [anon_sym_PIPE_PIPE] = ACTIONS(3917), - [anon_sym_LT] = ACTIONS(3919), - [anon_sym_GT] = ACTIONS(3919), - [anon_sym_GT_GT] = ACTIONS(3917), - [anon_sym_AMP_GT] = ACTIONS(3919), - [anon_sym_AMP_GT_GT] = ACTIONS(3917), - [anon_sym_LT_AMP] = ACTIONS(3917), - [anon_sym_GT_AMP] = ACTIONS(3917), - [sym__special_characters] = ACTIONS(3917), - [anon_sym_DQUOTE] = ACTIONS(3917), - [anon_sym_DOLLAR] = ACTIONS(3919), - [sym_raw_string] = ACTIONS(3917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3917), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3917), - [anon_sym_BQUOTE] = ACTIONS(3917), - [anon_sym_LT_LPAREN] = ACTIONS(3917), - [anon_sym_GT_LPAREN] = ACTIONS(3917), + [sym__concat] = ACTIONS(1806), + [anon_sym_RBRACE] = ACTIONS(1806), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3917), }, [1650] = { - [sym_file_descriptor] = ACTIONS(3923), - [sym__concat] = ACTIONS(3923), - [sym_variable_name] = ACTIONS(3923), - [anon_sym_PIPE] = ACTIONS(3925), - [anon_sym_RPAREN] = ACTIONS(3923), - [anon_sym_PIPE_AMP] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3923), - [anon_sym_PIPE_PIPE] = ACTIONS(3923), - [anon_sym_LT] = ACTIONS(3925), - [anon_sym_GT] = ACTIONS(3925), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_AMP_GT] = ACTIONS(3925), - [anon_sym_AMP_GT_GT] = ACTIONS(3923), - [anon_sym_LT_AMP] = ACTIONS(3923), - [anon_sym_GT_AMP] = ACTIONS(3923), - [sym__special_characters] = ACTIONS(3923), - [anon_sym_DQUOTE] = ACTIONS(3923), - [anon_sym_DOLLAR] = ACTIONS(3925), - [sym_raw_string] = ACTIONS(3923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3923), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3923), - [anon_sym_BQUOTE] = ACTIONS(3923), - [anon_sym_LT_LPAREN] = ACTIONS(3923), - [anon_sym_GT_LPAREN] = ACTIONS(3923), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3923), + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4703), }, [1651] = { - [sym_file_descriptor] = ACTIONS(4008), - [sym__concat] = ACTIONS(4008), - [sym_variable_name] = ACTIONS(4008), - [anon_sym_PIPE] = ACTIONS(4010), - [anon_sym_RPAREN] = ACTIONS(4008), - [anon_sym_PIPE_AMP] = ACTIONS(4008), - [anon_sym_AMP_AMP] = ACTIONS(4008), - [anon_sym_PIPE_PIPE] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_GT_GT] = ACTIONS(4008), - [anon_sym_AMP_GT] = ACTIONS(4010), - [anon_sym_AMP_GT_GT] = ACTIONS(4008), - [anon_sym_LT_AMP] = ACTIONS(4008), - [anon_sym_GT_AMP] = ACTIONS(4008), - [sym__special_characters] = ACTIONS(4008), - [anon_sym_DQUOTE] = ACTIONS(4008), - [anon_sym_DOLLAR] = ACTIONS(4010), - [sym_raw_string] = ACTIONS(4008), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4008), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4008), - [anon_sym_BQUOTE] = ACTIONS(4008), - [anon_sym_LT_LPAREN] = ACTIONS(4008), - [anon_sym_GT_LPAREN] = ACTIONS(4008), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4008), - }, - [1652] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4665), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -48782,101 +45310,76 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, + [1652] = { + [sym__concat] = ACTIONS(1940), + [anon_sym_RBRACE] = ACTIONS(1940), + [sym_comment] = ACTIONS(53), + }, [1653] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(4743), + [sym__concat] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2006), [sym_comment] = ACTIONS(53), }, [1654] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(4745), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(2710), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_EQ] = ACTIONS(2712), + [sym__special_characters] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2712), + [sym_raw_string] = ACTIONS(2710), + [anon_sym_POUND] = ACTIONS(2710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2710), + [anon_sym_COLON] = ACTIONS(2712), + [anon_sym_COLON_QMARK] = ACTIONS(2712), + [anon_sym_COLON_DASH] = ACTIONS(2712), + [anon_sym_PERCENT] = ACTIONS(2712), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2710), + [anon_sym_BQUOTE] = ACTIONS(2710), + [anon_sym_LT_LPAREN] = ACTIONS(2710), + [anon_sym_GT_LPAREN] = ACTIONS(2710), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2712), }, [1655] = { - [anon_sym_RBRACE] = ACTIONS(4745), + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4705), [sym_comment] = ACTIONS(53), }, [1656] = { - [sym_concatenation] = STATE(2041), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2041), - [anon_sym_RBRACE] = ACTIONS(4747), - [anon_sym_EQ] = ACTIONS(4749), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4749), - [anon_sym_COLON_QMARK] = ACTIONS(4749), - [anon_sym_COLON_DASH] = ACTIONS(4749), - [anon_sym_PERCENT] = ACTIONS(4749), - [anon_sym_DASH] = ACTIONS(4749), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4707), + [sym_comment] = ACTIONS(53), }, [1657] = { - [sym_file_descriptor] = ACTIONS(4024), - [sym__concat] = ACTIONS(4024), - [sym_variable_name] = ACTIONS(4024), - [anon_sym_PIPE] = ACTIONS(4026), - [anon_sym_RPAREN] = ACTIONS(4024), - [anon_sym_PIPE_AMP] = ACTIONS(4024), - [anon_sym_AMP_AMP] = ACTIONS(4024), - [anon_sym_PIPE_PIPE] = ACTIONS(4024), - [anon_sym_LT] = ACTIONS(4026), - [anon_sym_GT] = ACTIONS(4026), - [anon_sym_GT_GT] = ACTIONS(4024), - [anon_sym_AMP_GT] = ACTIONS(4026), - [anon_sym_AMP_GT_GT] = ACTIONS(4024), - [anon_sym_LT_AMP] = ACTIONS(4024), - [anon_sym_GT_AMP] = ACTIONS(4024), - [sym__special_characters] = ACTIONS(4024), - [anon_sym_DQUOTE] = ACTIONS(4024), - [anon_sym_DOLLAR] = ACTIONS(4026), - [sym_raw_string] = ACTIONS(4024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4024), - [anon_sym_BQUOTE] = ACTIONS(4024), - [anon_sym_LT_LPAREN] = ACTIONS(4024), - [anon_sym_GT_LPAREN] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4707), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4024), }, [1658] = { - [sym_concatenation] = STATE(2043), + [sym_concatenation] = STATE(2007), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2043), - [anon_sym_RBRACE] = ACTIONS(4753), - [anon_sym_EQ] = ACTIONS(4755), + [aux_sym_expansion_repeat1] = STATE(2007), + [anon_sym_RBRACE] = ACTIONS(4709), + [anon_sym_EQ] = ACTIONS(4711), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4757), + [anon_sym_POUND] = ACTIONS(4713), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4755), - [anon_sym_COLON_QMARK] = ACTIONS(4755), - [anon_sym_COLON_DASH] = ACTIONS(4755), - [anon_sym_PERCENT] = ACTIONS(4755), - [anon_sym_DASH] = ACTIONS(4755), + [anon_sym_COLON] = ACTIONS(4711), + [anon_sym_COLON_QMARK] = ACTIONS(4711), + [anon_sym_COLON_DASH] = ACTIONS(4711), + [anon_sym_PERCENT] = ACTIONS(4711), + [anon_sym_DASH] = ACTIONS(4711), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -48885,169 +45388,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [1659] = { - [sym_file_descriptor] = ACTIONS(4034), - [sym__concat] = ACTIONS(4034), - [sym_variable_name] = ACTIONS(4034), - [anon_sym_PIPE] = ACTIONS(4036), - [anon_sym_RPAREN] = ACTIONS(4034), - [anon_sym_PIPE_AMP] = ACTIONS(4034), - [anon_sym_AMP_AMP] = ACTIONS(4034), - [anon_sym_PIPE_PIPE] = ACTIONS(4034), - [anon_sym_LT] = ACTIONS(4036), - [anon_sym_GT] = ACTIONS(4036), - [anon_sym_GT_GT] = ACTIONS(4034), - [anon_sym_AMP_GT] = ACTIONS(4036), - [anon_sym_AMP_GT_GT] = ACTIONS(4034), - [anon_sym_LT_AMP] = ACTIONS(4034), - [anon_sym_GT_AMP] = ACTIONS(4034), - [sym__special_characters] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4034), - [anon_sym_DOLLAR] = ACTIONS(4036), - [sym_raw_string] = ACTIONS(4034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4034), - [anon_sym_BQUOTE] = ACTIONS(4034), - [anon_sym_LT_LPAREN] = ACTIONS(4034), - [anon_sym_GT_LPAREN] = ACTIONS(4034), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4034), + [sym__concat] = ACTIONS(2788), + [anon_sym_RBRACE] = ACTIONS(2788), + [anon_sym_EQ] = ACTIONS(2790), + [sym__special_characters] = ACTIONS(2790), + [anon_sym_DQUOTE] = ACTIONS(2788), + [anon_sym_DOLLAR] = ACTIONS(2790), + [sym_raw_string] = ACTIONS(2788), + [anon_sym_POUND] = ACTIONS(2788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2788), + [anon_sym_COLON] = ACTIONS(2790), + [anon_sym_COLON_QMARK] = ACTIONS(2790), + [anon_sym_COLON_DASH] = ACTIONS(2790), + [anon_sym_PERCENT] = ACTIONS(2790), + [anon_sym_DASH] = ACTIONS(2790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2788), + [anon_sym_BQUOTE] = ACTIONS(2788), + [anon_sym_LT_LPAREN] = ACTIONS(2788), + [anon_sym_GT_LPAREN] = ACTIONS(2788), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2790), }, [1660] = { - [sym_concatenation] = STATE(2045), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2045), - [anon_sym_RBRACE] = ACTIONS(4759), - [anon_sym_EQ] = ACTIONS(4761), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4761), - [anon_sym_COLON_QMARK] = ACTIONS(4761), - [anon_sym_COLON_DASH] = ACTIONS(4761), - [anon_sym_PERCENT] = ACTIONS(4761), - [anon_sym_DASH] = ACTIONS(4761), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_concatenation] = STATE(2010), + [sym_string] = STATE(2009), + [sym_simple_expansion] = STATE(2009), + [sym_string_expansion] = STATE(2009), + [sym_expansion] = STATE(2009), + [sym_command_substitution] = STATE(2009), + [sym_process_substitution] = STATE(2009), + [anon_sym_RBRACE] = ACTIONS(4707), + [sym__special_characters] = ACTIONS(4715), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(4717), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4717), }, [1661] = { - [sym_file_descriptor] = ACTIONS(4044), - [sym__concat] = ACTIONS(4044), - [sym_variable_name] = ACTIONS(4044), - [anon_sym_PIPE] = ACTIONS(4046), - [anon_sym_RPAREN] = ACTIONS(4044), - [anon_sym_PIPE_AMP] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_PIPE_PIPE] = ACTIONS(4044), - [anon_sym_LT] = ACTIONS(4046), - [anon_sym_GT] = ACTIONS(4046), - [anon_sym_GT_GT] = ACTIONS(4044), - [anon_sym_AMP_GT] = ACTIONS(4046), - [anon_sym_AMP_GT_GT] = ACTIONS(4044), - [anon_sym_LT_AMP] = ACTIONS(4044), - [anon_sym_GT_AMP] = ACTIONS(4044), - [sym__special_characters] = ACTIONS(4044), - [anon_sym_DQUOTE] = ACTIONS(4044), - [anon_sym_DOLLAR] = ACTIONS(4046), - [sym_raw_string] = ACTIONS(4044), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4044), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4044), - [anon_sym_BQUOTE] = ACTIONS(4044), - [anon_sym_LT_LPAREN] = ACTIONS(4044), - [anon_sym_GT_LPAREN] = ACTIONS(4044), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4044), + [sym__concat] = ACTIONS(2831), + [anon_sym_RBRACE] = ACTIONS(2831), + [anon_sym_EQ] = ACTIONS(2833), + [sym__special_characters] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2831), + [anon_sym_DOLLAR] = ACTIONS(2833), + [sym_raw_string] = ACTIONS(2831), + [anon_sym_POUND] = ACTIONS(2831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2831), + [anon_sym_COLON] = ACTIONS(2833), + [anon_sym_COLON_QMARK] = ACTIONS(2833), + [anon_sym_COLON_DASH] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2831), + [anon_sym_BQUOTE] = ACTIONS(2831), + [anon_sym_LT_LPAREN] = ACTIONS(2831), + [anon_sym_GT_LPAREN] = ACTIONS(2831), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2833), }, [1662] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4765), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_regex_without_right_brace] = ACTIONS(4719), }, [1663] = { - [sym_file_descriptor] = ACTIONS(4050), - [sym__concat] = ACTIONS(4050), - [sym_variable_name] = ACTIONS(4050), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_RPAREN] = ACTIONS(4050), - [anon_sym_PIPE_AMP] = ACTIONS(4050), - [anon_sym_AMP_AMP] = ACTIONS(4050), - [anon_sym_PIPE_PIPE] = ACTIONS(4050), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_GT_GT] = ACTIONS(4050), - [anon_sym_AMP_GT] = ACTIONS(4052), - [anon_sym_AMP_GT_GT] = ACTIONS(4050), - [anon_sym_LT_AMP] = ACTIONS(4050), - [anon_sym_GT_AMP] = ACTIONS(4050), - [sym__special_characters] = ACTIONS(4050), - [anon_sym_DQUOTE] = ACTIONS(4050), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4050), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4050), - [anon_sym_BQUOTE] = ACTIONS(4050), - [anon_sym_LT_LPAREN] = ACTIONS(4050), - [anon_sym_GT_LPAREN] = ACTIONS(4050), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4050), - }, - [1664] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4767), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4721), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -49055,58 +45485,87 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1665] = { - [sym__concat] = ACTIONS(3917), - [anon_sym_DQUOTE] = ACTIONS(3919), - [anon_sym_DOLLAR] = ACTIONS(3919), - [sym__string_content] = ACTIONS(3917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3919), - [anon_sym_BQUOTE] = ACTIONS(3919), + [1664] = { + [sym__concat] = ACTIONS(2839), + [anon_sym_RBRACE] = ACTIONS(2839), + [anon_sym_EQ] = ACTIONS(2841), + [sym__special_characters] = ACTIONS(2841), + [anon_sym_DQUOTE] = ACTIONS(2839), + [anon_sym_DOLLAR] = ACTIONS(2841), + [sym_raw_string] = ACTIONS(2839), + [anon_sym_POUND] = ACTIONS(2839), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2839), + [anon_sym_COLON] = ACTIONS(2841), + [anon_sym_COLON_QMARK] = ACTIONS(2841), + [anon_sym_COLON_DASH] = ACTIONS(2841), + [anon_sym_PERCENT] = ACTIONS(2841), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2839), + [anon_sym_BQUOTE] = ACTIONS(2839), + [anon_sym_LT_LPAREN] = ACTIONS(2839), + [anon_sym_GT_LPAREN] = ACTIONS(2839), [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2841), + }, + [1665] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4723), }, [1666] = { - [sym__concat] = ACTIONS(3923), - [anon_sym_DQUOTE] = ACTIONS(3925), - [anon_sym_DOLLAR] = ACTIONS(3925), - [sym__string_content] = ACTIONS(3923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3925), - [anon_sym_BQUOTE] = ACTIONS(3925), - [sym_comment] = ACTIONS(177), - }, - [1667] = { - [sym__concat] = ACTIONS(4008), - [anon_sym_DQUOTE] = ACTIONS(4010), - [anon_sym_DOLLAR] = ACTIONS(4010), - [sym__string_content] = ACTIONS(4008), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4010), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4010), - [anon_sym_BQUOTE] = ACTIONS(4010), - [sym_comment] = ACTIONS(177), - }, - [1668] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4725), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1667] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4727), + }, + [1668] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4707), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -49115,121 +45574,263 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [1669] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(4771), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2017), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2017), + [anon_sym_RBRACE] = ACTIONS(4729), + [anon_sym_EQ] = ACTIONS(4731), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4731), + [anon_sym_COLON_QMARK] = ACTIONS(4731), + [anon_sym_COLON_DASH] = ACTIONS(4731), + [anon_sym_PERCENT] = ACTIONS(4731), + [anon_sym_DASH] = ACTIONS(4731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1670] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(4773), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(2855), + [anon_sym_RBRACE] = ACTIONS(2855), + [anon_sym_EQ] = ACTIONS(2857), + [sym__special_characters] = ACTIONS(2857), + [anon_sym_DQUOTE] = ACTIONS(2855), + [anon_sym_DOLLAR] = ACTIONS(2857), + [sym_raw_string] = ACTIONS(2855), + [anon_sym_POUND] = ACTIONS(2855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2855), + [anon_sym_COLON] = ACTIONS(2857), + [anon_sym_COLON_QMARK] = ACTIONS(2857), + [anon_sym_COLON_DASH] = ACTIONS(2857), + [anon_sym_PERCENT] = ACTIONS(2857), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2855), + [anon_sym_BQUOTE] = ACTIONS(2855), + [anon_sym_LT_LPAREN] = ACTIONS(2855), + [anon_sym_GT_LPAREN] = ACTIONS(2855), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2857), }, [1671] = { - [anon_sym_RBRACE] = ACTIONS(4773), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2019), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2019), + [anon_sym_RBRACE] = ACTIONS(4735), + [anon_sym_EQ] = ACTIONS(4737), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4739), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4737), + [anon_sym_COLON_QMARK] = ACTIONS(4737), + [anon_sym_COLON_DASH] = ACTIONS(4737), + [anon_sym_PERCENT] = ACTIONS(4737), + [anon_sym_DASH] = ACTIONS(4737), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1672] = { - [sym_concatenation] = STATE(2052), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2052), - [anon_sym_RBRACE] = ACTIONS(4775), - [anon_sym_EQ] = ACTIONS(4777), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4779), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4777), - [anon_sym_COLON_QMARK] = ACTIONS(4777), - [anon_sym_COLON_DASH] = ACTIONS(4777), - [anon_sym_PERCENT] = ACTIONS(4777), - [anon_sym_DASH] = ACTIONS(4777), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym__simple_heredoc_body] = ACTIONS(4741), + [sym__heredoc_body_beginning] = ACTIONS(4741), + [sym_file_descriptor] = ACTIONS(4741), + [sym__concat] = ACTIONS(4741), + [anon_sym_esac] = ACTIONS(4743), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4743), + [anon_sym_SEMI_SEMI] = ACTIONS(4743), + [anon_sym_PIPE_AMP] = ACTIONS(4743), + [anon_sym_AMP_AMP] = ACTIONS(4743), + [anon_sym_PIPE_PIPE] = ACTIONS(4743), + [anon_sym_EQ_TILDE] = ACTIONS(4743), + [anon_sym_EQ_EQ] = ACTIONS(4743), + [anon_sym_LT] = ACTIONS(4743), + [anon_sym_GT] = ACTIONS(4743), + [anon_sym_GT_GT] = ACTIONS(4743), + [anon_sym_AMP_GT] = ACTIONS(4743), + [anon_sym_AMP_GT_GT] = ACTIONS(4743), + [anon_sym_LT_AMP] = ACTIONS(4743), + [anon_sym_GT_AMP] = ACTIONS(4743), + [anon_sym_LT_LT] = ACTIONS(4743), + [anon_sym_LT_LT_DASH] = ACTIONS(4743), + [anon_sym_LT_LT_LT] = ACTIONS(4743), + [sym__special_characters] = ACTIONS(4743), + [anon_sym_DQUOTE] = ACTIONS(4743), + [anon_sym_DOLLAR] = ACTIONS(4743), + [sym_raw_string] = ACTIONS(4743), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4743), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4743), + [anon_sym_BQUOTE] = ACTIONS(4743), + [anon_sym_LT_LPAREN] = ACTIONS(4743), + [anon_sym_GT_LPAREN] = ACTIONS(4743), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(4743), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym_LF] = ACTIONS(4741), + [anon_sym_AMP] = ACTIONS(4743), }, [1673] = { - [sym__concat] = ACTIONS(4024), - [anon_sym_DQUOTE] = ACTIONS(4026), - [anon_sym_DOLLAR] = ACTIONS(4026), - [sym__string_content] = ACTIONS(4024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4026), - [anon_sym_BQUOTE] = ACTIONS(4026), + [sym__simple_heredoc_body] = ACTIONS(4745), + [sym__heredoc_body_beginning] = ACTIONS(4745), + [sym_file_descriptor] = ACTIONS(4745), + [sym__concat] = ACTIONS(4745), + [anon_sym_esac] = ACTIONS(4747), + [anon_sym_PIPE] = ACTIONS(4747), + [anon_sym_RPAREN] = ACTIONS(4747), + [anon_sym_SEMI_SEMI] = ACTIONS(4747), + [anon_sym_PIPE_AMP] = ACTIONS(4747), + [anon_sym_AMP_AMP] = ACTIONS(4747), + [anon_sym_PIPE_PIPE] = ACTIONS(4747), + [anon_sym_EQ_TILDE] = ACTIONS(4747), + [anon_sym_EQ_EQ] = ACTIONS(4747), + [anon_sym_LT] = ACTIONS(4747), + [anon_sym_GT] = ACTIONS(4747), + [anon_sym_GT_GT] = ACTIONS(4747), + [anon_sym_AMP_GT] = ACTIONS(4747), + [anon_sym_AMP_GT_GT] = ACTIONS(4747), + [anon_sym_LT_AMP] = ACTIONS(4747), + [anon_sym_GT_AMP] = ACTIONS(4747), + [anon_sym_LT_LT] = ACTIONS(4747), + [anon_sym_LT_LT_DASH] = ACTIONS(4747), + [anon_sym_LT_LT_LT] = ACTIONS(4747), + [sym__special_characters] = ACTIONS(4747), + [anon_sym_DQUOTE] = ACTIONS(4747), + [anon_sym_DOLLAR] = ACTIONS(4747), + [sym_raw_string] = ACTIONS(4747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4747), + [anon_sym_BQUOTE] = ACTIONS(4747), + [anon_sym_LT_LPAREN] = ACTIONS(4747), + [anon_sym_GT_LPAREN] = ACTIONS(4747), [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4747), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_LF] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4747), }, [1674] = { - [sym_concatenation] = STATE(2054), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2054), - [anon_sym_RBRACE] = ACTIONS(4781), - [anon_sym_EQ] = ACTIONS(4783), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4785), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4783), - [anon_sym_COLON_QMARK] = ACTIONS(4783), - [anon_sym_COLON_DASH] = ACTIONS(4783), - [anon_sym_PERCENT] = ACTIONS(4783), - [anon_sym_DASH] = ACTIONS(4783), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym__simple_heredoc_body] = ACTIONS(4749), + [sym__heredoc_body_beginning] = ACTIONS(4749), + [sym_file_descriptor] = ACTIONS(4749), + [sym__concat] = ACTIONS(4749), + [anon_sym_esac] = ACTIONS(4751), + [anon_sym_PIPE] = ACTIONS(4751), + [anon_sym_RPAREN] = ACTIONS(4751), + [anon_sym_SEMI_SEMI] = ACTIONS(4751), + [anon_sym_PIPE_AMP] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [anon_sym_EQ_TILDE] = ACTIONS(4751), + [anon_sym_EQ_EQ] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4751), + [anon_sym_GT_GT] = ACTIONS(4751), + [anon_sym_AMP_GT] = ACTIONS(4751), + [anon_sym_AMP_GT_GT] = ACTIONS(4751), + [anon_sym_LT_AMP] = ACTIONS(4751), + [anon_sym_GT_AMP] = ACTIONS(4751), + [anon_sym_LT_LT] = ACTIONS(4751), + [anon_sym_LT_LT_DASH] = ACTIONS(4751), + [anon_sym_LT_LT_LT] = ACTIONS(4751), + [sym__special_characters] = ACTIONS(4751), + [anon_sym_DQUOTE] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4751), + [sym_raw_string] = ACTIONS(4751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4751), + [anon_sym_BQUOTE] = ACTIONS(4751), + [anon_sym_LT_LPAREN] = ACTIONS(4751), + [anon_sym_GT_LPAREN] = ACTIONS(4751), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_LF] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4751), }, [1675] = { - [sym__concat] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_DOLLAR] = ACTIONS(4036), - [sym__string_content] = ACTIONS(4034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4036), - [anon_sym_BQUOTE] = ACTIONS(4036), + [sym__simple_heredoc_body] = ACTIONS(4753), + [sym__heredoc_body_beginning] = ACTIONS(4753), + [sym_file_descriptor] = ACTIONS(4753), + [sym__concat] = ACTIONS(4753), + [anon_sym_esac] = ACTIONS(4755), + [anon_sym_PIPE] = ACTIONS(4755), + [anon_sym_RPAREN] = ACTIONS(4755), + [anon_sym_SEMI_SEMI] = ACTIONS(4755), + [anon_sym_PIPE_AMP] = ACTIONS(4755), + [anon_sym_AMP_AMP] = ACTIONS(4755), + [anon_sym_PIPE_PIPE] = ACTIONS(4755), + [anon_sym_EQ_TILDE] = ACTIONS(4755), + [anon_sym_EQ_EQ] = ACTIONS(4755), + [anon_sym_LT] = ACTIONS(4755), + [anon_sym_GT] = ACTIONS(4755), + [anon_sym_GT_GT] = ACTIONS(4755), + [anon_sym_AMP_GT] = ACTIONS(4755), + [anon_sym_AMP_GT_GT] = ACTIONS(4755), + [anon_sym_LT_AMP] = ACTIONS(4755), + [anon_sym_GT_AMP] = ACTIONS(4755), + [anon_sym_LT_LT] = ACTIONS(4755), + [anon_sym_LT_LT_DASH] = ACTIONS(4755), + [anon_sym_LT_LT_LT] = ACTIONS(4755), + [sym__special_characters] = ACTIONS(4755), + [anon_sym_DQUOTE] = ACTIONS(4755), + [anon_sym_DOLLAR] = ACTIONS(4755), + [sym_raw_string] = ACTIONS(4755), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4755), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4755), + [anon_sym_BQUOTE] = ACTIONS(4755), + [anon_sym_LT_LPAREN] = ACTIONS(4755), + [anon_sym_GT_LPAREN] = ACTIONS(4755), [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4755), + [anon_sym_SEMI] = ACTIONS(4755), + [anon_sym_LF] = ACTIONS(4753), + [anon_sym_AMP] = ACTIONS(4755), }, [1676] = { - [sym_concatenation] = STATE(2056), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2056), - [anon_sym_RBRACE] = ACTIONS(4787), - [anon_sym_EQ] = ACTIONS(4789), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4757), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4791), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4789), - [anon_sym_COLON_QMARK] = ACTIONS(4789), - [anon_sym_COLON_DASH] = ACTIONS(4789), - [anon_sym_PERCENT] = ACTIONS(4789), - [anon_sym_DASH] = ACTIONS(4789), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -49238,37 +45839,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [1677] = { - [sym__concat] = ACTIONS(4044), - [anon_sym_DQUOTE] = ACTIONS(4046), - [anon_sym_DOLLAR] = ACTIONS(4046), - [sym__string_content] = ACTIONS(4044), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4046), - [anon_sym_BQUOTE] = ACTIONS(4046), + [sym__simple_heredoc_body] = ACTIONS(4759), + [sym__heredoc_body_beginning] = ACTIONS(4759), + [sym_file_descriptor] = ACTIONS(4759), + [sym__concat] = ACTIONS(4759), + [anon_sym_esac] = ACTIONS(4761), + [anon_sym_PIPE] = ACTIONS(4761), + [anon_sym_RPAREN] = ACTIONS(4761), + [anon_sym_SEMI_SEMI] = ACTIONS(4761), + [anon_sym_PIPE_AMP] = ACTIONS(4761), + [anon_sym_AMP_AMP] = ACTIONS(4761), + [anon_sym_PIPE_PIPE] = ACTIONS(4761), + [anon_sym_EQ_TILDE] = ACTIONS(4761), + [anon_sym_EQ_EQ] = ACTIONS(4761), + [anon_sym_LT] = ACTIONS(4761), + [anon_sym_GT] = ACTIONS(4761), + [anon_sym_GT_GT] = ACTIONS(4761), + [anon_sym_AMP_GT] = ACTIONS(4761), + [anon_sym_AMP_GT_GT] = ACTIONS(4761), + [anon_sym_LT_AMP] = ACTIONS(4761), + [anon_sym_GT_AMP] = ACTIONS(4761), + [anon_sym_LT_LT] = ACTIONS(4761), + [anon_sym_LT_LT_DASH] = ACTIONS(4761), + [anon_sym_LT_LT_LT] = ACTIONS(4761), + [sym__special_characters] = ACTIONS(4761), + [anon_sym_DQUOTE] = ACTIONS(4761), + [anon_sym_DOLLAR] = ACTIONS(4761), + [sym_raw_string] = ACTIONS(4761), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4761), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4761), + [anon_sym_LT_LPAREN] = ACTIONS(4761), + [anon_sym_GT_LPAREN] = ACTIONS(4761), [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4761), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_LF] = ACTIONS(4759), + [anon_sym_AMP] = ACTIONS(4761), }, [1678] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4793), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4763), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -49277,37 +45907,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [1679] = { - [sym__concat] = ACTIONS(4050), - [anon_sym_DQUOTE] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym__string_content] = ACTIONS(4050), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4052), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4052), - [anon_sym_BQUOTE] = ACTIONS(4052), + [sym__simple_heredoc_body] = ACTIONS(4765), + [sym__heredoc_body_beginning] = ACTIONS(4765), + [sym_file_descriptor] = ACTIONS(4765), + [sym__concat] = ACTIONS(4765), + [anon_sym_esac] = ACTIONS(4767), + [anon_sym_PIPE] = ACTIONS(4767), + [anon_sym_RPAREN] = ACTIONS(4767), + [anon_sym_SEMI_SEMI] = ACTIONS(4767), + [anon_sym_PIPE_AMP] = ACTIONS(4767), + [anon_sym_AMP_AMP] = ACTIONS(4767), + [anon_sym_PIPE_PIPE] = ACTIONS(4767), + [anon_sym_EQ_TILDE] = ACTIONS(4767), + [anon_sym_EQ_EQ] = ACTIONS(4767), + [anon_sym_LT] = ACTIONS(4767), + [anon_sym_GT] = ACTIONS(4767), + [anon_sym_GT_GT] = ACTIONS(4767), + [anon_sym_AMP_GT] = ACTIONS(4767), + [anon_sym_AMP_GT_GT] = ACTIONS(4767), + [anon_sym_LT_AMP] = ACTIONS(4767), + [anon_sym_GT_AMP] = ACTIONS(4767), + [anon_sym_LT_LT] = ACTIONS(4767), + [anon_sym_LT_LT_DASH] = ACTIONS(4767), + [anon_sym_LT_LT_LT] = ACTIONS(4767), + [sym__special_characters] = ACTIONS(4767), + [anon_sym_DQUOTE] = ACTIONS(4767), + [anon_sym_DOLLAR] = ACTIONS(4767), + [sym_raw_string] = ACTIONS(4767), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4767), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4767), + [anon_sym_BQUOTE] = ACTIONS(4767), + [anon_sym_LT_LPAREN] = ACTIONS(4767), + [anon_sym_GT_LPAREN] = ACTIONS(4767), [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4767), + [anon_sym_SEMI] = ACTIONS(4767), + [anon_sym_LF] = ACTIONS(4765), + [anon_sym_AMP] = ACTIONS(4767), }, [1680] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4795), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4769), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -49316,1135 +45975,143 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [1681] = { - [sym__concat] = ACTIONS(4797), - [anon_sym_RBRACE] = ACTIONS(3331), - [anon_sym_EQ] = ACTIONS(4799), - [sym__special_characters] = ACTIONS(4799), - [anon_sym_DQUOTE] = ACTIONS(3331), - [anon_sym_DOLLAR] = ACTIONS(4799), - [sym_raw_string] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(3331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3331), - [aux_sym_SLASH] = ACTIONS(3331), - [anon_sym_COLON] = ACTIONS(4799), - [anon_sym_COLON_QMARK] = ACTIONS(4799), - [anon_sym_COLON_DASH] = ACTIONS(4799), - [anon_sym_PERCENT] = ACTIONS(4799), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3331), - [anon_sym_BQUOTE] = ACTIONS(3331), - [anon_sym_LT_LPAREN] = ACTIONS(3331), - [anon_sym_GT_LPAREN] = ACTIONS(3331), + [sym__simple_heredoc_body] = ACTIONS(4771), + [sym__heredoc_body_beginning] = ACTIONS(4771), + [sym_file_descriptor] = ACTIONS(4771), + [sym__concat] = ACTIONS(4771), + [anon_sym_esac] = ACTIONS(4773), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_RPAREN] = ACTIONS(4773), + [anon_sym_SEMI_SEMI] = ACTIONS(4773), + [anon_sym_PIPE_AMP] = ACTIONS(4773), + [anon_sym_AMP_AMP] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4773), + [anon_sym_EQ_TILDE] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4773), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_AMP_GT] = ACTIONS(4773), + [anon_sym_AMP_GT_GT] = ACTIONS(4773), + [anon_sym_LT_AMP] = ACTIONS(4773), + [anon_sym_GT_AMP] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_LT_LT_DASH] = ACTIONS(4773), + [anon_sym_LT_LT_LT] = ACTIONS(4773), + [sym__special_characters] = ACTIONS(4773), + [anon_sym_DQUOTE] = ACTIONS(4773), + [anon_sym_DOLLAR] = ACTIONS(4773), + [sym_raw_string] = ACTIONS(4773), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4773), + [anon_sym_BQUOTE] = ACTIONS(4773), + [anon_sym_LT_LPAREN] = ACTIONS(4773), + [anon_sym_GT_LPAREN] = ACTIONS(4773), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4799), + [sym_word] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4773), + [anon_sym_LF] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), }, [1682] = { - [anon_sym_RBRACE] = ACTIONS(3331), - [anon_sym_EQ] = ACTIONS(4799), - [sym__special_characters] = ACTIONS(4799), - [anon_sym_DQUOTE] = ACTIONS(3331), - [anon_sym_DOLLAR] = ACTIONS(4799), - [sym_raw_string] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(3331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3331), - [aux_sym_SLASH] = ACTIONS(3331), - [anon_sym_COLON] = ACTIONS(4799), - [anon_sym_COLON_QMARK] = ACTIONS(4799), - [anon_sym_COLON_DASH] = ACTIONS(4799), - [anon_sym_PERCENT] = ACTIONS(4799), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3331), - [anon_sym_BQUOTE] = ACTIONS(3331), - [anon_sym_LT_LPAREN] = ACTIONS(3331), - [anon_sym_GT_LPAREN] = ACTIONS(3331), + [sym__simple_heredoc_body] = ACTIONS(4775), + [sym__heredoc_body_beginning] = ACTIONS(4775), + [sym_file_descriptor] = ACTIONS(4775), + [sym__concat] = ACTIONS(4775), + [anon_sym_esac] = ACTIONS(4777), + [anon_sym_PIPE] = ACTIONS(4777), + [anon_sym_RPAREN] = ACTIONS(4777), + [anon_sym_SEMI_SEMI] = ACTIONS(4777), + [anon_sym_PIPE_AMP] = ACTIONS(4777), + [anon_sym_AMP_AMP] = ACTIONS(4777), + [anon_sym_PIPE_PIPE] = ACTIONS(4777), + [anon_sym_EQ_TILDE] = ACTIONS(4777), + [anon_sym_EQ_EQ] = ACTIONS(4777), + [anon_sym_LT] = ACTIONS(4777), + [anon_sym_GT] = ACTIONS(4777), + [anon_sym_GT_GT] = ACTIONS(4777), + [anon_sym_AMP_GT] = ACTIONS(4777), + [anon_sym_AMP_GT_GT] = ACTIONS(4777), + [anon_sym_LT_AMP] = ACTIONS(4777), + [anon_sym_GT_AMP] = ACTIONS(4777), + [anon_sym_LT_LT] = ACTIONS(4777), + [anon_sym_LT_LT_DASH] = ACTIONS(4777), + [anon_sym_LT_LT_LT] = ACTIONS(4777), + [sym__special_characters] = ACTIONS(4777), + [anon_sym_DQUOTE] = ACTIONS(4777), + [anon_sym_DOLLAR] = ACTIONS(4777), + [sym_raw_string] = ACTIONS(4777), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4777), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4777), + [anon_sym_BQUOTE] = ACTIONS(4777), + [anon_sym_LT_LPAREN] = ACTIONS(4777), + [anon_sym_GT_LPAREN] = ACTIONS(4777), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4799), + [sym_word] = ACTIONS(4777), + [anon_sym_SEMI] = ACTIONS(4777), + [anon_sym_LF] = ACTIONS(4775), + [anon_sym_AMP] = ACTIONS(4777), }, [1683] = { - [sym__concat] = ACTIONS(4801), - [anon_sym_RBRACE] = ACTIONS(3335), - [anon_sym_EQ] = ACTIONS(4803), - [sym__special_characters] = ACTIONS(4803), - [anon_sym_DQUOTE] = ACTIONS(3335), - [anon_sym_DOLLAR] = ACTIONS(4803), - [sym_raw_string] = ACTIONS(3335), - [anon_sym_POUND] = ACTIONS(3335), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3335), - [aux_sym_SLASH] = ACTIONS(3335), - [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(3335), - [anon_sym_BQUOTE] = ACTIONS(3335), - [anon_sym_LT_LPAREN] = ACTIONS(3335), - [anon_sym_GT_LPAREN] = ACTIONS(3335), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4803), + [aux_sym_concatenation_repeat1] = STATE(1683), + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(2613), + [sym_variable_name] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_PIPE_AMP] = ACTIONS(1642), + [anon_sym_AMP_AMP] = ACTIONS(1642), + [anon_sym_PIPE_PIPE] = ACTIONS(1642), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1642), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1642), + [anon_sym_LT_AMP] = ACTIONS(1642), + [anon_sym_GT_AMP] = ACTIONS(1642), + [sym__special_characters] = ACTIONS(1642), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1642), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1642), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), + [anon_sym_LT_LPAREN] = ACTIONS(1642), + [anon_sym_GT_LPAREN] = ACTIONS(1642), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1642), }, [1684] = { - [anon_sym_RBRACE] = ACTIONS(3335), - [anon_sym_EQ] = ACTIONS(4803), - [sym__special_characters] = ACTIONS(4803), - [anon_sym_DQUOTE] = ACTIONS(3335), - [anon_sym_DOLLAR] = ACTIONS(4803), - [sym_raw_string] = ACTIONS(3335), - [anon_sym_POUND] = ACTIONS(3335), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3335), - [aux_sym_SLASH] = ACTIONS(3335), - [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(3335), - [anon_sym_BQUOTE] = ACTIONS(3335), - [anon_sym_LT_LPAREN] = ACTIONS(3335), - [anon_sym_GT_LPAREN] = ACTIONS(3335), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4803), + [sym_do_group] = STATE(2023), + [anon_sym_do] = ACTIONS(2865), + [sym_comment] = ACTIONS(53), }, [1685] = { - [sym__concat] = ACTIONS(1654), - [anon_sym_RBRACE] = ACTIONS(1654), + [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(53), }, [1686] = { - [aux_sym_concatenation_repeat1] = STATE(1686), - [sym__concat] = ACTIONS(4805), - [anon_sym_RBRACE] = ACTIONS(1654), - [sym_comment] = ACTIONS(53), - }, - [1687] = { - [sym__concat] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [sym_comment] = ACTIONS(53), - }, - [1688] = { - [sym_concatenation] = STATE(2064), - [sym_string] = STATE(2063), - [sym_simple_expansion] = STATE(2063), - [sym_string_expansion] = STATE(2063), - [sym_expansion] = STATE(2063), - [sym_command_substitution] = STATE(2063), - [sym_process_substitution] = STATE(2063), - [anon_sym_RBRACE] = ACTIONS(4808), - [sym__special_characters] = ACTIONS(4810), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(4812), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4812), - }, - [1689] = { - [sym__concat] = ACTIONS(1744), - [anon_sym_RBRACE] = ACTIONS(1744), - [sym_comment] = ACTIONS(53), - }, - [1690] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4814), - }, - [1691] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4816), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1692] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(4818), - [sym_comment] = ACTIONS(53), - }, - [1693] = { - [sym_concatenation] = STATE(2070), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2070), - [anon_sym_RBRACE] = ACTIONS(4820), - [anon_sym_EQ] = ACTIONS(4822), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(4826), - [anon_sym_COLON] = ACTIONS(4822), - [anon_sym_COLON_QMARK] = ACTIONS(4822), - [anon_sym_COLON_DASH] = ACTIONS(4822), - [anon_sym_PERCENT] = ACTIONS(4822), - [anon_sym_DASH] = ACTIONS(4822), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1694] = { - [sym_concatenation] = STATE(2073), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2073), - [anon_sym_RBRACE] = ACTIONS(4828), - [anon_sym_EQ] = ACTIONS(4830), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(4834), - [anon_sym_COLON] = ACTIONS(4830), - [anon_sym_COLON_QMARK] = ACTIONS(4830), - [anon_sym_COLON_DASH] = ACTIONS(4830), - [anon_sym_PERCENT] = ACTIONS(4830), - [anon_sym_DASH] = ACTIONS(4830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1695] = { - [sym_concatenation] = STATE(2075), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2075), - [anon_sym_RBRACE] = ACTIONS(4808), - [anon_sym_EQ] = ACTIONS(4836), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4838), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(4840), - [anon_sym_COLON] = ACTIONS(4836), - [anon_sym_COLON_QMARK] = ACTIONS(4836), - [anon_sym_COLON_DASH] = ACTIONS(4836), - [anon_sym_PERCENT] = ACTIONS(4836), - [anon_sym_DASH] = ACTIONS(4836), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1696] = { - [sym__concat] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [sym_comment] = ACTIONS(53), - }, - [1697] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4842), - }, - [1698] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4844), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1699] = { - [sym__concat] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [sym_comment] = ACTIONS(53), - }, - [1700] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4846), - }, - [1701] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4808), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1702] = { - [sym__concat] = ACTIONS(1952), - [anon_sym_RBRACE] = ACTIONS(1952), - [sym_comment] = ACTIONS(53), - }, - [1703] = { - [sym__concat] = ACTIONS(2018), - [anon_sym_RBRACE] = ACTIONS(2018), - [sym_comment] = ACTIONS(53), - }, - [1704] = { - [sym__concat] = ACTIONS(2752), - [anon_sym_RBRACE] = ACTIONS(2752), - [anon_sym_EQ] = ACTIONS(2754), - [sym__special_characters] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2752), - [anon_sym_DOLLAR] = ACTIONS(2754), - [sym_raw_string] = ACTIONS(2752), - [anon_sym_POUND] = ACTIONS(2752), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2752), - [anon_sym_COLON] = ACTIONS(2754), - [anon_sym_COLON_QMARK] = ACTIONS(2754), - [anon_sym_COLON_DASH] = ACTIONS(2754), - [anon_sym_PERCENT] = ACTIONS(2754), - [anon_sym_DASH] = ACTIONS(2754), - [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(177), - [sym_word] = ACTIONS(2754), - }, - [1705] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(4848), - [sym_comment] = ACTIONS(53), - }, - [1706] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(4850), - [sym_comment] = ACTIONS(53), - }, - [1707] = { - [anon_sym_RBRACE] = ACTIONS(4850), - [sym_comment] = ACTIONS(53), - }, - [1708] = { - [sym_concatenation] = STATE(2082), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2082), - [anon_sym_RBRACE] = ACTIONS(4852), - [anon_sym_EQ] = ACTIONS(4854), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4856), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4854), - [anon_sym_COLON_QMARK] = ACTIONS(4854), - [anon_sym_COLON_DASH] = ACTIONS(4854), - [anon_sym_PERCENT] = ACTIONS(4854), - [anon_sym_DASH] = ACTIONS(4854), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1709] = { - [sym__concat] = ACTIONS(2830), - [anon_sym_RBRACE] = ACTIONS(2830), - [anon_sym_EQ] = ACTIONS(2832), - [sym__special_characters] = ACTIONS(2832), - [anon_sym_DQUOTE] = ACTIONS(2830), - [anon_sym_DOLLAR] = ACTIONS(2832), - [sym_raw_string] = ACTIONS(2830), - [anon_sym_POUND] = ACTIONS(2830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2830), - [anon_sym_COLON] = ACTIONS(2832), - [anon_sym_COLON_QMARK] = ACTIONS(2832), - [anon_sym_COLON_DASH] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2830), - [anon_sym_BQUOTE] = ACTIONS(2830), - [anon_sym_LT_LPAREN] = ACTIONS(2830), - [anon_sym_GT_LPAREN] = ACTIONS(2830), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2832), - }, - [1710] = { - [sym_concatenation] = STATE(2085), - [sym_string] = STATE(2084), - [sym_simple_expansion] = STATE(2084), - [sym_string_expansion] = STATE(2084), - [sym_expansion] = STATE(2084), - [sym_command_substitution] = STATE(2084), - [sym_process_substitution] = STATE(2084), - [anon_sym_RBRACE] = ACTIONS(4850), - [sym__special_characters] = ACTIONS(4858), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(4860), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4860), - }, - [1711] = { - [sym__concat] = ACTIONS(2873), - [anon_sym_RBRACE] = ACTIONS(2873), - [anon_sym_EQ] = ACTIONS(2875), - [sym__special_characters] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2873), - [anon_sym_DOLLAR] = ACTIONS(2875), - [sym_raw_string] = ACTIONS(2873), - [anon_sym_POUND] = ACTIONS(2873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2873), - [anon_sym_COLON] = ACTIONS(2875), - [anon_sym_COLON_QMARK] = ACTIONS(2875), - [anon_sym_COLON_DASH] = ACTIONS(2875), - [anon_sym_PERCENT] = ACTIONS(2875), - [anon_sym_DASH] = ACTIONS(2875), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2873), - [anon_sym_BQUOTE] = ACTIONS(2873), - [anon_sym_LT_LPAREN] = ACTIONS(2873), - [anon_sym_GT_LPAREN] = ACTIONS(2873), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2875), - }, - [1712] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4862), - }, - [1713] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4864), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1714] = { - [sym__concat] = ACTIONS(2881), - [anon_sym_RBRACE] = ACTIONS(2881), - [anon_sym_EQ] = ACTIONS(2883), - [sym__special_characters] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2881), - [anon_sym_DOLLAR] = ACTIONS(2883), - [sym_raw_string] = ACTIONS(2881), - [anon_sym_POUND] = ACTIONS(2881), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2881), - [anon_sym_COLON] = ACTIONS(2883), - [anon_sym_COLON_QMARK] = ACTIONS(2883), - [anon_sym_COLON_DASH] = ACTIONS(2883), - [anon_sym_PERCENT] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2881), - [anon_sym_BQUOTE] = ACTIONS(2881), - [anon_sym_LT_LPAREN] = ACTIONS(2881), - [anon_sym_GT_LPAREN] = ACTIONS(2881), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2883), - }, - [1715] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4866), - }, - [1716] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4868), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1717] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4870), - }, - [1718] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4850), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1719] = { - [sym_concatenation] = STATE(2092), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2092), - [anon_sym_RBRACE] = ACTIONS(4872), - [anon_sym_EQ] = ACTIONS(4874), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4874), - [anon_sym_COLON_QMARK] = ACTIONS(4874), - [anon_sym_COLON_DASH] = ACTIONS(4874), - [anon_sym_PERCENT] = ACTIONS(4874), - [anon_sym_DASH] = ACTIONS(4874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1720] = { - [sym__concat] = ACTIONS(2897), - [anon_sym_RBRACE] = ACTIONS(2897), - [anon_sym_EQ] = ACTIONS(2899), - [sym__special_characters] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2897), - [anon_sym_DOLLAR] = ACTIONS(2899), - [sym_raw_string] = ACTIONS(2897), - [anon_sym_POUND] = ACTIONS(2897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2897), - [anon_sym_COLON] = ACTIONS(2899), - [anon_sym_COLON_QMARK] = ACTIONS(2899), - [anon_sym_COLON_DASH] = ACTIONS(2899), - [anon_sym_PERCENT] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2897), - [anon_sym_BQUOTE] = ACTIONS(2897), - [anon_sym_LT_LPAREN] = ACTIONS(2897), - [anon_sym_GT_LPAREN] = ACTIONS(2897), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2899), - }, - [1721] = { - [sym_concatenation] = STATE(2094), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2094), - [anon_sym_RBRACE] = ACTIONS(4878), - [anon_sym_EQ] = ACTIONS(4880), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4880), - [anon_sym_COLON_QMARK] = ACTIONS(4880), - [anon_sym_COLON_DASH] = ACTIONS(4880), - [anon_sym_PERCENT] = ACTIONS(4880), - [anon_sym_DASH] = ACTIONS(4880), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1722] = { - [sym__simple_heredoc_body] = ACTIONS(4884), - [sym__heredoc_body_beginning] = ACTIONS(4884), - [sym_file_descriptor] = ACTIONS(4884), - [sym__concat] = ACTIONS(4884), - [anon_sym_PIPE] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4886), - [anon_sym_SEMI_SEMI] = ACTIONS(4886), - [anon_sym_PIPE_AMP] = ACTIONS(4886), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_EQ_TILDE] = ACTIONS(4886), - [anon_sym_EQ_EQ] = ACTIONS(4886), - [anon_sym_LT] = ACTIONS(4886), - [anon_sym_GT] = ACTIONS(4886), - [anon_sym_GT_GT] = ACTIONS(4886), - [anon_sym_AMP_GT] = ACTIONS(4886), - [anon_sym_AMP_GT_GT] = ACTIONS(4886), - [anon_sym_LT_AMP] = ACTIONS(4886), - [anon_sym_GT_AMP] = ACTIONS(4886), - [anon_sym_LT_LT] = ACTIONS(4886), - [anon_sym_LT_LT_DASH] = ACTIONS(4886), - [anon_sym_LT_LT_LT] = ACTIONS(4886), - [sym__special_characters] = ACTIONS(4886), - [anon_sym_DQUOTE] = ACTIONS(4886), - [anon_sym_DOLLAR] = ACTIONS(4886), - [sym_raw_string] = ACTIONS(4886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4886), - [anon_sym_BQUOTE] = ACTIONS(4886), - [anon_sym_LT_LPAREN] = ACTIONS(4886), - [anon_sym_GT_LPAREN] = ACTIONS(4886), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4886), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym_LF] = ACTIONS(4884), - [anon_sym_AMP] = ACTIONS(4886), - }, - [1723] = { - [sym__simple_heredoc_body] = ACTIONS(4888), - [sym__heredoc_body_beginning] = ACTIONS(4888), - [sym_file_descriptor] = ACTIONS(4888), - [sym__concat] = ACTIONS(4888), - [anon_sym_PIPE] = ACTIONS(4890), - [anon_sym_RPAREN] = ACTIONS(4890), - [anon_sym_SEMI_SEMI] = ACTIONS(4890), - [anon_sym_PIPE_AMP] = ACTIONS(4890), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [anon_sym_EQ_TILDE] = ACTIONS(4890), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_LT] = ACTIONS(4890), - [anon_sym_GT] = ACTIONS(4890), - [anon_sym_GT_GT] = ACTIONS(4890), - [anon_sym_AMP_GT] = ACTIONS(4890), - [anon_sym_AMP_GT_GT] = ACTIONS(4890), - [anon_sym_LT_AMP] = ACTIONS(4890), - [anon_sym_GT_AMP] = ACTIONS(4890), - [anon_sym_LT_LT] = ACTIONS(4890), - [anon_sym_LT_LT_DASH] = ACTIONS(4890), - [anon_sym_LT_LT_LT] = ACTIONS(4890), - [sym__special_characters] = ACTIONS(4890), - [anon_sym_DQUOTE] = ACTIONS(4890), - [anon_sym_DOLLAR] = ACTIONS(4890), - [sym_raw_string] = ACTIONS(4890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4890), - [anon_sym_BQUOTE] = ACTIONS(4890), - [anon_sym_LT_LPAREN] = ACTIONS(4890), - [anon_sym_GT_LPAREN] = ACTIONS(4890), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4890), - [anon_sym_SEMI] = ACTIONS(4890), - [anon_sym_LF] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4890), - }, - [1724] = { - [sym__simple_heredoc_body] = ACTIONS(4892), - [sym__heredoc_body_beginning] = ACTIONS(4892), - [sym_file_descriptor] = ACTIONS(4892), - [sym__concat] = ACTIONS(4892), - [anon_sym_PIPE] = ACTIONS(4894), - [anon_sym_RPAREN] = ACTIONS(4894), - [anon_sym_SEMI_SEMI] = ACTIONS(4894), - [anon_sym_PIPE_AMP] = ACTIONS(4894), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE_PIPE] = ACTIONS(4894), - [anon_sym_EQ_TILDE] = ACTIONS(4894), - [anon_sym_EQ_EQ] = ACTIONS(4894), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_GT_GT] = ACTIONS(4894), - [anon_sym_AMP_GT] = ACTIONS(4894), - [anon_sym_AMP_GT_GT] = ACTIONS(4894), - [anon_sym_LT_AMP] = ACTIONS(4894), - [anon_sym_GT_AMP] = ACTIONS(4894), - [anon_sym_LT_LT] = ACTIONS(4894), - [anon_sym_LT_LT_DASH] = ACTIONS(4894), - [anon_sym_LT_LT_LT] = ACTIONS(4894), - [sym__special_characters] = ACTIONS(4894), - [anon_sym_DQUOTE] = ACTIONS(4894), - [anon_sym_DOLLAR] = ACTIONS(4894), - [sym_raw_string] = ACTIONS(4894), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4894), - [anon_sym_BQUOTE] = ACTIONS(4894), - [anon_sym_LT_LPAREN] = ACTIONS(4894), - [anon_sym_GT_LPAREN] = ACTIONS(4894), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4894), - [anon_sym_SEMI] = ACTIONS(4894), - [anon_sym_LF] = ACTIONS(4892), - [anon_sym_AMP] = ACTIONS(4894), - }, - [1725] = { - [sym__simple_heredoc_body] = ACTIONS(4896), - [sym__heredoc_body_beginning] = ACTIONS(4896), - [sym_file_descriptor] = ACTIONS(4896), - [sym__concat] = ACTIONS(4896), - [anon_sym_PIPE] = ACTIONS(4898), - [anon_sym_RPAREN] = ACTIONS(4898), - [anon_sym_SEMI_SEMI] = ACTIONS(4898), - [anon_sym_PIPE_AMP] = ACTIONS(4898), - [anon_sym_AMP_AMP] = ACTIONS(4898), - [anon_sym_PIPE_PIPE] = ACTIONS(4898), - [anon_sym_EQ_TILDE] = ACTIONS(4898), - [anon_sym_EQ_EQ] = ACTIONS(4898), - [anon_sym_LT] = ACTIONS(4898), - [anon_sym_GT] = ACTIONS(4898), - [anon_sym_GT_GT] = ACTIONS(4898), - [anon_sym_AMP_GT] = ACTIONS(4898), - [anon_sym_AMP_GT_GT] = ACTIONS(4898), - [anon_sym_LT_AMP] = ACTIONS(4898), - [anon_sym_GT_AMP] = ACTIONS(4898), - [anon_sym_LT_LT] = ACTIONS(4898), - [anon_sym_LT_LT_DASH] = ACTIONS(4898), - [anon_sym_LT_LT_LT] = ACTIONS(4898), - [sym__special_characters] = ACTIONS(4898), - [anon_sym_DQUOTE] = ACTIONS(4898), - [anon_sym_DOLLAR] = ACTIONS(4898), - [sym_raw_string] = ACTIONS(4898), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4898), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4898), - [anon_sym_BQUOTE] = ACTIONS(4898), - [anon_sym_LT_LPAREN] = ACTIONS(4898), - [anon_sym_GT_LPAREN] = ACTIONS(4898), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4898), - [anon_sym_SEMI] = ACTIONS(4898), - [anon_sym_LF] = ACTIONS(4896), - [anon_sym_AMP] = ACTIONS(4898), - }, - [1726] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4900), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1727] = { - [sym__simple_heredoc_body] = ACTIONS(4902), - [sym__heredoc_body_beginning] = ACTIONS(4902), - [sym_file_descriptor] = ACTIONS(4902), - [sym__concat] = ACTIONS(4902), - [anon_sym_PIPE] = ACTIONS(4904), - [anon_sym_RPAREN] = ACTIONS(4904), - [anon_sym_SEMI_SEMI] = ACTIONS(4904), - [anon_sym_PIPE_AMP] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4904), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_EQ_TILDE] = ACTIONS(4904), - [anon_sym_EQ_EQ] = ACTIONS(4904), - [anon_sym_LT] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4904), - [anon_sym_GT_GT] = ACTIONS(4904), - [anon_sym_AMP_GT] = ACTIONS(4904), - [anon_sym_AMP_GT_GT] = ACTIONS(4904), - [anon_sym_LT_AMP] = ACTIONS(4904), - [anon_sym_GT_AMP] = ACTIONS(4904), - [anon_sym_LT_LT] = ACTIONS(4904), - [anon_sym_LT_LT_DASH] = ACTIONS(4904), - [anon_sym_LT_LT_LT] = ACTIONS(4904), - [sym__special_characters] = ACTIONS(4904), - [anon_sym_DQUOTE] = ACTIONS(4904), - [anon_sym_DOLLAR] = ACTIONS(4904), - [sym_raw_string] = ACTIONS(4904), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4904), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4904), - [anon_sym_BQUOTE] = ACTIONS(4904), - [anon_sym_LT_LPAREN] = ACTIONS(4904), - [anon_sym_GT_LPAREN] = ACTIONS(4904), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4904), - [anon_sym_SEMI] = ACTIONS(4904), - [anon_sym_LF] = ACTIONS(4902), - [anon_sym_AMP] = ACTIONS(4904), - }, - [1728] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4906), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1729] = { - [sym__simple_heredoc_body] = ACTIONS(4908), - [sym__heredoc_body_beginning] = ACTIONS(4908), - [sym_file_descriptor] = ACTIONS(4908), - [sym__concat] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4910), - [anon_sym_RPAREN] = ACTIONS(4910), - [anon_sym_SEMI_SEMI] = ACTIONS(4910), - [anon_sym_PIPE_AMP] = ACTIONS(4910), - [anon_sym_AMP_AMP] = ACTIONS(4910), - [anon_sym_PIPE_PIPE] = ACTIONS(4910), - [anon_sym_EQ_TILDE] = ACTIONS(4910), - [anon_sym_EQ_EQ] = ACTIONS(4910), - [anon_sym_LT] = ACTIONS(4910), - [anon_sym_GT] = ACTIONS(4910), - [anon_sym_GT_GT] = ACTIONS(4910), - [anon_sym_AMP_GT] = ACTIONS(4910), - [anon_sym_AMP_GT_GT] = ACTIONS(4910), - [anon_sym_LT_AMP] = ACTIONS(4910), - [anon_sym_GT_AMP] = ACTIONS(4910), - [anon_sym_LT_LT] = ACTIONS(4910), - [anon_sym_LT_LT_DASH] = ACTIONS(4910), - [anon_sym_LT_LT_LT] = ACTIONS(4910), - [sym__special_characters] = ACTIONS(4910), - [anon_sym_DQUOTE] = ACTIONS(4910), - [anon_sym_DOLLAR] = ACTIONS(4910), - [sym_raw_string] = ACTIONS(4910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4910), - [anon_sym_BQUOTE] = ACTIONS(4910), - [anon_sym_LT_LPAREN] = ACTIONS(4910), - [anon_sym_GT_LPAREN] = ACTIONS(4910), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4910), - [anon_sym_SEMI] = ACTIONS(4910), - [anon_sym_LF] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4910), - }, - [1730] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4912), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1731] = { - [sym__simple_heredoc_body] = ACTIONS(4914), - [sym__heredoc_body_beginning] = ACTIONS(4914), - [sym_file_descriptor] = ACTIONS(4914), - [sym__concat] = ACTIONS(4914), - [anon_sym_PIPE] = ACTIONS(4916), - [anon_sym_RPAREN] = ACTIONS(4916), - [anon_sym_SEMI_SEMI] = ACTIONS(4916), - [anon_sym_PIPE_AMP] = ACTIONS(4916), - [anon_sym_AMP_AMP] = ACTIONS(4916), - [anon_sym_PIPE_PIPE] = ACTIONS(4916), - [anon_sym_EQ_TILDE] = ACTIONS(4916), - [anon_sym_EQ_EQ] = ACTIONS(4916), - [anon_sym_LT] = ACTIONS(4916), - [anon_sym_GT] = ACTIONS(4916), - [anon_sym_GT_GT] = ACTIONS(4916), - [anon_sym_AMP_GT] = ACTIONS(4916), - [anon_sym_AMP_GT_GT] = ACTIONS(4916), - [anon_sym_LT_AMP] = ACTIONS(4916), - [anon_sym_GT_AMP] = ACTIONS(4916), - [anon_sym_LT_LT] = ACTIONS(4916), - [anon_sym_LT_LT_DASH] = ACTIONS(4916), - [anon_sym_LT_LT_LT] = ACTIONS(4916), - [sym__special_characters] = ACTIONS(4916), - [anon_sym_DQUOTE] = ACTIONS(4916), - [anon_sym_DOLLAR] = ACTIONS(4916), - [sym_raw_string] = ACTIONS(4916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4916), - [anon_sym_BQUOTE] = ACTIONS(4916), - [anon_sym_LT_LPAREN] = ACTIONS(4916), - [anon_sym_GT_LPAREN] = ACTIONS(4916), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4916), - [anon_sym_SEMI] = ACTIONS(4916), - [anon_sym_LF] = ACTIONS(4914), - [anon_sym_AMP] = ACTIONS(4916), - }, - [1732] = { - [sym__simple_heredoc_body] = ACTIONS(4918), - [sym__heredoc_body_beginning] = ACTIONS(4918), - [sym_file_descriptor] = ACTIONS(4918), - [sym__concat] = ACTIONS(4918), - [anon_sym_PIPE] = ACTIONS(4920), - [anon_sym_RPAREN] = ACTIONS(4920), - [anon_sym_SEMI_SEMI] = ACTIONS(4920), - [anon_sym_PIPE_AMP] = ACTIONS(4920), - [anon_sym_AMP_AMP] = ACTIONS(4920), - [anon_sym_PIPE_PIPE] = ACTIONS(4920), - [anon_sym_EQ_TILDE] = ACTIONS(4920), - [anon_sym_EQ_EQ] = ACTIONS(4920), - [anon_sym_LT] = ACTIONS(4920), - [anon_sym_GT] = ACTIONS(4920), - [anon_sym_GT_GT] = ACTIONS(4920), - [anon_sym_AMP_GT] = ACTIONS(4920), - [anon_sym_AMP_GT_GT] = ACTIONS(4920), - [anon_sym_LT_AMP] = ACTIONS(4920), - [anon_sym_GT_AMP] = ACTIONS(4920), - [anon_sym_LT_LT] = ACTIONS(4920), - [anon_sym_LT_LT_DASH] = ACTIONS(4920), - [anon_sym_LT_LT_LT] = ACTIONS(4920), - [sym__special_characters] = ACTIONS(4920), - [anon_sym_DQUOTE] = ACTIONS(4920), - [anon_sym_DOLLAR] = ACTIONS(4920), - [sym_raw_string] = ACTIONS(4920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4920), - [anon_sym_BQUOTE] = ACTIONS(4920), - [anon_sym_LT_LPAREN] = ACTIONS(4920), - [anon_sym_GT_LPAREN] = ACTIONS(4920), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4920), - [anon_sym_SEMI] = ACTIONS(4920), - [anon_sym_LF] = ACTIONS(4918), - [anon_sym_AMP] = ACTIONS(4920), - }, - [1733] = { - [aux_sym_concatenation_repeat1] = STATE(1733), - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(2655), - [sym_variable_name] = ACTIONS(1654), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1654), - [anon_sym_PIPE_AMP] = ACTIONS(1654), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_PIPE_PIPE] = ACTIONS(1654), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1654), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1654), - [anon_sym_LT_AMP] = ACTIONS(1654), - [anon_sym_GT_AMP] = ACTIONS(1654), - [sym__special_characters] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1654), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [anon_sym_LT_LPAREN] = ACTIONS(1654), - [anon_sym_GT_LPAREN] = ACTIONS(1654), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1654), - }, - [1734] = { - [sym_do_group] = STATE(2098), - [anon_sym_do] = ACTIONS(2907), - [sym_comment] = ACTIONS(53), - }, - [1735] = { - [anon_sym_PIPE] = ACTIONS(2265), - [anon_sym_RPAREN] = ACTIONS(2263), - [anon_sym_PIPE_AMP] = ACTIONS(2263), - [anon_sym_AMP_AMP] = ACTIONS(2263), - [anon_sym_PIPE_PIPE] = ACTIONS(2263), - [anon_sym_BQUOTE] = ACTIONS(2263), - [sym_comment] = ACTIONS(53), - }, - [1736] = { - [sym__terminated_statement] = STATE(1063), - [sym_for_statement] = STATE(599), - [sym_while_statement] = STATE(599), - [sym_if_statement] = STATE(599), - [sym_case_statement] = STATE(599), - [sym_function_definition] = STATE(599), - [sym_subshell] = STATE(599), - [sym_pipeline] = STATE(599), - [sym_list] = STATE(599), - [sym_negated_command] = STATE(599), - [sym_test_command] = STATE(599), - [sym_declaration_command] = STATE(599), - [sym_unset_command] = STATE(599), - [sym_command] = STATE(599), + [sym__terminated_statement] = STATE(1035), + [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_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(600), + [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -50454,13 +46121,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1063), + [aux_sym_program_repeat1] = STATE(1035), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), [anon_sym_while] = ACTIONS(13), - [anon_sym_done] = ACTIONS(4922), + [anon_sym_done] = ACTIONS(4779), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), @@ -50494,236 +46161,236 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [1737] = { - [sym__simple_heredoc_body] = ACTIONS(3522), - [sym__heredoc_body_beginning] = ACTIONS(3522), - [sym_file_descriptor] = ACTIONS(3522), - [anon_sym_PIPE] = ACTIONS(3524), - [anon_sym_RPAREN] = ACTIONS(3522), - [anon_sym_PIPE_AMP] = ACTIONS(3522), - [anon_sym_AMP_AMP] = ACTIONS(3522), - [anon_sym_PIPE_PIPE] = ACTIONS(3522), - [anon_sym_LT] = ACTIONS(3524), - [anon_sym_GT] = ACTIONS(3524), - [anon_sym_GT_GT] = ACTIONS(3522), - [anon_sym_AMP_GT] = ACTIONS(3524), - [anon_sym_AMP_GT_GT] = ACTIONS(3522), - [anon_sym_LT_AMP] = ACTIONS(3522), - [anon_sym_GT_AMP] = ACTIONS(3522), - [anon_sym_LT_LT] = ACTIONS(3524), - [anon_sym_LT_LT_DASH] = ACTIONS(3522), - [anon_sym_LT_LT_LT] = ACTIONS(3522), - [anon_sym_BQUOTE] = ACTIONS(3522), + [1687] = { + [sym__simple_heredoc_body] = ACTIONS(3438), + [sym__heredoc_body_beginning] = ACTIONS(3438), + [sym_file_descriptor] = ACTIONS(3438), + [anon_sym_PIPE] = ACTIONS(3440), + [anon_sym_RPAREN] = ACTIONS(3438), + [anon_sym_PIPE_AMP] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_GT] = ACTIONS(3440), + [anon_sym_GT_GT] = ACTIONS(3438), + [anon_sym_AMP_GT] = ACTIONS(3440), + [anon_sym_AMP_GT_GT] = ACTIONS(3438), + [anon_sym_LT_AMP] = ACTIONS(3438), + [anon_sym_GT_AMP] = ACTIONS(3438), + [anon_sym_LT_LT] = ACTIONS(3440), + [anon_sym_LT_LT_DASH] = ACTIONS(3438), + [anon_sym_LT_LT_LT] = ACTIONS(3438), + [anon_sym_BQUOTE] = ACTIONS(3438), [sym_comment] = ACTIONS(53), }, - [1738] = { - [anon_sym_PIPE] = ACTIONS(3528), - [anon_sym_RPAREN] = ACTIONS(3530), - [anon_sym_PIPE_AMP] = ACTIONS(3530), - [anon_sym_AMP_AMP] = ACTIONS(3530), - [anon_sym_PIPE_PIPE] = ACTIONS(3530), - [anon_sym_BQUOTE] = ACTIONS(3530), + [1688] = { + [anon_sym_PIPE] = ACTIONS(3444), + [anon_sym_RPAREN] = ACTIONS(3446), + [anon_sym_PIPE_AMP] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(3446), + [anon_sym_PIPE_PIPE] = ACTIONS(3446), + [anon_sym_BQUOTE] = ACTIONS(3446), [sym_comment] = ACTIONS(53), }, - [1739] = { - [anon_sym_PIPE] = ACTIONS(3540), - [anon_sym_RPAREN] = ACTIONS(3542), - [anon_sym_PIPE_AMP] = ACTIONS(3542), - [anon_sym_AMP_AMP] = ACTIONS(3542), - [anon_sym_PIPE_PIPE] = ACTIONS(3542), - [anon_sym_BQUOTE] = ACTIONS(3542), + [1689] = { + [anon_sym_PIPE] = ACTIONS(3452), + [anon_sym_RPAREN] = ACTIONS(3454), + [anon_sym_PIPE_AMP] = ACTIONS(3454), + [anon_sym_AMP_AMP] = ACTIONS(3454), + [anon_sym_PIPE_PIPE] = ACTIONS(3454), + [anon_sym_BQUOTE] = ACTIONS(3454), [sym_comment] = ACTIONS(53), }, - [1740] = { - [anon_sym_fi] = ACTIONS(4924), + [1690] = { + [anon_sym_fi] = ACTIONS(4781), [sym_comment] = ACTIONS(53), }, - [1741] = { - [sym_elif_clause] = STATE(608), - [sym_else_clause] = STATE(2101), - [aux_sym_if_statement_repeat1] = STATE(1074), - [anon_sym_fi] = ACTIONS(4924), - [anon_sym_elif] = ACTIONS(2293), - [anon_sym_else] = ACTIONS(2295), + [1691] = { + [sym_elif_clause] = STATE(599), + [sym_else_clause] = STATE(2026), + [aux_sym_if_statement_repeat1] = STATE(1043), + [anon_sym_fi] = ACTIONS(4781), + [anon_sym_elif] = ACTIONS(2251), + [anon_sym_else] = ACTIONS(2253), [sym_comment] = ACTIONS(53), }, - [1742] = { - [anon_sym_PIPE] = ACTIONS(3551), - [anon_sym_RPAREN] = ACTIONS(3553), - [anon_sym_PIPE_AMP] = ACTIONS(3553), - [anon_sym_AMP_AMP] = ACTIONS(3553), - [anon_sym_PIPE_PIPE] = ACTIONS(3553), - [anon_sym_BQUOTE] = ACTIONS(3553), + [1692] = { + [anon_sym_PIPE] = ACTIONS(3463), + [anon_sym_RPAREN] = ACTIONS(3465), + [anon_sym_PIPE_AMP] = ACTIONS(3465), + [anon_sym_AMP_AMP] = ACTIONS(3465), + [anon_sym_PIPE_PIPE] = ACTIONS(3465), + [anon_sym_BQUOTE] = ACTIONS(3465), [sym_comment] = ACTIONS(53), }, - [1743] = { - [anon_sym_esac] = ACTIONS(4926), + [1693] = { + [anon_sym_esac] = ACTIONS(4783), [sym_comment] = ACTIONS(53), }, - [1744] = { - [sym_case_item] = STATE(1522), - [sym_last_case_item] = STATE(2103), - [sym_concatenation] = STATE(1079), - [sym_string] = STATE(1077), - [sym_simple_expansion] = STATE(1077), - [sym_string_expansion] = STATE(1077), - [sym_expansion] = STATE(1077), - [sym_command_substitution] = STATE(1077), - [sym_process_substitution] = STATE(1077), - [aux_sym_case_statement_repeat1] = STATE(1522), - [sym__special_characters] = ACTIONS(2299), + [1694] = { + [sym_case_item] = STATE(1472), + [sym_last_case_item] = STATE(2028), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(1046), + [sym_simple_expansion] = STATE(1046), + [sym_string_expansion] = STATE(1046), + [sym_expansion] = STATE(1046), + [sym_command_substitution] = STATE(1046), + [sym_process_substitution] = STATE(1046), + [aux_sym_case_statement_repeat1] = STATE(1472), + [sym__special_characters] = ACTIONS(2257), [anon_sym_DQUOTE] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2259), [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), [anon_sym_BQUOTE] = ACTIONS(149), [anon_sym_LT_LPAREN] = ACTIONS(151), [anon_sym_GT_LPAREN] = ACTIONS(151), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2301), + [sym_word] = ACTIONS(2259), }, - [1745] = { - [sym_case_item] = STATE(2105), - [sym_last_case_item] = STATE(2103), - [sym_concatenation] = STATE(1079), - [sym_string] = STATE(1077), - [sym_simple_expansion] = STATE(1077), - [sym_string_expansion] = STATE(1077), - [sym_expansion] = STATE(1077), - [sym_command_substitution] = STATE(1077), - [sym_process_substitution] = STATE(1077), - [aux_sym_case_statement_repeat1] = STATE(2105), - [anon_sym_esac] = ACTIONS(4928), - [sym__special_characters] = ACTIONS(2299), + [1695] = { + [sym_case_item] = STATE(2030), + [sym_last_case_item] = STATE(2028), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(1046), + [sym_simple_expansion] = STATE(1046), + [sym_string_expansion] = STATE(1046), + [sym_expansion] = STATE(1046), + [sym_command_substitution] = STATE(1046), + [sym_process_substitution] = STATE(1046), + [aux_sym_case_statement_repeat1] = STATE(2030), + [anon_sym_esac] = ACTIONS(4785), + [sym__special_characters] = ACTIONS(2257), [anon_sym_DQUOTE] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2259), [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), [anon_sym_BQUOTE] = ACTIONS(149), [anon_sym_LT_LPAREN] = ACTIONS(151), [anon_sym_GT_LPAREN] = ACTIONS(151), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2303), + [sym_word] = ACTIONS(2261), }, - [1746] = { - [anon_sym_PIPE] = ACTIONS(3565), - [anon_sym_RPAREN] = ACTIONS(3567), - [anon_sym_PIPE_AMP] = ACTIONS(3567), - [anon_sym_AMP_AMP] = ACTIONS(3567), - [anon_sym_PIPE_PIPE] = ACTIONS(3567), - [anon_sym_BQUOTE] = ACTIONS(3567), + [1696] = { + [anon_sym_PIPE] = ACTIONS(3477), + [anon_sym_RPAREN] = ACTIONS(3479), + [anon_sym_PIPE_AMP] = ACTIONS(3479), + [anon_sym_AMP_AMP] = ACTIONS(3479), + [anon_sym_PIPE_PIPE] = ACTIONS(3479), + [anon_sym_BQUOTE] = ACTIONS(3479), [sym_comment] = ACTIONS(53), }, - [1747] = { - [anon_sym_esac] = ACTIONS(4930), + [1697] = { + [anon_sym_esac] = ACTIONS(4787), [sym_comment] = ACTIONS(53), }, - [1748] = { - [sym_case_item] = STATE(1522), - [sym_last_case_item] = STATE(2107), - [sym_concatenation] = STATE(1079), - [sym_string] = STATE(1077), - [sym_simple_expansion] = STATE(1077), - [sym_string_expansion] = STATE(1077), - [sym_expansion] = STATE(1077), - [sym_command_substitution] = STATE(1077), - [sym_process_substitution] = STATE(1077), - [aux_sym_case_statement_repeat1] = STATE(1522), - [sym__special_characters] = ACTIONS(2299), + [1698] = { + [sym_case_item] = STATE(1472), + [sym_last_case_item] = STATE(2032), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(1046), + [sym_simple_expansion] = STATE(1046), + [sym_string_expansion] = STATE(1046), + [sym_expansion] = STATE(1046), + [sym_command_substitution] = STATE(1046), + [sym_process_substitution] = STATE(1046), + [aux_sym_case_statement_repeat1] = STATE(1472), + [sym__special_characters] = ACTIONS(2257), [anon_sym_DQUOTE] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2259), [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), [anon_sym_BQUOTE] = ACTIONS(149), [anon_sym_LT_LPAREN] = ACTIONS(151), [anon_sym_GT_LPAREN] = ACTIONS(151), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2301), + [sym_word] = ACTIONS(2259), }, - [1749] = { - [sym_case_item] = STATE(2109), - [sym_last_case_item] = STATE(2107), - [sym_concatenation] = STATE(1079), - [sym_string] = STATE(1077), - [sym_simple_expansion] = STATE(1077), - [sym_string_expansion] = STATE(1077), - [sym_expansion] = STATE(1077), - [sym_command_substitution] = STATE(1077), - [sym_process_substitution] = STATE(1077), - [aux_sym_case_statement_repeat1] = STATE(2109), - [anon_sym_esac] = ACTIONS(4932), - [sym__special_characters] = ACTIONS(2299), + [1699] = { + [sym_case_item] = STATE(2034), + [sym_last_case_item] = STATE(2032), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(1046), + [sym_simple_expansion] = STATE(1046), + [sym_string_expansion] = STATE(1046), + [sym_expansion] = STATE(1046), + [sym_command_substitution] = STATE(1046), + [sym_process_substitution] = STATE(1046), + [aux_sym_case_statement_repeat1] = STATE(2034), + [anon_sym_esac] = ACTIONS(4789), + [sym__special_characters] = ACTIONS(2257), [anon_sym_DQUOTE] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2259), [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), [anon_sym_BQUOTE] = ACTIONS(149), [anon_sym_LT_LPAREN] = ACTIONS(151), [anon_sym_GT_LPAREN] = ACTIONS(151), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2303), + [sym_word] = ACTIONS(2261), }, - [1750] = { - [sym_file_redirect] = STATE(2110), - [sym_file_descriptor] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(3609), - [anon_sym_RPAREN] = ACTIONS(3611), - [anon_sym_PIPE_AMP] = ACTIONS(3611), - [anon_sym_AMP_AMP] = ACTIONS(3611), - [anon_sym_PIPE_PIPE] = ACTIONS(3611), - [anon_sym_LT] = ACTIONS(2931), - [anon_sym_GT] = ACTIONS(2931), - [anon_sym_GT_GT] = ACTIONS(2933), - [anon_sym_AMP_GT] = ACTIONS(2931), - [anon_sym_AMP_GT_GT] = ACTIONS(2933), - [anon_sym_LT_AMP] = ACTIONS(2933), - [anon_sym_GT_AMP] = ACTIONS(2933), + [1700] = { + [sym_file_redirect] = STATE(2035), + [sym_file_descriptor] = ACTIONS(2887), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_RPAREN] = ACTIONS(3523), + [anon_sym_PIPE_AMP] = ACTIONS(3523), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_PIPE_PIPE] = ACTIONS(3523), + [anon_sym_LT] = ACTIONS(2889), + [anon_sym_GT] = ACTIONS(2889), + [anon_sym_GT_GT] = ACTIONS(2891), + [anon_sym_AMP_GT] = ACTIONS(2889), + [anon_sym_AMP_GT_GT] = ACTIONS(2891), + [anon_sym_LT_AMP] = ACTIONS(2891), + [anon_sym_GT_AMP] = ACTIONS(2891), [sym_comment] = ACTIONS(53), }, - [1751] = { - [sym_file_descriptor] = ACTIONS(3613), - [anon_sym_PIPE] = ACTIONS(3615), - [anon_sym_RPAREN] = ACTIONS(3613), - [anon_sym_PIPE_AMP] = ACTIONS(3613), - [anon_sym_AMP_AMP] = ACTIONS(3613), - [anon_sym_PIPE_PIPE] = ACTIONS(3613), - [anon_sym_LT] = ACTIONS(3615), - [anon_sym_GT] = ACTIONS(3615), - [anon_sym_GT_GT] = ACTIONS(3613), - [anon_sym_AMP_GT] = ACTIONS(3615), - [anon_sym_AMP_GT_GT] = ACTIONS(3613), - [anon_sym_LT_AMP] = ACTIONS(3613), - [anon_sym_GT_AMP] = ACTIONS(3613), - [anon_sym_BQUOTE] = ACTIONS(3613), + [1701] = { + [sym_file_descriptor] = ACTIONS(3525), + [anon_sym_PIPE] = ACTIONS(3527), + [anon_sym_RPAREN] = ACTIONS(3525), + [anon_sym_PIPE_AMP] = ACTIONS(3525), + [anon_sym_AMP_AMP] = ACTIONS(3525), + [anon_sym_PIPE_PIPE] = ACTIONS(3525), + [anon_sym_LT] = ACTIONS(3527), + [anon_sym_GT] = ACTIONS(3527), + [anon_sym_GT_GT] = ACTIONS(3525), + [anon_sym_AMP_GT] = ACTIONS(3527), + [anon_sym_AMP_GT_GT] = ACTIONS(3525), + [anon_sym_LT_AMP] = ACTIONS(3525), + [anon_sym_GT_AMP] = ACTIONS(3525), + [anon_sym_BQUOTE] = ACTIONS(3525), [sym_comment] = ACTIONS(53), }, - [1752] = { - [sym_concatenation] = STATE(2113), - [sym_string] = STATE(2112), - [sym_simple_expansion] = STATE(2112), - [sym_string_expansion] = STATE(2112), - [sym_expansion] = STATE(2112), - [sym_command_substitution] = STATE(2112), - [sym_process_substitution] = STATE(2112), - [sym__special_characters] = ACTIONS(4934), + [1702] = { + [sym_concatenation] = STATE(2038), + [sym_string] = STATE(2037), + [sym_simple_expansion] = STATE(2037), + [sym_string_expansion] = STATE(2037), + [sym_expansion] = STATE(2037), + [sym_command_substitution] = STATE(2037), + [sym_process_substitution] = STATE(2037), + [sym__special_characters] = ACTIONS(4791), [anon_sym_DQUOTE] = ACTIONS(827), [anon_sym_DOLLAR] = ACTIONS(829), - [sym_raw_string] = ACTIONS(4936), + [sym_raw_string] = ACTIONS(4793), [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), [anon_sym_BQUOTE] = ACTIONS(837), [anon_sym_LT_LPAREN] = ACTIONS(839), [anon_sym_GT_LPAREN] = ACTIONS(839), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4936), + [sym_word] = ACTIONS(4793), }, - [1753] = { - [aux_sym_concatenation_repeat1] = STATE(2114), - [sym__concat] = ACTIONS(1886), + [1703] = { + [aux_sym_concatenation_repeat1] = STATE(2039), + [sym__concat] = ACTIONS(1874), [anon_sym_PIPE] = ACTIONS(665), [anon_sym_RPAREN] = ACTIONS(661), [anon_sym_PIPE_AMP] = ACTIONS(661), @@ -50731,9 +46398,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(661), [sym_comment] = ACTIONS(53), }, - [1754] = { - [aux_sym_concatenation_repeat1] = STATE(2114), - [sym__concat] = ACTIONS(1886), + [1704] = { + [aux_sym_concatenation_repeat1] = STATE(2039), + [sym__concat] = ACTIONS(1874), [anon_sym_PIPE] = ACTIONS(679), [anon_sym_RPAREN] = ACTIONS(677), [anon_sym_PIPE_AMP] = ACTIONS(677), @@ -50741,7 +46408,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(677), [sym_comment] = ACTIONS(53), }, - [1755] = { + [1705] = { [anon_sym_PIPE] = ACTIONS(679), [anon_sym_RPAREN] = ACTIONS(677), [anon_sym_PIPE_AMP] = ACTIONS(677), @@ -50750,39 +46417,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(677), [sym_comment] = ACTIONS(53), }, - [1756] = { - [anon_sym_PIPE] = ACTIONS(3641), - [anon_sym_RPAREN] = ACTIONS(3643), - [anon_sym_PIPE_AMP] = ACTIONS(3643), - [anon_sym_AMP_AMP] = ACTIONS(3643), - [anon_sym_PIPE_PIPE] = ACTIONS(3643), - [anon_sym_BQUOTE] = ACTIONS(3643), + [1706] = { + [anon_sym_PIPE] = ACTIONS(3553), + [anon_sym_RPAREN] = ACTIONS(3555), + [anon_sym_PIPE_AMP] = ACTIONS(3555), + [anon_sym_AMP_AMP] = ACTIONS(3555), + [anon_sym_PIPE_PIPE] = ACTIONS(3555), + [anon_sym_BQUOTE] = ACTIONS(3555), [sym_comment] = ACTIONS(53), }, - [1757] = { - [sym_concatenation] = STATE(2117), - [sym_string] = STATE(2116), - [sym_simple_expansion] = STATE(2116), - [sym_string_expansion] = STATE(2116), - [sym_expansion] = STATE(2116), - [sym_command_substitution] = STATE(2116), - [sym_process_substitution] = STATE(2116), - [sym__special_characters] = ACTIONS(4938), - [anon_sym_DQUOTE] = ACTIONS(4098), - [anon_sym_DOLLAR] = ACTIONS(4100), - [sym_raw_string] = ACTIONS(4940), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4106), - [anon_sym_BQUOTE] = ACTIONS(4108), - [anon_sym_LT_LPAREN] = ACTIONS(4110), - [anon_sym_GT_LPAREN] = ACTIONS(4110), + [1707] = { + [sym_concatenation] = STATE(2042), + [sym_string] = STATE(2041), + [sym_simple_expansion] = STATE(2041), + [sym_string_expansion] = STATE(2041), + [sym_expansion] = STATE(2041), + [sym_command_substitution] = STATE(2041), + [sym_process_substitution] = STATE(2041), + [sym__special_characters] = ACTIONS(4795), + [anon_sym_DQUOTE] = ACTIONS(4010), + [anon_sym_DOLLAR] = ACTIONS(4012), + [sym_raw_string] = ACTIONS(4797), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4016), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4018), + [anon_sym_BQUOTE] = ACTIONS(4020), + [anon_sym_LT_LPAREN] = ACTIONS(4022), + [anon_sym_GT_LPAREN] = ACTIONS(4022), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4940), + [sym_word] = ACTIONS(4797), }, - [1758] = { - [aux_sym_concatenation_repeat1] = STATE(2119), + [1708] = { + [aux_sym_concatenation_repeat1] = STATE(2044), [sym_file_descriptor] = ACTIONS(661), - [sym__concat] = ACTIONS(4942), + [sym__concat] = ACTIONS(4799), [anon_sym_PIPE] = ACTIONS(665), [anon_sym_RPAREN] = ACTIONS(661), [anon_sym_PIPE_AMP] = ACTIONS(661), @@ -50800,12 +46467,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(661), [sym_comment] = ACTIONS(53), }, - [1759] = { + [1709] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(2121), - [anon_sym_DQUOTE] = ACTIONS(4944), + [aux_sym_string_repeat1] = STATE(2046), + [anon_sym_DQUOTE] = ACTIONS(4801), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -50813,25 +46480,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(237), [sym_comment] = ACTIONS(177), }, - [1760] = { - [sym_string] = STATE(2123), - [anon_sym_DQUOTE] = ACTIONS(4098), - [anon_sym_DOLLAR] = ACTIONS(4946), - [sym_raw_string] = ACTIONS(4948), - [anon_sym_POUND] = ACTIONS(4946), - [anon_sym_DASH] = ACTIONS(4946), + [1710] = { + [sym_string] = STATE(2048), + [anon_sym_DQUOTE] = ACTIONS(4010), + [anon_sym_DOLLAR] = ACTIONS(4803), + [sym_raw_string] = ACTIONS(4805), + [anon_sym_POUND] = ACTIONS(4803), + [anon_sym_DASH] = ACTIONS(4803), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4950), - [anon_sym_STAR] = ACTIONS(4946), - [anon_sym_AT] = ACTIONS(4946), - [anon_sym_QMARK] = ACTIONS(4946), - [anon_sym_0] = ACTIONS(4952), - [anon_sym__] = ACTIONS(4952), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4807), + [anon_sym_STAR] = ACTIONS(4803), + [anon_sym_AT] = ACTIONS(4803), + [anon_sym_QMARK] = ACTIONS(4803), + [anon_sym_0] = ACTIONS(4809), + [anon_sym__] = ACTIONS(4809), }, - [1761] = { - [aux_sym_concatenation_repeat1] = STATE(2119), + [1711] = { + [aux_sym_concatenation_repeat1] = STATE(2044), [sym_file_descriptor] = ACTIONS(677), - [sym__concat] = ACTIONS(4942), + [sym__concat] = ACTIONS(4799), [anon_sym_PIPE] = ACTIONS(679), [anon_sym_RPAREN] = ACTIONS(677), [anon_sym_PIPE_AMP] = ACTIONS(677), @@ -50849,36 +46516,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(677), [sym_comment] = ACTIONS(53), }, - [1762] = { - [sym_subscript] = STATE(2129), - [sym_variable_name] = ACTIONS(4954), - [anon_sym_DOLLAR] = ACTIONS(4956), - [anon_sym_POUND] = ACTIONS(4958), - [anon_sym_DASH] = ACTIONS(4956), + [1712] = { + [sym_subscript] = STATE(2054), + [sym_variable_name] = ACTIONS(4811), + [anon_sym_DOLLAR] = ACTIONS(4813), + [anon_sym_POUND] = ACTIONS(4815), + [anon_sym_DASH] = ACTIONS(4813), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4960), - [anon_sym_STAR] = ACTIONS(4956), - [anon_sym_AT] = ACTIONS(4956), - [anon_sym_QMARK] = ACTIONS(4956), - [anon_sym_0] = ACTIONS(4962), - [anon_sym__] = ACTIONS(4962), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4817), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_AT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_0] = ACTIONS(4819), + [anon_sym__] = ACTIONS(4819), }, - [1763] = { - [sym_for_statement] = STATE(2130), - [sym_while_statement] = STATE(2130), - [sym_if_statement] = STATE(2130), - [sym_case_statement] = STATE(2130), - [sym_function_definition] = STATE(2130), - [sym_subshell] = STATE(2130), - [sym_pipeline] = STATE(2130), - [sym_list] = STATE(2130), - [sym_negated_command] = STATE(2130), - [sym_test_command] = STATE(2130), - [sym_declaration_command] = STATE(2130), - [sym_unset_command] = STATE(2130), - [sym_command] = STATE(2130), + [1713] = { + [sym_for_statement] = STATE(2055), + [sym_while_statement] = STATE(2055), + [sym_if_statement] = STATE(2055), + [sym_case_statement] = STATE(2055), + [sym_function_definition] = STATE(2055), + [sym_subshell] = STATE(2055), + [sym_pipeline] = STATE(2055), + [sym_list] = STATE(2055), + [sym_negated_command] = STATE(2055), + [sym_test_command] = STATE(2055), + [sym_declaration_command] = STATE(2055), + [sym_unset_command] = STATE(2055), + [sym_command] = STATE(2055), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2131), + [sym_variable_assignment] = STATE(2056), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -50926,22 +46593,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(301), }, - [1764] = { - [sym_for_statement] = STATE(2132), - [sym_while_statement] = STATE(2132), - [sym_if_statement] = STATE(2132), - [sym_case_statement] = STATE(2132), - [sym_function_definition] = STATE(2132), - [sym_subshell] = STATE(2132), - [sym_pipeline] = STATE(2132), - [sym_list] = STATE(2132), - [sym_negated_command] = STATE(2132), - [sym_test_command] = STATE(2132), - [sym_declaration_command] = STATE(2132), - [sym_unset_command] = STATE(2132), - [sym_command] = STATE(2132), + [1714] = { + [sym_for_statement] = STATE(2057), + [sym_while_statement] = STATE(2057), + [sym_if_statement] = STATE(2057), + [sym_case_statement] = STATE(2057), + [sym_function_definition] = STATE(2057), + [sym_subshell] = STATE(2057), + [sym_pipeline] = STATE(2057), + [sym_list] = STATE(2057), + [sym_negated_command] = STATE(2057), + [sym_test_command] = STATE(2057), + [sym_declaration_command] = STATE(2057), + [sym_unset_command] = STATE(2057), + [sym_command] = STATE(2057), [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(2133), + [sym_variable_assignment] = STATE(2058), [sym_subscript] = STATE(183), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -50989,22 +46656,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(323), }, - [1765] = { - [sym_for_statement] = STATE(2134), - [sym_while_statement] = STATE(2134), - [sym_if_statement] = STATE(2134), - [sym_case_statement] = STATE(2134), - [sym_function_definition] = STATE(2134), - [sym_subshell] = STATE(2134), - [sym_pipeline] = STATE(2134), - [sym_list] = STATE(2134), - [sym_negated_command] = STATE(2134), - [sym_test_command] = STATE(2134), - [sym_declaration_command] = STATE(2134), - [sym_unset_command] = STATE(2134), - [sym_command] = STATE(2134), + [1715] = { + [sym_for_statement] = STATE(2059), + [sym_while_statement] = STATE(2059), + [sym_if_statement] = STATE(2059), + [sym_case_statement] = STATE(2059), + [sym_function_definition] = STATE(2059), + [sym_subshell] = STATE(2059), + [sym_pipeline] = STATE(2059), + [sym_list] = STATE(2059), + [sym_negated_command] = STATE(2059), + [sym_test_command] = STATE(2059), + [sym_declaration_command] = STATE(2059), + [sym_unset_command] = STATE(2059), + [sym_command] = STATE(2059), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2135), + [sym_variable_assignment] = STATE(2060), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -51052,7 +46719,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(301), }, - [1766] = { + [1716] = { [sym_file_descriptor] = ACTIONS(677), [anon_sym_PIPE] = ACTIONS(679), [anon_sym_RPAREN] = ACTIONS(677), @@ -51072,141 +46739,141 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(677), [sym_comment] = ACTIONS(53), }, - [1767] = { - [sym_file_descriptor] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_RPAREN] = ACTIONS(2066), - [anon_sym_PIPE_AMP] = ACTIONS(2066), - [anon_sym_AMP_AMP] = ACTIONS(2066), - [anon_sym_PIPE_PIPE] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(2068), - [anon_sym_GT] = ACTIONS(2068), - [anon_sym_GT_GT] = ACTIONS(2066), - [anon_sym_AMP_GT] = ACTIONS(2068), - [anon_sym_AMP_GT_GT] = ACTIONS(2066), - [anon_sym_LT_AMP] = ACTIONS(2066), - [anon_sym_GT_AMP] = ACTIONS(2066), - [anon_sym_LT_LT] = ACTIONS(2068), - [anon_sym_LT_LT_DASH] = ACTIONS(2066), - [anon_sym_LT_LT_LT] = ACTIONS(2066), - [anon_sym_BQUOTE] = ACTIONS(2066), + [1717] = { + [sym_file_descriptor] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(2056), + [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(2056), + [anon_sym_GT] = ACTIONS(2056), + [anon_sym_GT_GT] = ACTIONS(2054), + [anon_sym_AMP_GT] = ACTIONS(2056), + [anon_sym_AMP_GT_GT] = ACTIONS(2054), + [anon_sym_LT_AMP] = ACTIONS(2054), + [anon_sym_GT_AMP] = ACTIONS(2054), + [anon_sym_LT_LT] = ACTIONS(2056), + [anon_sym_LT_LT_DASH] = ACTIONS(2054), + [anon_sym_LT_LT_LT] = ACTIONS(2054), + [anon_sym_BQUOTE] = ACTIONS(2054), [sym_comment] = ACTIONS(53), }, - [1768] = { - [aux_sym_concatenation_repeat1] = STATE(2119), - [sym_file_descriptor] = ACTIONS(2070), - [sym__concat] = ACTIONS(4942), - [anon_sym_PIPE] = ACTIONS(2072), + [1718] = { + [aux_sym_concatenation_repeat1] = STATE(2044), + [sym_file_descriptor] = ACTIONS(2058), + [sym__concat] = ACTIONS(4799), + [anon_sym_PIPE] = ACTIONS(2060), + [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(2060), + [anon_sym_GT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2058), + [anon_sym_AMP_GT] = ACTIONS(2060), + [anon_sym_AMP_GT_GT] = ACTIONS(2058), + [anon_sym_LT_AMP] = ACTIONS(2058), + [anon_sym_GT_AMP] = ACTIONS(2058), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_LT_LT_DASH] = ACTIONS(2058), + [anon_sym_LT_LT_LT] = ACTIONS(2058), + [sym_comment] = ACTIONS(53), + }, + [1719] = { + [aux_sym_concatenation_repeat1] = STATE(2044), + [sym_file_descriptor] = ACTIONS(2062), + [sym__concat] = ACTIONS(4799), + [anon_sym_PIPE] = ACTIONS(2064), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_PIPE_AMP] = ACTIONS(2062), + [anon_sym_AMP_AMP] = ACTIONS(2062), + [anon_sym_PIPE_PIPE] = ACTIONS(2062), + [anon_sym_LT] = ACTIONS(2064), + [anon_sym_GT] = ACTIONS(2064), + [anon_sym_GT_GT] = ACTIONS(2062), + [anon_sym_AMP_GT] = ACTIONS(2064), + [anon_sym_AMP_GT_GT] = ACTIONS(2062), + [anon_sym_LT_AMP] = ACTIONS(2062), + [anon_sym_GT_AMP] = ACTIONS(2062), + [anon_sym_LT_LT] = ACTIONS(2064), + [anon_sym_LT_LT_DASH] = ACTIONS(2062), + [anon_sym_LT_LT_LT] = ACTIONS(2062), + [sym_comment] = ACTIONS(53), + }, + [1720] = { + [sym_file_descriptor] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2064), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_PIPE_AMP] = ACTIONS(2062), + [anon_sym_AMP_AMP] = ACTIONS(2062), + [anon_sym_PIPE_PIPE] = ACTIONS(2062), + [anon_sym_LT] = ACTIONS(2064), + [anon_sym_GT] = ACTIONS(2064), + [anon_sym_GT_GT] = ACTIONS(2062), + [anon_sym_AMP_GT] = ACTIONS(2064), + [anon_sym_AMP_GT_GT] = ACTIONS(2062), + [anon_sym_LT_AMP] = ACTIONS(2062), + [anon_sym_GT_AMP] = ACTIONS(2062), + [anon_sym_LT_LT] = ACTIONS(2064), + [anon_sym_LT_LT_DASH] = ACTIONS(2062), + [anon_sym_LT_LT_LT] = ACTIONS(2062), + [anon_sym_BQUOTE] = ACTIONS(2062), + [sym_comment] = ACTIONS(53), + }, + [1721] = { + [sym_file_redirect] = STATE(1721), + [sym_heredoc_redirect] = STATE(1721), + [sym_herestring_redirect] = STATE(1721), + [aux_sym_while_statement_repeat1] = STATE(1721), + [sym_file_descriptor] = ACTIONS(4821), + [anon_sym_PIPE] = ACTIONS(2075), [anon_sym_RPAREN] = ACTIONS(2070), [anon_sym_PIPE_AMP] = ACTIONS(2070), [anon_sym_AMP_AMP] = ACTIONS(2070), [anon_sym_PIPE_PIPE] = ACTIONS(2070), - [anon_sym_LT] = ACTIONS(2072), - [anon_sym_GT] = ACTIONS(2072), - [anon_sym_GT_GT] = ACTIONS(2070), - [anon_sym_AMP_GT] = ACTIONS(2072), - [anon_sym_AMP_GT_GT] = ACTIONS(2070), - [anon_sym_LT_AMP] = ACTIONS(2070), - [anon_sym_GT_AMP] = ACTIONS(2070), - [anon_sym_LT_LT] = ACTIONS(2072), - [anon_sym_LT_LT_DASH] = ACTIONS(2070), - [anon_sym_LT_LT_LT] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(4824), + [anon_sym_GT] = ACTIONS(4824), + [anon_sym_GT_GT] = ACTIONS(4827), + [anon_sym_AMP_GT] = ACTIONS(4824), + [anon_sym_AMP_GT_GT] = ACTIONS(4827), + [anon_sym_LT_AMP] = ACTIONS(4827), + [anon_sym_GT_AMP] = ACTIONS(4827), + [anon_sym_LT_LT] = ACTIONS(4830), + [anon_sym_LT_LT_DASH] = ACTIONS(4833), + [anon_sym_LT_LT_LT] = ACTIONS(4836), [sym_comment] = ACTIONS(53), }, - [1769] = { - [aux_sym_concatenation_repeat1] = STATE(2119), - [sym_file_descriptor] = ACTIONS(2074), - [sym__concat] = ACTIONS(4942), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2074), - [anon_sym_PIPE_AMP] = ACTIONS(2074), - [anon_sym_AMP_AMP] = ACTIONS(2074), - [anon_sym_PIPE_PIPE] = ACTIONS(2074), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_GT_GT] = ACTIONS(2074), - [anon_sym_AMP_GT] = ACTIONS(2076), - [anon_sym_AMP_GT_GT] = ACTIONS(2074), - [anon_sym_LT_AMP] = ACTIONS(2074), - [anon_sym_GT_AMP] = ACTIONS(2074), - [anon_sym_LT_LT] = ACTIONS(2076), - [anon_sym_LT_LT_DASH] = ACTIONS(2074), - [anon_sym_LT_LT_LT] = ACTIONS(2074), + [1722] = { + [sym_variable_name] = ACTIONS(2127), + [anon_sym_PIPE] = ACTIONS(2129), + [anon_sym_RPAREN] = ACTIONS(2127), + [anon_sym_PIPE_AMP] = ACTIONS(2127), + [anon_sym_AMP_AMP] = ACTIONS(2127), + [anon_sym_PIPE_PIPE] = ACTIONS(2127), + [sym__special_characters] = ACTIONS(2127), + [anon_sym_DQUOTE] = ACTIONS(2127), + [anon_sym_DOLLAR] = ACTIONS(2129), + [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(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2129), + [sym_word] = ACTIONS(2129), }, - [1770] = { - [sym_file_descriptor] = ACTIONS(2074), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2074), - [anon_sym_PIPE_AMP] = ACTIONS(2074), - [anon_sym_AMP_AMP] = ACTIONS(2074), - [anon_sym_PIPE_PIPE] = ACTIONS(2074), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_GT_GT] = ACTIONS(2074), - [anon_sym_AMP_GT] = ACTIONS(2076), - [anon_sym_AMP_GT_GT] = ACTIONS(2074), - [anon_sym_LT_AMP] = ACTIONS(2074), - [anon_sym_GT_AMP] = ACTIONS(2074), - [anon_sym_LT_LT] = ACTIONS(2076), - [anon_sym_LT_LT_DASH] = ACTIONS(2074), - [anon_sym_LT_LT_LT] = ACTIONS(2074), - [anon_sym_BQUOTE] = ACTIONS(2074), - [sym_comment] = ACTIONS(53), - }, - [1771] = { - [sym_file_redirect] = STATE(1771), - [sym_heredoc_redirect] = STATE(1771), - [sym_herestring_redirect] = STATE(1771), - [aux_sym_while_statement_repeat1] = STATE(1771), - [sym_file_descriptor] = ACTIONS(4964), - [anon_sym_PIPE] = ACTIONS(2087), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_PIPE_AMP] = ACTIONS(2082), - [anon_sym_AMP_AMP] = ACTIONS(2082), - [anon_sym_PIPE_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(4967), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_GT_GT] = ACTIONS(4970), - [anon_sym_AMP_GT] = ACTIONS(4967), - [anon_sym_AMP_GT_GT] = ACTIONS(4970), - [anon_sym_LT_AMP] = ACTIONS(4970), - [anon_sym_GT_AMP] = ACTIONS(4970), - [anon_sym_LT_LT] = ACTIONS(4973), - [anon_sym_LT_LT_DASH] = ACTIONS(4976), - [anon_sym_LT_LT_LT] = ACTIONS(4979), - [sym_comment] = ACTIONS(53), - }, - [1772] = { - [sym_variable_name] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(2141), - [anon_sym_RPAREN] = ACTIONS(2139), - [anon_sym_PIPE_AMP] = ACTIONS(2139), - [anon_sym_AMP_AMP] = ACTIONS(2139), - [anon_sym_PIPE_PIPE] = ACTIONS(2139), - [sym__special_characters] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2139), - [anon_sym_DOLLAR] = ACTIONS(2141), - [sym_raw_string] = ACTIONS(2139), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2139), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2139), - [anon_sym_BQUOTE] = ACTIONS(2139), - [anon_sym_LT_LPAREN] = ACTIONS(2139), - [anon_sym_GT_LPAREN] = ACTIONS(2139), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2141), - [sym_word] = ACTIONS(2141), - }, - [1773] = { - [sym_concatenation] = STATE(1019), + [1723] = { + [sym_concatenation] = STATE(1009), [sym_string] = STATE(563), [sym_simple_expansion] = STATE(563), [sym_string_expansion] = STATE(563), [sym_expansion] = STATE(563), [sym_command_substitution] = STATE(563), [sym_process_substitution] = STATE(563), - [aux_sym_for_statement_repeat1] = STATE(1019), - [anon_sym_RPAREN] = ACTIONS(4982), + [aux_sym_for_statement_repeat1] = STATE(1009), + [anon_sym_RPAREN] = ACTIONS(4839), [sym__special_characters] = ACTIONS(1113), [anon_sym_DQUOTE] = ACTIONS(1115), [anon_sym_DOLLAR] = ACTIONS(1117), @@ -51219,1194 +46886,1194 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(1119), }, - [1774] = { - [sym__concat] = ACTIONS(2752), - [sym_variable_name] = ACTIONS(2752), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_RPAREN] = 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(2754), - [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), + [1724] = { + [sym__concat] = ACTIONS(2710), + [sym_variable_name] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2712), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_PIPE_AMP] = ACTIONS(2710), + [anon_sym_AMP_AMP] = ACTIONS(2710), + [anon_sym_PIPE_PIPE] = ACTIONS(2710), + [sym__special_characters] = ACTIONS(2710), + [anon_sym_DQUOTE] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2712), + [sym_raw_string] = ACTIONS(2710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2710), + [anon_sym_BQUOTE] = ACTIONS(2710), + [anon_sym_LT_LPAREN] = ACTIONS(2710), + [anon_sym_GT_LPAREN] = ACTIONS(2710), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2754), - [sym_word] = ACTIONS(2754), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2712), + [sym_word] = ACTIONS(2712), + }, + [1725] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4841), + [sym_comment] = ACTIONS(53), + }, + [1726] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4843), + [sym_comment] = ACTIONS(53), + }, + [1727] = { + [anon_sym_RBRACE] = ACTIONS(4843), + [sym_comment] = ACTIONS(53), + }, + [1728] = { + [sym_concatenation] = STATE(2065), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2065), + [anon_sym_RBRACE] = ACTIONS(4845), + [anon_sym_EQ] = ACTIONS(4847), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4847), + [anon_sym_COLON_QMARK] = ACTIONS(4847), + [anon_sym_COLON_DASH] = ACTIONS(4847), + [anon_sym_PERCENT] = ACTIONS(4847), + [anon_sym_DASH] = ACTIONS(4847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1729] = { + [sym__concat] = ACTIONS(2788), + [sym_variable_name] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_RPAREN] = ACTIONS(2788), + [anon_sym_PIPE_AMP] = ACTIONS(2788), + [anon_sym_AMP_AMP] = ACTIONS(2788), + [anon_sym_PIPE_PIPE] = ACTIONS(2788), + [sym__special_characters] = ACTIONS(2788), + [anon_sym_DQUOTE] = ACTIONS(2788), + [anon_sym_DOLLAR] = ACTIONS(2790), + [sym_raw_string] = ACTIONS(2788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2788), + [anon_sym_BQUOTE] = ACTIONS(2788), + [anon_sym_LT_LPAREN] = ACTIONS(2788), + [anon_sym_GT_LPAREN] = ACTIONS(2788), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2790), + [sym_word] = ACTIONS(2790), + }, + [1730] = { + [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(4843), + [sym__special_characters] = ACTIONS(4851), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(4853), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4853), + }, + [1731] = { + [sym__concat] = ACTIONS(2831), + [sym_variable_name] = ACTIONS(2831), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_RPAREN] = ACTIONS(2831), + [anon_sym_PIPE_AMP] = ACTIONS(2831), + [anon_sym_AMP_AMP] = ACTIONS(2831), + [anon_sym_PIPE_PIPE] = ACTIONS(2831), + [sym__special_characters] = ACTIONS(2831), + [anon_sym_DQUOTE] = ACTIONS(2831), + [anon_sym_DOLLAR] = ACTIONS(2833), + [sym_raw_string] = ACTIONS(2831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2831), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2831), + [anon_sym_BQUOTE] = ACTIONS(2831), + [anon_sym_LT_LPAREN] = ACTIONS(2831), + [anon_sym_GT_LPAREN] = ACTIONS(2831), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2833), + [sym_word] = ACTIONS(2833), + }, + [1732] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4855), + }, + [1733] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4857), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1734] = { + [sym__concat] = ACTIONS(2839), + [sym_variable_name] = ACTIONS(2839), + [anon_sym_PIPE] = ACTIONS(2841), + [anon_sym_RPAREN] = ACTIONS(2839), + [anon_sym_PIPE_AMP] = ACTIONS(2839), + [anon_sym_AMP_AMP] = ACTIONS(2839), + [anon_sym_PIPE_PIPE] = ACTIONS(2839), + [sym__special_characters] = ACTIONS(2839), + [anon_sym_DQUOTE] = ACTIONS(2839), + [anon_sym_DOLLAR] = ACTIONS(2841), + [sym_raw_string] = ACTIONS(2839), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2839), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2839), + [anon_sym_BQUOTE] = ACTIONS(2839), + [anon_sym_LT_LPAREN] = ACTIONS(2839), + [anon_sym_GT_LPAREN] = ACTIONS(2839), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2841), + [sym_word] = ACTIONS(2841), + }, + [1735] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4859), + }, + [1736] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4861), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1737] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4863), + }, + [1738] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4843), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1739] = { + [sym_concatenation] = STATE(2075), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2075), + [anon_sym_RBRACE] = ACTIONS(4865), + [anon_sym_EQ] = ACTIONS(4867), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4867), + [anon_sym_COLON_QMARK] = ACTIONS(4867), + [anon_sym_COLON_DASH] = ACTIONS(4867), + [anon_sym_PERCENT] = ACTIONS(4867), + [anon_sym_DASH] = ACTIONS(4867), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1740] = { + [sym__concat] = ACTIONS(2855), + [sym_variable_name] = ACTIONS(2855), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2855), + [anon_sym_PIPE_AMP] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [sym__special_characters] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(2855), + [anon_sym_DOLLAR] = ACTIONS(2857), + [sym_raw_string] = ACTIONS(2855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2855), + [anon_sym_BQUOTE] = ACTIONS(2855), + [anon_sym_LT_LPAREN] = ACTIONS(2855), + [anon_sym_GT_LPAREN] = ACTIONS(2855), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2857), + [sym_word] = ACTIONS(2857), + }, + [1741] = { + [sym_concatenation] = STATE(2077), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2077), + [anon_sym_RBRACE] = ACTIONS(4871), + [anon_sym_EQ] = ACTIONS(4873), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4875), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4873), + [anon_sym_COLON_QMARK] = ACTIONS(4873), + [anon_sym_COLON_DASH] = ACTIONS(4873), + [anon_sym_PERCENT] = ACTIONS(4873), + [anon_sym_DASH] = ACTIONS(4873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1742] = { + [sym__concat] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2712), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_PIPE_AMP] = ACTIONS(2710), + [anon_sym_AMP_AMP] = ACTIONS(2710), + [anon_sym_PIPE_PIPE] = ACTIONS(2710), + [sym__special_characters] = ACTIONS(2710), + [anon_sym_DQUOTE] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2712), + [sym_raw_string] = ACTIONS(2710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2710), + [anon_sym_BQUOTE] = ACTIONS(2710), + [anon_sym_LT_LPAREN] = ACTIONS(2710), + [anon_sym_GT_LPAREN] = ACTIONS(2710), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2712), + [sym_word] = ACTIONS(2712), + }, + [1743] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4877), + [sym_comment] = ACTIONS(53), + }, + [1744] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4879), + [sym_comment] = ACTIONS(53), + }, + [1745] = { + [anon_sym_RBRACE] = ACTIONS(4879), + [sym_comment] = ACTIONS(53), + }, + [1746] = { + [sym_concatenation] = STATE(2081), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2081), + [anon_sym_RBRACE] = ACTIONS(4881), + [anon_sym_EQ] = ACTIONS(4883), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4883), + [anon_sym_COLON_QMARK] = ACTIONS(4883), + [anon_sym_COLON_DASH] = ACTIONS(4883), + [anon_sym_PERCENT] = ACTIONS(4883), + [anon_sym_DASH] = ACTIONS(4883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1747] = { + [sym__concat] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_RPAREN] = ACTIONS(2788), + [anon_sym_PIPE_AMP] = ACTIONS(2788), + [anon_sym_AMP_AMP] = ACTIONS(2788), + [anon_sym_PIPE_PIPE] = ACTIONS(2788), + [sym__special_characters] = ACTIONS(2788), + [anon_sym_DQUOTE] = ACTIONS(2788), + [anon_sym_DOLLAR] = ACTIONS(2790), + [sym_raw_string] = ACTIONS(2788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2788), + [anon_sym_BQUOTE] = ACTIONS(2788), + [anon_sym_LT_LPAREN] = ACTIONS(2788), + [anon_sym_GT_LPAREN] = ACTIONS(2788), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2790), + [sym_word] = ACTIONS(2790), + }, + [1748] = { + [sym_concatenation] = STATE(2084), + [sym_string] = STATE(2083), + [sym_simple_expansion] = STATE(2083), + [sym_string_expansion] = STATE(2083), + [sym_expansion] = STATE(2083), + [sym_command_substitution] = STATE(2083), + [sym_process_substitution] = STATE(2083), + [anon_sym_RBRACE] = ACTIONS(4879), + [sym__special_characters] = ACTIONS(4887), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4889), + }, + [1749] = { + [sym__concat] = ACTIONS(2831), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_RPAREN] = ACTIONS(2831), + [anon_sym_PIPE_AMP] = ACTIONS(2831), + [anon_sym_AMP_AMP] = ACTIONS(2831), + [anon_sym_PIPE_PIPE] = ACTIONS(2831), + [sym__special_characters] = ACTIONS(2831), + [anon_sym_DQUOTE] = ACTIONS(2831), + [anon_sym_DOLLAR] = ACTIONS(2833), + [sym_raw_string] = ACTIONS(2831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2831), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2831), + [anon_sym_BQUOTE] = ACTIONS(2831), + [anon_sym_LT_LPAREN] = ACTIONS(2831), + [anon_sym_GT_LPAREN] = ACTIONS(2831), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2833), + [sym_word] = ACTIONS(2833), + }, + [1750] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4891), + }, + [1751] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4893), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1752] = { + [sym__concat] = ACTIONS(2839), + [anon_sym_PIPE] = ACTIONS(2841), + [anon_sym_RPAREN] = ACTIONS(2839), + [anon_sym_PIPE_AMP] = ACTIONS(2839), + [anon_sym_AMP_AMP] = ACTIONS(2839), + [anon_sym_PIPE_PIPE] = ACTIONS(2839), + [sym__special_characters] = ACTIONS(2839), + [anon_sym_DQUOTE] = ACTIONS(2839), + [anon_sym_DOLLAR] = ACTIONS(2841), + [sym_raw_string] = ACTIONS(2839), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2839), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2839), + [anon_sym_BQUOTE] = ACTIONS(2839), + [anon_sym_LT_LPAREN] = ACTIONS(2839), + [anon_sym_GT_LPAREN] = ACTIONS(2839), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2841), + [sym_word] = ACTIONS(2841), + }, + [1753] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4895), + }, + [1754] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4897), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1755] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4899), + }, + [1756] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1757] = { + [sym_concatenation] = STATE(2091), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2091), + [anon_sym_RBRACE] = ACTIONS(4901), + [anon_sym_EQ] = ACTIONS(4903), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4903), + [anon_sym_COLON_QMARK] = ACTIONS(4903), + [anon_sym_COLON_DASH] = ACTIONS(4903), + [anon_sym_PERCENT] = ACTIONS(4903), + [anon_sym_DASH] = ACTIONS(4903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1758] = { + [sym__concat] = ACTIONS(2855), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2855), + [anon_sym_PIPE_AMP] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [sym__special_characters] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(2855), + [anon_sym_DOLLAR] = ACTIONS(2857), + [sym_raw_string] = ACTIONS(2855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2855), + [anon_sym_BQUOTE] = ACTIONS(2855), + [anon_sym_LT_LPAREN] = ACTIONS(2855), + [anon_sym_GT_LPAREN] = ACTIONS(2855), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2857), + [sym_word] = ACTIONS(2857), + }, + [1759] = { + [sym_concatenation] = STATE(2093), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2093), + [anon_sym_RBRACE] = ACTIONS(4907), + [anon_sym_EQ] = ACTIONS(4909), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4911), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4909), + [anon_sym_COLON_QMARK] = ACTIONS(4909), + [anon_sym_COLON_DASH] = ACTIONS(4909), + [anon_sym_PERCENT] = ACTIONS(4909), + [anon_sym_DASH] = ACTIONS(4909), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1760] = { + [sym__simple_heredoc_body] = ACTIONS(3829), + [sym__heredoc_body_beginning] = ACTIONS(3829), + [sym_file_descriptor] = ACTIONS(3829), + [sym__concat] = ACTIONS(3829), + [anon_sym_PIPE] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(3829), + [anon_sym_PIPE_AMP] = ACTIONS(3829), + [anon_sym_AMP_AMP] = ACTIONS(3829), + [anon_sym_PIPE_PIPE] = ACTIONS(3829), + [anon_sym_EQ_TILDE] = ACTIONS(3831), + [anon_sym_EQ_EQ] = ACTIONS(3831), + [anon_sym_LT] = ACTIONS(3831), + [anon_sym_GT] = ACTIONS(3831), + [anon_sym_GT_GT] = ACTIONS(3829), + [anon_sym_AMP_GT] = ACTIONS(3831), + [anon_sym_AMP_GT_GT] = ACTIONS(3829), + [anon_sym_LT_AMP] = ACTIONS(3829), + [anon_sym_GT_AMP] = ACTIONS(3829), + [anon_sym_LT_LT] = ACTIONS(3831), + [anon_sym_LT_LT_DASH] = ACTIONS(3829), + [anon_sym_LT_LT_LT] = ACTIONS(3829), + [sym__special_characters] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(3829), + [anon_sym_DOLLAR] = ACTIONS(3831), + [sym_raw_string] = ACTIONS(3829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3829), + [anon_sym_BQUOTE] = ACTIONS(3829), + [anon_sym_LT_LPAREN] = ACTIONS(3829), + [anon_sym_GT_LPAREN] = ACTIONS(3829), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3831), + }, + [1761] = { + [sym__simple_heredoc_body] = ACTIONS(3835), + [sym__heredoc_body_beginning] = ACTIONS(3835), + [sym_file_descriptor] = ACTIONS(3835), + [sym__concat] = ACTIONS(3835), + [anon_sym_PIPE] = ACTIONS(3837), + [anon_sym_RPAREN] = ACTIONS(3835), + [anon_sym_PIPE_AMP] = ACTIONS(3835), + [anon_sym_AMP_AMP] = ACTIONS(3835), + [anon_sym_PIPE_PIPE] = ACTIONS(3835), + [anon_sym_EQ_TILDE] = ACTIONS(3837), + [anon_sym_EQ_EQ] = ACTIONS(3837), + [anon_sym_LT] = ACTIONS(3837), + [anon_sym_GT] = ACTIONS(3837), + [anon_sym_GT_GT] = ACTIONS(3835), + [anon_sym_AMP_GT] = ACTIONS(3837), + [anon_sym_AMP_GT_GT] = ACTIONS(3835), + [anon_sym_LT_AMP] = ACTIONS(3835), + [anon_sym_GT_AMP] = ACTIONS(3835), + [anon_sym_LT_LT] = ACTIONS(3837), + [anon_sym_LT_LT_DASH] = ACTIONS(3835), + [anon_sym_LT_LT_LT] = ACTIONS(3835), + [sym__special_characters] = ACTIONS(3835), + [anon_sym_DQUOTE] = ACTIONS(3835), + [anon_sym_DOLLAR] = ACTIONS(3837), + [sym_raw_string] = ACTIONS(3835), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3835), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3835), + [anon_sym_BQUOTE] = ACTIONS(3835), + [anon_sym_LT_LPAREN] = ACTIONS(3835), + [anon_sym_GT_LPAREN] = ACTIONS(3835), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3837), + }, + [1762] = { + [sym__simple_heredoc_body] = ACTIONS(3920), + [sym__heredoc_body_beginning] = ACTIONS(3920), + [sym_file_descriptor] = ACTIONS(3920), + [sym__concat] = ACTIONS(3920), + [anon_sym_PIPE] = ACTIONS(3922), + [anon_sym_RPAREN] = ACTIONS(3920), + [anon_sym_PIPE_AMP] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3920), + [anon_sym_PIPE_PIPE] = ACTIONS(3920), + [anon_sym_EQ_TILDE] = ACTIONS(3922), + [anon_sym_EQ_EQ] = ACTIONS(3922), + [anon_sym_LT] = ACTIONS(3922), + [anon_sym_GT] = ACTIONS(3922), + [anon_sym_GT_GT] = ACTIONS(3920), + [anon_sym_AMP_GT] = ACTIONS(3922), + [anon_sym_AMP_GT_GT] = ACTIONS(3920), + [anon_sym_LT_AMP] = ACTIONS(3920), + [anon_sym_GT_AMP] = ACTIONS(3920), + [anon_sym_LT_LT] = ACTIONS(3922), + [anon_sym_LT_LT_DASH] = ACTIONS(3920), + [anon_sym_LT_LT_LT] = ACTIONS(3920), + [sym__special_characters] = ACTIONS(3920), + [anon_sym_DQUOTE] = ACTIONS(3920), + [anon_sym_DOLLAR] = ACTIONS(3922), + [sym_raw_string] = ACTIONS(3920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3920), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3920), + [anon_sym_BQUOTE] = ACTIONS(3920), + [anon_sym_LT_LPAREN] = ACTIONS(3920), + [anon_sym_GT_LPAREN] = ACTIONS(3920), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3922), + }, + [1763] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4913), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1764] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4915), + [sym_comment] = ACTIONS(53), + }, + [1765] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4917), + [sym_comment] = ACTIONS(53), + }, + [1766] = { + [anon_sym_RBRACE] = ACTIONS(4917), + [sym_comment] = ACTIONS(53), + }, + [1767] = { + [sym_concatenation] = STATE(2098), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2098), + [anon_sym_RBRACE] = ACTIONS(4919), + [anon_sym_EQ] = ACTIONS(4921), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4923), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4921), + [anon_sym_COLON_QMARK] = ACTIONS(4921), + [anon_sym_COLON_DASH] = ACTIONS(4921), + [anon_sym_PERCENT] = ACTIONS(4921), + [anon_sym_DASH] = ACTIONS(4921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1768] = { + [sym__simple_heredoc_body] = ACTIONS(3936), + [sym__heredoc_body_beginning] = ACTIONS(3936), + [sym_file_descriptor] = ACTIONS(3936), + [sym__concat] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_RPAREN] = ACTIONS(3936), + [anon_sym_PIPE_AMP] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [anon_sym_EQ_TILDE] = ACTIONS(3938), + [anon_sym_EQ_EQ] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_GT_GT] = ACTIONS(3936), + [anon_sym_AMP_GT] = ACTIONS(3938), + [anon_sym_AMP_GT_GT] = ACTIONS(3936), + [anon_sym_LT_AMP] = ACTIONS(3936), + [anon_sym_GT_AMP] = ACTIONS(3936), + [anon_sym_LT_LT] = ACTIONS(3938), + [anon_sym_LT_LT_DASH] = ACTIONS(3936), + [anon_sym_LT_LT_LT] = ACTIONS(3936), + [sym__special_characters] = ACTIONS(3936), + [anon_sym_DQUOTE] = ACTIONS(3936), + [anon_sym_DOLLAR] = ACTIONS(3938), + [sym_raw_string] = ACTIONS(3936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(3936), + [anon_sym_LT_LPAREN] = ACTIONS(3936), + [anon_sym_GT_LPAREN] = ACTIONS(3936), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3938), + }, + [1769] = { + [sym_concatenation] = STATE(2100), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2100), + [anon_sym_RBRACE] = ACTIONS(4925), + [anon_sym_EQ] = ACTIONS(4927), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4927), + [anon_sym_COLON_QMARK] = ACTIONS(4927), + [anon_sym_COLON_DASH] = ACTIONS(4927), + [anon_sym_PERCENT] = ACTIONS(4927), + [anon_sym_DASH] = ACTIONS(4927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1770] = { + [sym__simple_heredoc_body] = ACTIONS(3946), + [sym__heredoc_body_beginning] = ACTIONS(3946), + [sym_file_descriptor] = ACTIONS(3946), + [sym__concat] = ACTIONS(3946), + [anon_sym_PIPE] = ACTIONS(3948), + [anon_sym_RPAREN] = ACTIONS(3946), + [anon_sym_PIPE_AMP] = ACTIONS(3946), + [anon_sym_AMP_AMP] = ACTIONS(3946), + [anon_sym_PIPE_PIPE] = ACTIONS(3946), + [anon_sym_EQ_TILDE] = ACTIONS(3948), + [anon_sym_EQ_EQ] = ACTIONS(3948), + [anon_sym_LT] = ACTIONS(3948), + [anon_sym_GT] = ACTIONS(3948), + [anon_sym_GT_GT] = ACTIONS(3946), + [anon_sym_AMP_GT] = ACTIONS(3948), + [anon_sym_AMP_GT_GT] = ACTIONS(3946), + [anon_sym_LT_AMP] = ACTIONS(3946), + [anon_sym_GT_AMP] = ACTIONS(3946), + [anon_sym_LT_LT] = ACTIONS(3948), + [anon_sym_LT_LT_DASH] = ACTIONS(3946), + [anon_sym_LT_LT_LT] = ACTIONS(3946), + [sym__special_characters] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(3946), + [anon_sym_DOLLAR] = ACTIONS(3948), + [sym_raw_string] = ACTIONS(3946), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3946), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3946), + [anon_sym_BQUOTE] = ACTIONS(3946), + [anon_sym_LT_LPAREN] = ACTIONS(3946), + [anon_sym_GT_LPAREN] = ACTIONS(3946), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3948), + }, + [1771] = { + [sym_concatenation] = STATE(2102), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2102), + [anon_sym_RBRACE] = ACTIONS(4931), + [anon_sym_EQ] = ACTIONS(4933), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4935), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4933), + [anon_sym_COLON_DASH] = ACTIONS(4933), + [anon_sym_PERCENT] = ACTIONS(4933), + [anon_sym_DASH] = ACTIONS(4933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1772] = { + [sym__simple_heredoc_body] = ACTIONS(3956), + [sym__heredoc_body_beginning] = ACTIONS(3956), + [sym_file_descriptor] = ACTIONS(3956), + [sym__concat] = ACTIONS(3956), + [anon_sym_PIPE] = ACTIONS(3958), + [anon_sym_RPAREN] = ACTIONS(3956), + [anon_sym_PIPE_AMP] = ACTIONS(3956), + [anon_sym_AMP_AMP] = ACTIONS(3956), + [anon_sym_PIPE_PIPE] = ACTIONS(3956), + [anon_sym_EQ_TILDE] = ACTIONS(3958), + [anon_sym_EQ_EQ] = ACTIONS(3958), + [anon_sym_LT] = ACTIONS(3958), + [anon_sym_GT] = ACTIONS(3958), + [anon_sym_GT_GT] = ACTIONS(3956), + [anon_sym_AMP_GT] = ACTIONS(3958), + [anon_sym_AMP_GT_GT] = ACTIONS(3956), + [anon_sym_LT_AMP] = ACTIONS(3956), + [anon_sym_GT_AMP] = ACTIONS(3956), + [anon_sym_LT_LT] = ACTIONS(3958), + [anon_sym_LT_LT_DASH] = ACTIONS(3956), + [anon_sym_LT_LT_LT] = ACTIONS(3956), + [sym__special_characters] = ACTIONS(3956), + [anon_sym_DQUOTE] = ACTIONS(3956), + [anon_sym_DOLLAR] = ACTIONS(3958), + [sym_raw_string] = ACTIONS(3956), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3956), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3956), + [anon_sym_BQUOTE] = ACTIONS(3956), + [anon_sym_LT_LPAREN] = ACTIONS(3956), + [anon_sym_GT_LPAREN] = ACTIONS(3956), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3958), + }, + [1773] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4937), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1774] = { + [sym__simple_heredoc_body] = ACTIONS(3962), + [sym__heredoc_body_beginning] = ACTIONS(3962), + [sym_file_descriptor] = ACTIONS(3962), + [sym__concat] = ACTIONS(3962), + [anon_sym_PIPE] = ACTIONS(3964), + [anon_sym_RPAREN] = ACTIONS(3962), + [anon_sym_PIPE_AMP] = ACTIONS(3962), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3962), + [anon_sym_EQ_TILDE] = ACTIONS(3964), + [anon_sym_EQ_EQ] = ACTIONS(3964), + [anon_sym_LT] = ACTIONS(3964), + [anon_sym_GT] = ACTIONS(3964), + [anon_sym_GT_GT] = ACTIONS(3962), + [anon_sym_AMP_GT] = ACTIONS(3964), + [anon_sym_AMP_GT_GT] = ACTIONS(3962), + [anon_sym_LT_AMP] = ACTIONS(3962), + [anon_sym_GT_AMP] = ACTIONS(3962), + [anon_sym_LT_LT] = ACTIONS(3964), + [anon_sym_LT_LT_DASH] = ACTIONS(3962), + [anon_sym_LT_LT_LT] = ACTIONS(3962), + [sym__special_characters] = ACTIONS(3962), + [anon_sym_DQUOTE] = ACTIONS(3962), + [anon_sym_DOLLAR] = ACTIONS(3964), + [sym_raw_string] = ACTIONS(3962), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3962), + [anon_sym_BQUOTE] = ACTIONS(3962), + [anon_sym_LT_LPAREN] = ACTIONS(3962), + [anon_sym_GT_LPAREN] = ACTIONS(3962), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3964), }, [1775] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(4984), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4939), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1776] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(4986), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_RPAREN] = ACTIONS(3523), + [anon_sym_PIPE_AMP] = ACTIONS(3523), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_PIPE_PIPE] = ACTIONS(3523), + [anon_sym_BQUOTE] = ACTIONS(3523), [sym_comment] = ACTIONS(53), }, [1777] = { - [anon_sym_RBRACE] = ACTIONS(4986), + [aux_sym_concatenation_repeat1] = STATE(1777), + [sym__simple_heredoc_body] = ACTIONS(1642), + [sym__heredoc_body_beginning] = ACTIONS(1642), + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(3068), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_PIPE_AMP] = ACTIONS(1642), + [anon_sym_AMP_AMP] = ACTIONS(1642), + [anon_sym_PIPE_PIPE] = ACTIONS(1642), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1642), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1642), + [anon_sym_LT_AMP] = ACTIONS(1642), + [anon_sym_GT_AMP] = ACTIONS(1642), + [anon_sym_LT_LT] = ACTIONS(1644), + [anon_sym_LT_LT_DASH] = ACTIONS(1642), + [anon_sym_LT_LT_LT] = ACTIONS(1642), [sym_comment] = ACTIONS(53), }, [1778] = { - [sym_concatenation] = STATE(2140), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2140), - [anon_sym_RBRACE] = ACTIONS(4988), - [anon_sym_EQ] = ACTIONS(4990), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4992), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4990), - [anon_sym_COLON_QMARK] = ACTIONS(4990), - [anon_sym_COLON_DASH] = ACTIONS(4990), - [anon_sym_PERCENT] = ACTIONS(4990), - [anon_sym_DASH] = ACTIONS(4990), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(4214), + [anon_sym_RPAREN] = ACTIONS(4216), + [anon_sym_PIPE_AMP] = ACTIONS(4216), + [anon_sym_AMP_AMP] = ACTIONS(4216), + [anon_sym_PIPE_PIPE] = ACTIONS(4216), + [anon_sym_BQUOTE] = ACTIONS(4216), + [sym_comment] = ACTIONS(53), }, [1779] = { - [sym__concat] = ACTIONS(2830), - [sym_variable_name] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_RPAREN] = ACTIONS(2830), - [anon_sym_PIPE_AMP] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [sym__special_characters] = ACTIONS(2830), - [anon_sym_DQUOTE] = ACTIONS(2830), - [anon_sym_DOLLAR] = ACTIONS(2832), - [sym_raw_string] = ACTIONS(2830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2830), - [anon_sym_BQUOTE] = ACTIONS(2830), - [anon_sym_LT_LPAREN] = ACTIONS(2830), - [anon_sym_GT_LPAREN] = ACTIONS(2830), + [aux_sym_concatenation_repeat1] = STATE(1779), + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(2613), + [sym_variable_name] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1642), + [anon_sym_AMP_AMP] = ACTIONS(1642), + [anon_sym_PIPE_PIPE] = ACTIONS(1642), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1642), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1642), + [anon_sym_LT_AMP] = ACTIONS(1642), + [anon_sym_GT_AMP] = ACTIONS(1642), + [sym__special_characters] = ACTIONS(1642), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1642), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1642), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), + [anon_sym_LT_LPAREN] = ACTIONS(1642), + [anon_sym_GT_LPAREN] = ACTIONS(1642), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2832), - [sym_word] = ACTIONS(2832), + [sym_word] = ACTIONS(1642), }, [1780] = { - [sym_concatenation] = STATE(2143), - [sym_string] = STATE(2142), - [sym_simple_expansion] = STATE(2142), - [sym_string_expansion] = STATE(2142), - [sym_expansion] = STATE(2142), - [sym_command_substitution] = STATE(2142), - [sym_process_substitution] = STATE(2142), - [anon_sym_RBRACE] = ACTIONS(4986), - [sym__special_characters] = ACTIONS(4994), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(4996), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), + [sym_file_redirect] = STATE(2035), + [sym_file_descriptor] = ACTIONS(3167), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_PIPE_AMP] = ACTIONS(3523), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_PIPE_PIPE] = ACTIONS(3523), + [anon_sym_LT] = ACTIONS(3169), + [anon_sym_GT] = ACTIONS(3169), + [anon_sym_GT_GT] = ACTIONS(3171), + [anon_sym_AMP_GT] = ACTIONS(3169), + [anon_sym_AMP_GT_GT] = ACTIONS(3171), + [anon_sym_LT_AMP] = ACTIONS(3171), + [anon_sym_GT_AMP] = ACTIONS(3171), + [anon_sym_BQUOTE] = ACTIONS(3523), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4996), }, [1781] = { - [sym__concat] = ACTIONS(2873), - [sym_variable_name] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(2875), - [anon_sym_RPAREN] = ACTIONS(2873), - [anon_sym_PIPE_AMP] = ACTIONS(2873), - [anon_sym_AMP_AMP] = ACTIONS(2873), - [anon_sym_PIPE_PIPE] = ACTIONS(2873), - [sym__special_characters] = ACTIONS(2873), - [anon_sym_DQUOTE] = ACTIONS(2873), - [anon_sym_DOLLAR] = ACTIONS(2875), - [sym_raw_string] = ACTIONS(2873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2873), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2873), - [anon_sym_BQUOTE] = ACTIONS(2873), - [anon_sym_LT_LPAREN] = ACTIONS(2873), - [anon_sym_GT_LPAREN] = ACTIONS(2873), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2875), - [sym_word] = ACTIONS(2875), - }, - [1782] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4998), - }, - [1783] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5000), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1784] = { - [sym__concat] = ACTIONS(2881), - [sym_variable_name] = ACTIONS(2881), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_RPAREN] = ACTIONS(2881), - [anon_sym_PIPE_AMP] = ACTIONS(2881), - [anon_sym_AMP_AMP] = ACTIONS(2881), - [anon_sym_PIPE_PIPE] = ACTIONS(2881), - [sym__special_characters] = ACTIONS(2881), - [anon_sym_DQUOTE] = ACTIONS(2881), - [anon_sym_DOLLAR] = ACTIONS(2883), - [sym_raw_string] = ACTIONS(2881), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2881), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2881), - [anon_sym_BQUOTE] = ACTIONS(2881), - [anon_sym_LT_LPAREN] = ACTIONS(2881), - [anon_sym_GT_LPAREN] = ACTIONS(2881), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2883), - [sym_word] = ACTIONS(2883), - }, - [1785] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5002), - }, - [1786] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5004), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1787] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5006), - }, - [1788] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(4986), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1789] = { - [sym_concatenation] = STATE(2150), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2150), - [anon_sym_RBRACE] = ACTIONS(5008), - [anon_sym_EQ] = ACTIONS(5010), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5012), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5010), - [anon_sym_COLON_QMARK] = ACTIONS(5010), - [anon_sym_COLON_DASH] = ACTIONS(5010), - [anon_sym_PERCENT] = ACTIONS(5010), - [anon_sym_DASH] = ACTIONS(5010), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1790] = { - [sym__concat] = ACTIONS(2897), - [sym_variable_name] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_RPAREN] = ACTIONS(2897), - [anon_sym_PIPE_AMP] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2897), - [anon_sym_PIPE_PIPE] = ACTIONS(2897), - [sym__special_characters] = ACTIONS(2897), - [anon_sym_DQUOTE] = ACTIONS(2897), - [anon_sym_DOLLAR] = ACTIONS(2899), - [sym_raw_string] = ACTIONS(2897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2897), - [anon_sym_BQUOTE] = ACTIONS(2897), - [anon_sym_LT_LPAREN] = ACTIONS(2897), - [anon_sym_GT_LPAREN] = ACTIONS(2897), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2899), - [sym_word] = ACTIONS(2899), - }, - [1791] = { - [sym_concatenation] = STATE(2152), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2152), - [anon_sym_RBRACE] = ACTIONS(5014), - [anon_sym_EQ] = ACTIONS(5016), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5016), - [anon_sym_COLON_QMARK] = ACTIONS(5016), - [anon_sym_COLON_DASH] = ACTIONS(5016), - [anon_sym_PERCENT] = ACTIONS(5016), - [anon_sym_DASH] = ACTIONS(5016), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1792] = { - [sym__concat] = ACTIONS(2752), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_RPAREN] = 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(2754), - [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(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2754), - [sym_word] = ACTIONS(2754), - }, - [1793] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5020), - [sym_comment] = ACTIONS(53), - }, - [1794] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5022), - [sym_comment] = ACTIONS(53), - }, - [1795] = { - [anon_sym_RBRACE] = ACTIONS(5022), - [sym_comment] = ACTIONS(53), - }, - [1796] = { - [sym_concatenation] = STATE(2156), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2156), - [anon_sym_RBRACE] = ACTIONS(5024), - [anon_sym_EQ] = ACTIONS(5026), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5026), - [anon_sym_COLON_QMARK] = ACTIONS(5026), - [anon_sym_COLON_DASH] = ACTIONS(5026), - [anon_sym_PERCENT] = ACTIONS(5026), - [anon_sym_DASH] = ACTIONS(5026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1797] = { - [sym__concat] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_RPAREN] = ACTIONS(2830), - [anon_sym_PIPE_AMP] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [sym__special_characters] = ACTIONS(2830), - [anon_sym_DQUOTE] = ACTIONS(2830), - [anon_sym_DOLLAR] = ACTIONS(2832), - [sym_raw_string] = ACTIONS(2830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2830), - [anon_sym_BQUOTE] = ACTIONS(2830), - [anon_sym_LT_LPAREN] = ACTIONS(2830), - [anon_sym_GT_LPAREN] = ACTIONS(2830), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2832), - [sym_word] = ACTIONS(2832), - }, - [1798] = { - [sym_concatenation] = STATE(2159), - [sym_string] = STATE(2158), - [sym_simple_expansion] = STATE(2158), - [sym_string_expansion] = STATE(2158), - [sym_expansion] = STATE(2158), - [sym_command_substitution] = STATE(2158), - [sym_process_substitution] = STATE(2158), - [anon_sym_RBRACE] = ACTIONS(5022), - [sym__special_characters] = ACTIONS(5030), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(5032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5032), - }, - [1799] = { - [sym__concat] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(2875), - [anon_sym_RPAREN] = ACTIONS(2873), - [anon_sym_PIPE_AMP] = ACTIONS(2873), - [anon_sym_AMP_AMP] = ACTIONS(2873), - [anon_sym_PIPE_PIPE] = ACTIONS(2873), - [sym__special_characters] = ACTIONS(2873), - [anon_sym_DQUOTE] = ACTIONS(2873), - [anon_sym_DOLLAR] = ACTIONS(2875), - [sym_raw_string] = ACTIONS(2873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2873), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2873), - [anon_sym_BQUOTE] = ACTIONS(2873), - [anon_sym_LT_LPAREN] = ACTIONS(2873), - [anon_sym_GT_LPAREN] = ACTIONS(2873), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2875), - [sym_word] = ACTIONS(2875), - }, - [1800] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5034), - }, - [1801] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5036), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1802] = { - [sym__concat] = ACTIONS(2881), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_RPAREN] = ACTIONS(2881), - [anon_sym_PIPE_AMP] = ACTIONS(2881), - [anon_sym_AMP_AMP] = ACTIONS(2881), - [anon_sym_PIPE_PIPE] = ACTIONS(2881), - [sym__special_characters] = ACTIONS(2881), - [anon_sym_DQUOTE] = ACTIONS(2881), - [anon_sym_DOLLAR] = ACTIONS(2883), - [sym_raw_string] = ACTIONS(2881), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2881), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2881), - [anon_sym_BQUOTE] = ACTIONS(2881), - [anon_sym_LT_LPAREN] = ACTIONS(2881), - [anon_sym_GT_LPAREN] = ACTIONS(2881), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2883), - [sym_word] = ACTIONS(2883), - }, - [1803] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5038), - }, - [1804] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5040), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1805] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5042), - }, - [1806] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5022), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1807] = { - [sym_concatenation] = STATE(2166), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2166), - [anon_sym_RBRACE] = ACTIONS(5044), - [anon_sym_EQ] = ACTIONS(5046), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5048), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5046), - [anon_sym_COLON_QMARK] = ACTIONS(5046), - [anon_sym_COLON_DASH] = ACTIONS(5046), - [anon_sym_PERCENT] = ACTIONS(5046), - [anon_sym_DASH] = ACTIONS(5046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1808] = { - [sym__concat] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_RPAREN] = ACTIONS(2897), - [anon_sym_PIPE_AMP] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2897), - [anon_sym_PIPE_PIPE] = ACTIONS(2897), - [sym__special_characters] = ACTIONS(2897), - [anon_sym_DQUOTE] = ACTIONS(2897), - [anon_sym_DOLLAR] = ACTIONS(2899), - [sym_raw_string] = ACTIONS(2897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2897), - [anon_sym_BQUOTE] = ACTIONS(2897), - [anon_sym_LT_LPAREN] = ACTIONS(2897), - [anon_sym_GT_LPAREN] = ACTIONS(2897), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2899), - [sym_word] = ACTIONS(2899), - }, - [1809] = { - [sym_concatenation] = STATE(2168), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2168), - [anon_sym_RBRACE] = ACTIONS(5050), - [anon_sym_EQ] = ACTIONS(5052), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5054), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5052), - [anon_sym_COLON_QMARK] = ACTIONS(5052), - [anon_sym_COLON_DASH] = ACTIONS(5052), - [anon_sym_PERCENT] = ACTIONS(5052), - [anon_sym_DASH] = ACTIONS(5052), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1810] = { - [sym__simple_heredoc_body] = ACTIONS(3917), - [sym__heredoc_body_beginning] = ACTIONS(3917), - [sym_file_descriptor] = ACTIONS(3917), - [sym__concat] = ACTIONS(3917), - [anon_sym_PIPE] = ACTIONS(3919), - [anon_sym_RPAREN] = ACTIONS(3917), - [anon_sym_PIPE_AMP] = ACTIONS(3917), - [anon_sym_AMP_AMP] = ACTIONS(3917), - [anon_sym_PIPE_PIPE] = ACTIONS(3917), - [anon_sym_EQ_TILDE] = ACTIONS(3919), - [anon_sym_EQ_EQ] = ACTIONS(3919), - [anon_sym_LT] = ACTIONS(3919), - [anon_sym_GT] = ACTIONS(3919), - [anon_sym_GT_GT] = ACTIONS(3917), - [anon_sym_AMP_GT] = ACTIONS(3919), - [anon_sym_AMP_GT_GT] = ACTIONS(3917), - [anon_sym_LT_AMP] = ACTIONS(3917), - [anon_sym_GT_AMP] = ACTIONS(3917), - [anon_sym_LT_LT] = ACTIONS(3919), - [anon_sym_LT_LT_DASH] = ACTIONS(3917), - [anon_sym_LT_LT_LT] = ACTIONS(3917), - [sym__special_characters] = ACTIONS(3917), - [anon_sym_DQUOTE] = ACTIONS(3917), - [anon_sym_DOLLAR] = ACTIONS(3919), - [sym_raw_string] = ACTIONS(3917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3917), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3917), - [anon_sym_BQUOTE] = ACTIONS(3917), - [anon_sym_LT_LPAREN] = ACTIONS(3917), - [anon_sym_GT_LPAREN] = ACTIONS(3917), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3919), - }, - [1811] = { - [sym__simple_heredoc_body] = ACTIONS(3923), - [sym__heredoc_body_beginning] = ACTIONS(3923), - [sym_file_descriptor] = ACTIONS(3923), - [sym__concat] = ACTIONS(3923), - [anon_sym_PIPE] = ACTIONS(3925), - [anon_sym_RPAREN] = ACTIONS(3923), - [anon_sym_PIPE_AMP] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3923), - [anon_sym_PIPE_PIPE] = ACTIONS(3923), - [anon_sym_EQ_TILDE] = ACTIONS(3925), - [anon_sym_EQ_EQ] = ACTIONS(3925), - [anon_sym_LT] = ACTIONS(3925), - [anon_sym_GT] = ACTIONS(3925), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_AMP_GT] = ACTIONS(3925), - [anon_sym_AMP_GT_GT] = ACTIONS(3923), - [anon_sym_LT_AMP] = ACTIONS(3923), - [anon_sym_GT_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3925), - [anon_sym_LT_LT_DASH] = ACTIONS(3923), - [anon_sym_LT_LT_LT] = ACTIONS(3923), - [sym__special_characters] = ACTIONS(3923), - [anon_sym_DQUOTE] = ACTIONS(3923), - [anon_sym_DOLLAR] = ACTIONS(3925), - [sym_raw_string] = ACTIONS(3923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3923), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3923), - [anon_sym_BQUOTE] = ACTIONS(3923), - [anon_sym_LT_LPAREN] = ACTIONS(3923), - [anon_sym_GT_LPAREN] = ACTIONS(3923), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3925), - }, - [1812] = { - [sym__simple_heredoc_body] = ACTIONS(4008), - [sym__heredoc_body_beginning] = ACTIONS(4008), - [sym_file_descriptor] = ACTIONS(4008), - [sym__concat] = ACTIONS(4008), - [anon_sym_PIPE] = ACTIONS(4010), - [anon_sym_RPAREN] = ACTIONS(4008), - [anon_sym_PIPE_AMP] = ACTIONS(4008), - [anon_sym_AMP_AMP] = ACTIONS(4008), - [anon_sym_PIPE_PIPE] = ACTIONS(4008), - [anon_sym_EQ_TILDE] = ACTIONS(4010), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_GT_GT] = ACTIONS(4008), - [anon_sym_AMP_GT] = ACTIONS(4010), - [anon_sym_AMP_GT_GT] = ACTIONS(4008), - [anon_sym_LT_AMP] = ACTIONS(4008), - [anon_sym_GT_AMP] = ACTIONS(4008), - [anon_sym_LT_LT] = ACTIONS(4010), - [anon_sym_LT_LT_DASH] = ACTIONS(4008), - [anon_sym_LT_LT_LT] = ACTIONS(4008), - [sym__special_characters] = ACTIONS(4008), - [anon_sym_DQUOTE] = ACTIONS(4008), - [anon_sym_DOLLAR] = ACTIONS(4010), - [sym_raw_string] = ACTIONS(4008), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4008), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4008), - [anon_sym_BQUOTE] = ACTIONS(4008), - [anon_sym_LT_LPAREN] = ACTIONS(4008), - [anon_sym_GT_LPAREN] = ACTIONS(4008), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4010), - }, - [1813] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5056), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1814] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5058), - [sym_comment] = ACTIONS(53), - }, - [1815] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5060), - [sym_comment] = ACTIONS(53), - }, - [1816] = { - [anon_sym_RBRACE] = ACTIONS(5060), - [sym_comment] = ACTIONS(53), - }, - [1817] = { - [sym_concatenation] = STATE(2173), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2173), - [anon_sym_RBRACE] = ACTIONS(5062), - [anon_sym_EQ] = ACTIONS(5064), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5066), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5064), - [anon_sym_COLON_QMARK] = ACTIONS(5064), - [anon_sym_COLON_DASH] = ACTIONS(5064), - [anon_sym_PERCENT] = ACTIONS(5064), - [anon_sym_DASH] = ACTIONS(5064), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1818] = { - [sym__simple_heredoc_body] = ACTIONS(4024), - [sym__heredoc_body_beginning] = ACTIONS(4024), - [sym_file_descriptor] = ACTIONS(4024), - [sym__concat] = ACTIONS(4024), - [anon_sym_PIPE] = ACTIONS(4026), - [anon_sym_RPAREN] = ACTIONS(4024), - [anon_sym_PIPE_AMP] = ACTIONS(4024), - [anon_sym_AMP_AMP] = ACTIONS(4024), - [anon_sym_PIPE_PIPE] = ACTIONS(4024), - [anon_sym_EQ_TILDE] = ACTIONS(4026), - [anon_sym_EQ_EQ] = ACTIONS(4026), - [anon_sym_LT] = ACTIONS(4026), - [anon_sym_GT] = ACTIONS(4026), - [anon_sym_GT_GT] = ACTIONS(4024), - [anon_sym_AMP_GT] = ACTIONS(4026), - [anon_sym_AMP_GT_GT] = ACTIONS(4024), - [anon_sym_LT_AMP] = ACTIONS(4024), - [anon_sym_GT_AMP] = ACTIONS(4024), - [anon_sym_LT_LT] = ACTIONS(4026), - [anon_sym_LT_LT_DASH] = ACTIONS(4024), - [anon_sym_LT_LT_LT] = ACTIONS(4024), - [sym__special_characters] = ACTIONS(4024), - [anon_sym_DQUOTE] = ACTIONS(4024), - [anon_sym_DOLLAR] = ACTIONS(4026), - [sym_raw_string] = ACTIONS(4024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4024), - [anon_sym_BQUOTE] = ACTIONS(4024), - [anon_sym_LT_LPAREN] = ACTIONS(4024), - [anon_sym_GT_LPAREN] = ACTIONS(4024), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4026), - }, - [1819] = { - [sym_concatenation] = STATE(2175), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2175), - [anon_sym_RBRACE] = ACTIONS(5068), - [anon_sym_EQ] = ACTIONS(5070), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5072), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5070), - [anon_sym_COLON_QMARK] = ACTIONS(5070), - [anon_sym_COLON_DASH] = ACTIONS(5070), - [anon_sym_PERCENT] = ACTIONS(5070), - [anon_sym_DASH] = ACTIONS(5070), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1820] = { - [sym__simple_heredoc_body] = ACTIONS(4034), - [sym__heredoc_body_beginning] = ACTIONS(4034), - [sym_file_descriptor] = ACTIONS(4034), - [sym__concat] = ACTIONS(4034), - [anon_sym_PIPE] = ACTIONS(4036), - [anon_sym_RPAREN] = ACTIONS(4034), - [anon_sym_PIPE_AMP] = ACTIONS(4034), - [anon_sym_AMP_AMP] = ACTIONS(4034), - [anon_sym_PIPE_PIPE] = ACTIONS(4034), - [anon_sym_EQ_TILDE] = ACTIONS(4036), - [anon_sym_EQ_EQ] = ACTIONS(4036), - [anon_sym_LT] = ACTIONS(4036), - [anon_sym_GT] = ACTIONS(4036), - [anon_sym_GT_GT] = ACTIONS(4034), - [anon_sym_AMP_GT] = ACTIONS(4036), - [anon_sym_AMP_GT_GT] = ACTIONS(4034), - [anon_sym_LT_AMP] = ACTIONS(4034), - [anon_sym_GT_AMP] = ACTIONS(4034), - [anon_sym_LT_LT] = ACTIONS(4036), - [anon_sym_LT_LT_DASH] = ACTIONS(4034), - [anon_sym_LT_LT_LT] = ACTIONS(4034), - [sym__special_characters] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4034), - [anon_sym_DOLLAR] = ACTIONS(4036), - [sym_raw_string] = ACTIONS(4034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4034), - [anon_sym_BQUOTE] = ACTIONS(4034), - [anon_sym_LT_LPAREN] = ACTIONS(4034), - [anon_sym_GT_LPAREN] = ACTIONS(4034), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4036), - }, - [1821] = { - [sym_concatenation] = STATE(2177), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2177), - [anon_sym_RBRACE] = ACTIONS(5074), - [anon_sym_EQ] = ACTIONS(5076), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5078), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5076), - [anon_sym_COLON_QMARK] = ACTIONS(5076), - [anon_sym_COLON_DASH] = ACTIONS(5076), - [anon_sym_PERCENT] = ACTIONS(5076), - [anon_sym_DASH] = ACTIONS(5076), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1822] = { - [sym__simple_heredoc_body] = ACTIONS(4044), - [sym__heredoc_body_beginning] = ACTIONS(4044), - [sym_file_descriptor] = ACTIONS(4044), - [sym__concat] = ACTIONS(4044), - [anon_sym_PIPE] = ACTIONS(4046), - [anon_sym_RPAREN] = ACTIONS(4044), - [anon_sym_PIPE_AMP] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_PIPE_PIPE] = ACTIONS(4044), - [anon_sym_EQ_TILDE] = ACTIONS(4046), - [anon_sym_EQ_EQ] = ACTIONS(4046), - [anon_sym_LT] = ACTIONS(4046), - [anon_sym_GT] = ACTIONS(4046), - [anon_sym_GT_GT] = ACTIONS(4044), - [anon_sym_AMP_GT] = ACTIONS(4046), - [anon_sym_AMP_GT_GT] = ACTIONS(4044), - [anon_sym_LT_AMP] = ACTIONS(4044), - [anon_sym_GT_AMP] = ACTIONS(4044), - [anon_sym_LT_LT] = ACTIONS(4046), - [anon_sym_LT_LT_DASH] = ACTIONS(4044), - [anon_sym_LT_LT_LT] = ACTIONS(4044), - [sym__special_characters] = ACTIONS(4044), - [anon_sym_DQUOTE] = ACTIONS(4044), - [anon_sym_DOLLAR] = ACTIONS(4046), - [sym_raw_string] = ACTIONS(4044), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4044), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4044), - [anon_sym_BQUOTE] = ACTIONS(4044), - [anon_sym_LT_LPAREN] = ACTIONS(4044), - [anon_sym_GT_LPAREN] = ACTIONS(4044), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4046), - }, - [1823] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5080), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1824] = { - [sym__simple_heredoc_body] = ACTIONS(4050), - [sym__heredoc_body_beginning] = ACTIONS(4050), - [sym_file_descriptor] = ACTIONS(4050), - [sym__concat] = ACTIONS(4050), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_RPAREN] = ACTIONS(4050), - [anon_sym_PIPE_AMP] = ACTIONS(4050), - [anon_sym_AMP_AMP] = ACTIONS(4050), - [anon_sym_PIPE_PIPE] = ACTIONS(4050), - [anon_sym_EQ_TILDE] = ACTIONS(4052), - [anon_sym_EQ_EQ] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_GT_GT] = ACTIONS(4050), - [anon_sym_AMP_GT] = ACTIONS(4052), - [anon_sym_AMP_GT_GT] = ACTIONS(4050), - [anon_sym_LT_AMP] = ACTIONS(4050), - [anon_sym_GT_AMP] = ACTIONS(4050), - [anon_sym_LT_LT] = ACTIONS(4052), - [anon_sym_LT_LT_DASH] = ACTIONS(4050), - [anon_sym_LT_LT_LT] = ACTIONS(4050), - [sym__special_characters] = ACTIONS(4050), - [anon_sym_DQUOTE] = ACTIONS(4050), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4050), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4050), - [anon_sym_BQUOTE] = ACTIONS(4050), - [anon_sym_LT_LPAREN] = ACTIONS(4050), - [anon_sym_GT_LPAREN] = ACTIONS(4050), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4052), - }, - [1825] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5082), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1826] = { - [anon_sym_PIPE] = ACTIONS(3609), - [anon_sym_RPAREN] = ACTIONS(3611), - [anon_sym_PIPE_AMP] = ACTIONS(3611), - [anon_sym_AMP_AMP] = ACTIONS(3611), - [anon_sym_PIPE_PIPE] = ACTIONS(3611), - [anon_sym_BQUOTE] = ACTIONS(3611), - [sym_comment] = ACTIONS(53), - }, - [1827] = { - [aux_sym_concatenation_repeat1] = STATE(1827), - [sym__simple_heredoc_body] = ACTIONS(1654), - [sym__heredoc_body_beginning] = ACTIONS(1654), - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1654), - [anon_sym_PIPE_AMP] = ACTIONS(1654), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_PIPE_PIPE] = ACTIONS(1654), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1654), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1654), - [anon_sym_LT_AMP] = ACTIONS(1654), - [anon_sym_GT_AMP] = ACTIONS(1654), - [anon_sym_LT_LT] = ACTIONS(1656), - [anon_sym_LT_LT_DASH] = ACTIONS(1654), - [anon_sym_LT_LT_LT] = ACTIONS(1654), - [sym_comment] = ACTIONS(53), - }, - [1828] = { - [anon_sym_PIPE] = ACTIONS(4302), - [anon_sym_RPAREN] = ACTIONS(4304), - [anon_sym_PIPE_AMP] = ACTIONS(4304), - [anon_sym_AMP_AMP] = ACTIONS(4304), - [anon_sym_PIPE_PIPE] = ACTIONS(4304), - [anon_sym_BQUOTE] = ACTIONS(4304), - [sym_comment] = ACTIONS(53), - }, - [1829] = { - [aux_sym_concatenation_repeat1] = STATE(1829), - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(2655), - [sym_variable_name] = ACTIONS(1654), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1654), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_PIPE_PIPE] = ACTIONS(1654), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1654), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1654), - [anon_sym_LT_AMP] = ACTIONS(1654), - [anon_sym_GT_AMP] = ACTIONS(1654), - [sym__special_characters] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1654), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [anon_sym_LT_LPAREN] = ACTIONS(1654), - [anon_sym_GT_LPAREN] = ACTIONS(1654), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1654), - }, - [1830] = { - [sym_file_redirect] = STATE(2110), - [sym_file_descriptor] = ACTIONS(3209), - [anon_sym_PIPE] = ACTIONS(3609), - [anon_sym_PIPE_AMP] = ACTIONS(3611), - [anon_sym_AMP_AMP] = ACTIONS(3611), - [anon_sym_PIPE_PIPE] = ACTIONS(3611), - [anon_sym_LT] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(3211), - [anon_sym_GT_GT] = ACTIONS(3213), - [anon_sym_AMP_GT] = ACTIONS(3211), - [anon_sym_AMP_GT_GT] = ACTIONS(3213), - [anon_sym_LT_AMP] = ACTIONS(3213), - [anon_sym_GT_AMP] = ACTIONS(3213), - [anon_sym_BQUOTE] = ACTIONS(3611), - [sym_comment] = ACTIONS(53), - }, - [1831] = { - [sym_concatenation] = STATE(2113), - [sym_string] = STATE(2181), - [sym_simple_expansion] = STATE(2181), - [sym_string_expansion] = STATE(2181), - [sym_expansion] = STATE(2181), - [sym_command_substitution] = STATE(2181), - [sym_process_substitution] = STATE(2181), - [sym__special_characters] = ACTIONS(5084), + [sym_concatenation] = STATE(2038), + [sym_string] = STATE(2106), + [sym_simple_expansion] = STATE(2106), + [sym_string_expansion] = STATE(2106), + [sym_expansion] = STATE(2106), + [sym_command_substitution] = STATE(2106), + [sym_process_substitution] = STATE(2106), + [sym__special_characters] = ACTIONS(4941), [anon_sym_DQUOTE] = ACTIONS(827), [anon_sym_DOLLAR] = ACTIONS(829), - [sym_raw_string] = ACTIONS(5086), + [sym_raw_string] = ACTIONS(4943), [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), [anon_sym_BQUOTE] = ACTIONS(837), [anon_sym_LT_LPAREN] = ACTIONS(839), [anon_sym_GT_LPAREN] = ACTIONS(839), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5086), + [sym_word] = ACTIONS(4943), }, - [1832] = { - [aux_sym_concatenation_repeat1] = STATE(2182), - [sym__concat] = ACTIONS(1886), + [1782] = { + [aux_sym_concatenation_repeat1] = STATE(2107), + [sym__concat] = ACTIONS(1874), [anon_sym_PIPE] = ACTIONS(665), [anon_sym_PIPE_AMP] = ACTIONS(661), [anon_sym_AMP_AMP] = ACTIONS(661), @@ -52414,9 +48081,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(661), [sym_comment] = ACTIONS(53), }, - [1833] = { - [aux_sym_concatenation_repeat1] = STATE(2182), - [sym__concat] = ACTIONS(1886), + [1783] = { + [aux_sym_concatenation_repeat1] = STATE(2107), + [sym__concat] = ACTIONS(1874), [anon_sym_PIPE] = ACTIONS(679), [anon_sym_PIPE_AMP] = ACTIONS(677), [anon_sym_AMP_AMP] = ACTIONS(677), @@ -52424,30 +48091,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(677), [sym_comment] = ACTIONS(53), }, - [1834] = { - [sym_concatenation] = STATE(2117), - [sym_string] = STATE(2184), - [sym_simple_expansion] = STATE(2184), - [sym_string_expansion] = STATE(2184), - [sym_expansion] = STATE(2184), - [sym_command_substitution] = STATE(2184), - [sym_process_substitution] = STATE(2184), - [sym__special_characters] = ACTIONS(5088), - [anon_sym_DQUOTE] = ACTIONS(4098), - [anon_sym_DOLLAR] = ACTIONS(4100), - [sym_raw_string] = ACTIONS(5090), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4106), - [anon_sym_BQUOTE] = ACTIONS(4108), - [anon_sym_LT_LPAREN] = ACTIONS(4110), - [anon_sym_GT_LPAREN] = ACTIONS(4110), + [1784] = { + [sym_concatenation] = STATE(2042), + [sym_string] = STATE(2109), + [sym_simple_expansion] = STATE(2109), + [sym_string_expansion] = STATE(2109), + [sym_expansion] = STATE(2109), + [sym_command_substitution] = STATE(2109), + [sym_process_substitution] = STATE(2109), + [sym__special_characters] = ACTIONS(4945), + [anon_sym_DQUOTE] = ACTIONS(4010), + [anon_sym_DOLLAR] = ACTIONS(4012), + [sym_raw_string] = ACTIONS(4947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4016), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4018), + [anon_sym_BQUOTE] = ACTIONS(4020), + [anon_sym_LT_LPAREN] = ACTIONS(4022), + [anon_sym_GT_LPAREN] = ACTIONS(4022), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5090), + [sym_word] = ACTIONS(4947), }, - [1835] = { - [aux_sym_concatenation_repeat1] = STATE(2185), + [1785] = { + [aux_sym_concatenation_repeat1] = STATE(2110), [sym_file_descriptor] = ACTIONS(661), - [sym__concat] = ACTIONS(4942), + [sym__concat] = ACTIONS(4799), [anon_sym_PIPE] = ACTIONS(665), [anon_sym_PIPE_AMP] = ACTIONS(661), [anon_sym_AMP_AMP] = ACTIONS(661), @@ -52465,10 +48132,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(661), [sym_comment] = ACTIONS(53), }, - [1836] = { - [aux_sym_concatenation_repeat1] = STATE(2185), + [1786] = { + [aux_sym_concatenation_repeat1] = STATE(2110), [sym_file_descriptor] = ACTIONS(677), - [sym__concat] = ACTIONS(4942), + [sym__concat] = ACTIONS(4799), [anon_sym_PIPE] = ACTIONS(679), [anon_sym_PIPE_AMP] = ACTIONS(677), [anon_sym_AMP_AMP] = ACTIONS(677), @@ -52486,1394 +48153,1088 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(677), [sym_comment] = ACTIONS(53), }, - [1837] = { - [aux_sym_concatenation_repeat1] = STATE(2185), - [sym_file_descriptor] = ACTIONS(2070), - [sym__concat] = ACTIONS(4942), - [anon_sym_PIPE] = ACTIONS(2072), + [1787] = { + [aux_sym_concatenation_repeat1] = STATE(2110), + [sym_file_descriptor] = ACTIONS(2058), + [sym__concat] = ACTIONS(4799), + [anon_sym_PIPE] = ACTIONS(2060), + [anon_sym_PIPE_AMP] = ACTIONS(2058), + [anon_sym_AMP_AMP] = ACTIONS(2058), + [anon_sym_PIPE_PIPE] = ACTIONS(2058), + [anon_sym_LT] = ACTIONS(2060), + [anon_sym_GT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2058), + [anon_sym_AMP_GT] = ACTIONS(2060), + [anon_sym_AMP_GT_GT] = ACTIONS(2058), + [anon_sym_LT_AMP] = ACTIONS(2058), + [anon_sym_GT_AMP] = ACTIONS(2058), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_LT_LT_DASH] = ACTIONS(2058), + [anon_sym_LT_LT_LT] = ACTIONS(2058), + [anon_sym_BQUOTE] = ACTIONS(2058), + [sym_comment] = ACTIONS(53), + }, + [1788] = { + [aux_sym_concatenation_repeat1] = STATE(2110), + [sym_file_descriptor] = ACTIONS(2062), + [sym__concat] = ACTIONS(4799), + [anon_sym_PIPE] = ACTIONS(2064), + [anon_sym_PIPE_AMP] = ACTIONS(2062), + [anon_sym_AMP_AMP] = ACTIONS(2062), + [anon_sym_PIPE_PIPE] = ACTIONS(2062), + [anon_sym_LT] = ACTIONS(2064), + [anon_sym_GT] = ACTIONS(2064), + [anon_sym_GT_GT] = ACTIONS(2062), + [anon_sym_AMP_GT] = ACTIONS(2064), + [anon_sym_AMP_GT_GT] = ACTIONS(2062), + [anon_sym_LT_AMP] = ACTIONS(2062), + [anon_sym_GT_AMP] = ACTIONS(2062), + [anon_sym_LT_LT] = ACTIONS(2064), + [anon_sym_LT_LT_DASH] = ACTIONS(2062), + [anon_sym_LT_LT_LT] = ACTIONS(2062), + [anon_sym_BQUOTE] = ACTIONS(2062), + [sym_comment] = ACTIONS(53), + }, + [1789] = { + [sym_file_redirect] = STATE(1789), + [sym_heredoc_redirect] = STATE(1789), + [sym_herestring_redirect] = STATE(1789), + [aux_sym_while_statement_repeat1] = STATE(1789), + [sym_file_descriptor] = ACTIONS(4949), + [anon_sym_PIPE] = ACTIONS(2075), [anon_sym_PIPE_AMP] = ACTIONS(2070), [anon_sym_AMP_AMP] = ACTIONS(2070), [anon_sym_PIPE_PIPE] = ACTIONS(2070), - [anon_sym_LT] = ACTIONS(2072), - [anon_sym_GT] = ACTIONS(2072), - [anon_sym_GT_GT] = ACTIONS(2070), - [anon_sym_AMP_GT] = ACTIONS(2072), - [anon_sym_AMP_GT_GT] = ACTIONS(2070), - [anon_sym_LT_AMP] = ACTIONS(2070), - [anon_sym_GT_AMP] = ACTIONS(2070), - [anon_sym_LT_LT] = ACTIONS(2072), - [anon_sym_LT_LT_DASH] = ACTIONS(2070), - [anon_sym_LT_LT_LT] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(4952), + [anon_sym_GT] = ACTIONS(4952), + [anon_sym_GT_GT] = ACTIONS(4955), + [anon_sym_AMP_GT] = ACTIONS(4952), + [anon_sym_AMP_GT_GT] = ACTIONS(4955), + [anon_sym_LT_AMP] = ACTIONS(4955), + [anon_sym_GT_AMP] = ACTIONS(4955), + [anon_sym_LT_LT] = ACTIONS(4830), + [anon_sym_LT_LT_DASH] = ACTIONS(4833), + [anon_sym_LT_LT_LT] = ACTIONS(4958), [anon_sym_BQUOTE] = ACTIONS(2070), [sym_comment] = ACTIONS(53), }, - [1838] = { - [aux_sym_concatenation_repeat1] = STATE(2185), - [sym_file_descriptor] = ACTIONS(2074), - [sym__concat] = ACTIONS(4942), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_PIPE_AMP] = ACTIONS(2074), - [anon_sym_AMP_AMP] = ACTIONS(2074), - [anon_sym_PIPE_PIPE] = ACTIONS(2074), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_GT_GT] = ACTIONS(2074), - [anon_sym_AMP_GT] = ACTIONS(2076), - [anon_sym_AMP_GT_GT] = ACTIONS(2074), - [anon_sym_LT_AMP] = ACTIONS(2074), - [anon_sym_GT_AMP] = ACTIONS(2074), - [anon_sym_LT_LT] = ACTIONS(2076), - [anon_sym_LT_LT_DASH] = ACTIONS(2074), - [anon_sym_LT_LT_LT] = ACTIONS(2074), - [anon_sym_BQUOTE] = ACTIONS(2074), + [1790] = { + [aux_sym_concatenation_repeat1] = STATE(1790), + [sym__simple_heredoc_body] = ACTIONS(1642), + [sym__heredoc_body_beginning] = ACTIONS(1642), + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(3068), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1642), + [anon_sym_AMP_AMP] = ACTIONS(1642), + [anon_sym_PIPE_PIPE] = ACTIONS(1642), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1642), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1642), + [anon_sym_LT_AMP] = ACTIONS(1642), + [anon_sym_GT_AMP] = ACTIONS(1642), + [anon_sym_LT_LT] = ACTIONS(1644), + [anon_sym_LT_LT_DASH] = ACTIONS(1642), + [anon_sym_LT_LT_LT] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), [sym_comment] = ACTIONS(53), }, + [1791] = { + [sym__heredoc_body_middle] = ACTIONS(2710), + [sym__heredoc_body_end] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2712), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2710), + [sym_comment] = ACTIONS(53), + }, + [1792] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4961), + [sym_comment] = ACTIONS(53), + }, + [1793] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4963), + [sym_comment] = ACTIONS(53), + }, + [1794] = { + [anon_sym_RBRACE] = ACTIONS(4963), + [sym_comment] = ACTIONS(53), + }, + [1795] = { + [sym_concatenation] = STATE(2114), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2114), + [anon_sym_RBRACE] = ACTIONS(4965), + [anon_sym_EQ] = ACTIONS(4967), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4969), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4967), + [anon_sym_COLON_QMARK] = ACTIONS(4967), + [anon_sym_COLON_DASH] = ACTIONS(4967), + [anon_sym_PERCENT] = ACTIONS(4967), + [anon_sym_DASH] = ACTIONS(4967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1796] = { + [sym__heredoc_body_middle] = ACTIONS(2788), + [sym__heredoc_body_end] = ACTIONS(2788), + [anon_sym_DOLLAR] = ACTIONS(2790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2788), + [sym_comment] = ACTIONS(53), + }, + [1797] = { + [sym_concatenation] = STATE(2117), + [sym_string] = STATE(2116), + [sym_simple_expansion] = STATE(2116), + [sym_string_expansion] = STATE(2116), + [sym_expansion] = STATE(2116), + [sym_command_substitution] = STATE(2116), + [sym_process_substitution] = STATE(2116), + [anon_sym_RBRACE] = ACTIONS(4963), + [sym__special_characters] = ACTIONS(4971), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(4973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4973), + }, + [1798] = { + [sym__heredoc_body_middle] = ACTIONS(2831), + [sym__heredoc_body_end] = ACTIONS(2831), + [anon_sym_DOLLAR] = ACTIONS(2833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2831), + [sym_comment] = ACTIONS(53), + }, + [1799] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4975), + }, + [1800] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4977), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1801] = { + [sym__heredoc_body_middle] = ACTIONS(2839), + [sym__heredoc_body_end] = ACTIONS(2839), + [anon_sym_DOLLAR] = ACTIONS(2841), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2839), + [sym_comment] = ACTIONS(53), + }, + [1802] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4979), + }, + [1803] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4981), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1804] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4983), + }, + [1805] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4963), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1806] = { + [sym_concatenation] = STATE(2124), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2124), + [anon_sym_RBRACE] = ACTIONS(4985), + [anon_sym_EQ] = ACTIONS(4987), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4989), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4987), + [anon_sym_COLON_QMARK] = ACTIONS(4987), + [anon_sym_COLON_DASH] = ACTIONS(4987), + [anon_sym_PERCENT] = ACTIONS(4987), + [anon_sym_DASH] = ACTIONS(4987), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1807] = { + [sym__heredoc_body_middle] = ACTIONS(2855), + [sym__heredoc_body_end] = ACTIONS(2855), + [anon_sym_DOLLAR] = ACTIONS(2857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2855), + [sym_comment] = ACTIONS(53), + }, + [1808] = { + [sym_concatenation] = STATE(2126), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2126), + [anon_sym_RBRACE] = ACTIONS(4991), + [anon_sym_EQ] = ACTIONS(4993), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4993), + [anon_sym_COLON_QMARK] = ACTIONS(4993), + [anon_sym_COLON_DASH] = ACTIONS(4993), + [anon_sym_PERCENT] = ACTIONS(4993), + [anon_sym_DASH] = ACTIONS(4993), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1809] = { + [sym__concat] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [sym__special_characters] = ACTIONS(2710), + [anon_sym_DQUOTE] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2712), + [sym_raw_string] = ACTIONS(2710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2710), + [anon_sym_BQUOTE] = ACTIONS(2710), + [anon_sym_LT_LPAREN] = ACTIONS(2710), + [anon_sym_GT_LPAREN] = ACTIONS(2710), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2710), + }, + [1810] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4997), + [sym_comment] = ACTIONS(53), + }, + [1811] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(4999), + [sym_comment] = ACTIONS(53), + }, + [1812] = { + [anon_sym_RBRACE] = ACTIONS(4999), + [sym_comment] = ACTIONS(53), + }, + [1813] = { + [sym_concatenation] = STATE(2130), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2130), + [anon_sym_RBRACE] = ACTIONS(5001), + [anon_sym_EQ] = ACTIONS(5003), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5005), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5003), + [anon_sym_COLON_QMARK] = ACTIONS(5003), + [anon_sym_COLON_DASH] = ACTIONS(5003), + [anon_sym_PERCENT] = ACTIONS(5003), + [anon_sym_DASH] = ACTIONS(5003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1814] = { + [sym__concat] = ACTIONS(2788), + [anon_sym_RPAREN] = ACTIONS(2788), + [sym__special_characters] = ACTIONS(2788), + [anon_sym_DQUOTE] = ACTIONS(2788), + [anon_sym_DOLLAR] = ACTIONS(2790), + [sym_raw_string] = ACTIONS(2788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2788), + [anon_sym_BQUOTE] = ACTIONS(2788), + [anon_sym_LT_LPAREN] = ACTIONS(2788), + [anon_sym_GT_LPAREN] = ACTIONS(2788), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2788), + }, + [1815] = { + [sym_concatenation] = STATE(2133), + [sym_string] = STATE(2132), + [sym_simple_expansion] = STATE(2132), + [sym_string_expansion] = STATE(2132), + [sym_expansion] = STATE(2132), + [sym_command_substitution] = STATE(2132), + [sym_process_substitution] = STATE(2132), + [anon_sym_RBRACE] = ACTIONS(4999), + [sym__special_characters] = ACTIONS(5007), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(5009), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5009), + }, + [1816] = { + [sym__concat] = ACTIONS(2831), + [anon_sym_RPAREN] = ACTIONS(2831), + [sym__special_characters] = ACTIONS(2831), + [anon_sym_DQUOTE] = ACTIONS(2831), + [anon_sym_DOLLAR] = ACTIONS(2833), + [sym_raw_string] = ACTIONS(2831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2831), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2831), + [anon_sym_BQUOTE] = ACTIONS(2831), + [anon_sym_LT_LPAREN] = ACTIONS(2831), + [anon_sym_GT_LPAREN] = ACTIONS(2831), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2831), + }, + [1817] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(5011), + }, + [1818] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5013), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1819] = { + [sym__concat] = ACTIONS(2839), + [anon_sym_RPAREN] = ACTIONS(2839), + [sym__special_characters] = ACTIONS(2839), + [anon_sym_DQUOTE] = ACTIONS(2839), + [anon_sym_DOLLAR] = ACTIONS(2841), + [sym_raw_string] = ACTIONS(2839), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2839), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2839), + [anon_sym_BQUOTE] = ACTIONS(2839), + [anon_sym_LT_LPAREN] = ACTIONS(2839), + [anon_sym_GT_LPAREN] = ACTIONS(2839), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2839), + }, + [1820] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(5015), + }, + [1821] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5017), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1822] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(5019), + }, + [1823] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(4999), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1824] = { + [sym_concatenation] = STATE(2140), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2140), + [anon_sym_RBRACE] = ACTIONS(5021), + [anon_sym_EQ] = ACTIONS(5023), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5023), + [anon_sym_COLON_QMARK] = ACTIONS(5023), + [anon_sym_COLON_DASH] = ACTIONS(5023), + [anon_sym_PERCENT] = ACTIONS(5023), + [anon_sym_DASH] = ACTIONS(5023), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1825] = { + [sym__concat] = ACTIONS(2855), + [anon_sym_RPAREN] = ACTIONS(2855), + [sym__special_characters] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(2855), + [anon_sym_DOLLAR] = ACTIONS(2857), + [sym_raw_string] = ACTIONS(2855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2855), + [anon_sym_BQUOTE] = ACTIONS(2855), + [anon_sym_LT_LPAREN] = ACTIONS(2855), + [anon_sym_GT_LPAREN] = ACTIONS(2855), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2855), + }, + [1826] = { + [sym_concatenation] = STATE(2142), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2142), + [anon_sym_RBRACE] = ACTIONS(5027), + [anon_sym_EQ] = ACTIONS(5029), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5029), + [anon_sym_COLON_QMARK] = ACTIONS(5029), + [anon_sym_COLON_DASH] = ACTIONS(5029), + [anon_sym_PERCENT] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1827] = { + [sym_file_descriptor] = ACTIONS(3829), + [sym__concat] = ACTIONS(3829), + [sym_variable_name] = ACTIONS(3829), + [anon_sym_esac] = ACTIONS(3831), + [anon_sym_PIPE] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(3831), + [anon_sym_SEMI_SEMI] = ACTIONS(3831), + [anon_sym_PIPE_AMP] = ACTIONS(3831), + [anon_sym_AMP_AMP] = ACTIONS(3831), + [anon_sym_PIPE_PIPE] = ACTIONS(3831), + [anon_sym_LT] = ACTIONS(3831), + [anon_sym_GT] = ACTIONS(3831), + [anon_sym_GT_GT] = ACTIONS(3831), + [anon_sym_AMP_GT] = ACTIONS(3831), + [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(3831), + [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(177), + [sym_word] = ACTIONS(3831), + [anon_sym_SEMI] = ACTIONS(3831), + [anon_sym_LF] = ACTIONS(3829), + [anon_sym_AMP] = ACTIONS(3831), + }, + [1828] = { + [sym_file_descriptor] = ACTIONS(3835), + [sym__concat] = ACTIONS(3835), + [sym_variable_name] = ACTIONS(3835), + [anon_sym_esac] = ACTIONS(3837), + [anon_sym_PIPE] = ACTIONS(3837), + [anon_sym_RPAREN] = ACTIONS(3837), + [anon_sym_SEMI_SEMI] = ACTIONS(3837), + [anon_sym_PIPE_AMP] = ACTIONS(3837), + [anon_sym_AMP_AMP] = ACTIONS(3837), + [anon_sym_PIPE_PIPE] = ACTIONS(3837), + [anon_sym_LT] = ACTIONS(3837), + [anon_sym_GT] = ACTIONS(3837), + [anon_sym_GT_GT] = ACTIONS(3837), + [anon_sym_AMP_GT] = ACTIONS(3837), + [anon_sym_AMP_GT_GT] = ACTIONS(3837), + [anon_sym_LT_AMP] = ACTIONS(3837), + [anon_sym_GT_AMP] = ACTIONS(3837), + [sym__special_characters] = ACTIONS(3837), + [anon_sym_DQUOTE] = ACTIONS(3837), + [anon_sym_DOLLAR] = ACTIONS(3837), + [sym_raw_string] = ACTIONS(3837), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3837), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3837), + [anon_sym_BQUOTE] = ACTIONS(3837), + [anon_sym_LT_LPAREN] = ACTIONS(3837), + [anon_sym_GT_LPAREN] = ACTIONS(3837), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3837), + [anon_sym_SEMI] = ACTIONS(3837), + [anon_sym_LF] = ACTIONS(3835), + [anon_sym_AMP] = ACTIONS(3837), + }, + [1829] = { + [sym_file_descriptor] = ACTIONS(3920), + [sym__concat] = ACTIONS(3920), + [sym_variable_name] = ACTIONS(3920), + [anon_sym_esac] = ACTIONS(3922), + [anon_sym_PIPE] = ACTIONS(3922), + [anon_sym_RPAREN] = ACTIONS(3922), + [anon_sym_SEMI_SEMI] = ACTIONS(3922), + [anon_sym_PIPE_AMP] = ACTIONS(3922), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3922), + [anon_sym_LT] = ACTIONS(3922), + [anon_sym_GT] = ACTIONS(3922), + [anon_sym_GT_GT] = ACTIONS(3922), + [anon_sym_AMP_GT] = ACTIONS(3922), + [anon_sym_AMP_GT_GT] = ACTIONS(3922), + [anon_sym_LT_AMP] = ACTIONS(3922), + [anon_sym_GT_AMP] = ACTIONS(3922), + [sym__special_characters] = ACTIONS(3922), + [anon_sym_DQUOTE] = ACTIONS(3922), + [anon_sym_DOLLAR] = ACTIONS(3922), + [sym_raw_string] = ACTIONS(3922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3922), + [anon_sym_BQUOTE] = ACTIONS(3922), + [anon_sym_LT_LPAREN] = ACTIONS(3922), + [anon_sym_GT_LPAREN] = ACTIONS(3922), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3922), + [anon_sym_SEMI] = ACTIONS(3922), + [anon_sym_LF] = ACTIONS(3920), + [anon_sym_AMP] = ACTIONS(3922), + }, + [1830] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5033), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1831] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(5035), + [sym_comment] = ACTIONS(53), + }, + [1832] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(5037), + [sym_comment] = ACTIONS(53), + }, + [1833] = { + [anon_sym_RBRACE] = ACTIONS(5037), + [sym_comment] = ACTIONS(53), + }, + [1834] = { + [sym_concatenation] = STATE(2147), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2147), + [anon_sym_RBRACE] = ACTIONS(5039), + [anon_sym_EQ] = ACTIONS(5041), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5041), + [anon_sym_COLON_QMARK] = ACTIONS(5041), + [anon_sym_COLON_DASH] = ACTIONS(5041), + [anon_sym_PERCENT] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(5041), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1835] = { + [sym_file_descriptor] = ACTIONS(3936), + [sym__concat] = ACTIONS(3936), + [sym_variable_name] = ACTIONS(3936), + [anon_sym_esac] = ACTIONS(3938), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_RPAREN] = ACTIONS(3938), + [anon_sym_SEMI_SEMI] = ACTIONS(3938), + [anon_sym_PIPE_AMP] = ACTIONS(3938), + [anon_sym_AMP_AMP] = ACTIONS(3938), + [anon_sym_PIPE_PIPE] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_GT_GT] = ACTIONS(3938), + [anon_sym_AMP_GT] = ACTIONS(3938), + [anon_sym_AMP_GT_GT] = ACTIONS(3938), + [anon_sym_LT_AMP] = ACTIONS(3938), + [anon_sym_GT_AMP] = ACTIONS(3938), + [sym__special_characters] = ACTIONS(3938), + [anon_sym_DQUOTE] = ACTIONS(3938), + [anon_sym_DOLLAR] = ACTIONS(3938), + [sym_raw_string] = ACTIONS(3938), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3938), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3938), + [anon_sym_BQUOTE] = ACTIONS(3938), + [anon_sym_LT_LPAREN] = ACTIONS(3938), + [anon_sym_GT_LPAREN] = ACTIONS(3938), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(3938), + [anon_sym_LF] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3938), + }, + [1836] = { + [sym_concatenation] = STATE(2149), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2149), + [anon_sym_RBRACE] = ACTIONS(5045), + [anon_sym_EQ] = ACTIONS(5047), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5047), + [anon_sym_COLON_QMARK] = ACTIONS(5047), + [anon_sym_COLON_DASH] = ACTIONS(5047), + [anon_sym_PERCENT] = ACTIONS(5047), + [anon_sym_DASH] = ACTIONS(5047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1837] = { + [sym_file_descriptor] = ACTIONS(3946), + [sym__concat] = ACTIONS(3946), + [sym_variable_name] = ACTIONS(3946), + [anon_sym_esac] = ACTIONS(3948), + [anon_sym_PIPE] = ACTIONS(3948), + [anon_sym_RPAREN] = ACTIONS(3948), + [anon_sym_SEMI_SEMI] = ACTIONS(3948), + [anon_sym_PIPE_AMP] = ACTIONS(3948), + [anon_sym_AMP_AMP] = ACTIONS(3948), + [anon_sym_PIPE_PIPE] = ACTIONS(3948), + [anon_sym_LT] = ACTIONS(3948), + [anon_sym_GT] = ACTIONS(3948), + [anon_sym_GT_GT] = ACTIONS(3948), + [anon_sym_AMP_GT] = ACTIONS(3948), + [anon_sym_AMP_GT_GT] = ACTIONS(3948), + [anon_sym_LT_AMP] = ACTIONS(3948), + [anon_sym_GT_AMP] = ACTIONS(3948), + [sym__special_characters] = ACTIONS(3948), + [anon_sym_DQUOTE] = ACTIONS(3948), + [anon_sym_DOLLAR] = ACTIONS(3948), + [sym_raw_string] = ACTIONS(3948), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3948), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3948), + [anon_sym_BQUOTE] = ACTIONS(3948), + [anon_sym_LT_LPAREN] = ACTIONS(3948), + [anon_sym_GT_LPAREN] = ACTIONS(3948), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3948), + [anon_sym_SEMI] = ACTIONS(3948), + [anon_sym_LF] = ACTIONS(3946), + [anon_sym_AMP] = ACTIONS(3948), + }, + [1838] = { + [sym_concatenation] = STATE(2151), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2151), + [anon_sym_RBRACE] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(5053), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5053), + [anon_sym_COLON_QMARK] = ACTIONS(5053), + [anon_sym_COLON_DASH] = ACTIONS(5053), + [anon_sym_PERCENT] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, [1839] = { - [sym_file_redirect] = STATE(1839), - [sym_heredoc_redirect] = STATE(1839), - [sym_herestring_redirect] = STATE(1839), - [aux_sym_while_statement_repeat1] = STATE(1839), - [sym_file_descriptor] = ACTIONS(5092), - [anon_sym_PIPE] = ACTIONS(2087), - [anon_sym_PIPE_AMP] = ACTIONS(2082), - [anon_sym_AMP_AMP] = ACTIONS(2082), - [anon_sym_PIPE_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(5095), - [anon_sym_GT] = ACTIONS(5095), - [anon_sym_GT_GT] = ACTIONS(5098), - [anon_sym_AMP_GT] = ACTIONS(5095), - [anon_sym_AMP_GT_GT] = ACTIONS(5098), - [anon_sym_LT_AMP] = ACTIONS(5098), - [anon_sym_GT_AMP] = ACTIONS(5098), - [anon_sym_LT_LT] = ACTIONS(4973), - [anon_sym_LT_LT_DASH] = ACTIONS(4976), - [anon_sym_LT_LT_LT] = ACTIONS(5101), - [anon_sym_BQUOTE] = ACTIONS(2082), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(3956), + [sym__concat] = ACTIONS(3956), + [sym_variable_name] = ACTIONS(3956), + [anon_sym_esac] = ACTIONS(3958), + [anon_sym_PIPE] = ACTIONS(3958), + [anon_sym_RPAREN] = ACTIONS(3958), + [anon_sym_SEMI_SEMI] = ACTIONS(3958), + [anon_sym_PIPE_AMP] = ACTIONS(3958), + [anon_sym_AMP_AMP] = ACTIONS(3958), + [anon_sym_PIPE_PIPE] = ACTIONS(3958), + [anon_sym_LT] = ACTIONS(3958), + [anon_sym_GT] = ACTIONS(3958), + [anon_sym_GT_GT] = ACTIONS(3958), + [anon_sym_AMP_GT] = ACTIONS(3958), + [anon_sym_AMP_GT_GT] = ACTIONS(3958), + [anon_sym_LT_AMP] = ACTIONS(3958), + [anon_sym_GT_AMP] = ACTIONS(3958), + [sym__special_characters] = ACTIONS(3958), + [anon_sym_DQUOTE] = ACTIONS(3958), + [anon_sym_DOLLAR] = ACTIONS(3958), + [sym_raw_string] = ACTIONS(3958), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3958), + [anon_sym_BQUOTE] = ACTIONS(3958), + [anon_sym_LT_LPAREN] = ACTIONS(3958), + [anon_sym_GT_LPAREN] = ACTIONS(3958), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3958), + [anon_sym_SEMI] = ACTIONS(3958), + [anon_sym_LF] = ACTIONS(3956), + [anon_sym_AMP] = ACTIONS(3958), }, [1840] = { - [aux_sym_concatenation_repeat1] = STATE(1840), - [sym__simple_heredoc_body] = ACTIONS(1654), - [sym__heredoc_body_beginning] = ACTIONS(1654), - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1654), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_PIPE_PIPE] = ACTIONS(1654), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1654), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1654), - [anon_sym_LT_AMP] = ACTIONS(1654), - [anon_sym_GT_AMP] = ACTIONS(1654), - [anon_sym_LT_LT] = ACTIONS(1656), - [anon_sym_LT_LT_DASH] = ACTIONS(1654), - [anon_sym_LT_LT_LT] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5057), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1841] = { - [sym__heredoc_body_middle] = ACTIONS(2752), - [sym__heredoc_body_end] = ACTIONS(2752), - [anon_sym_DOLLAR] = ACTIONS(2754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2752), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(3962), + [sym__concat] = ACTIONS(3962), + [sym_variable_name] = ACTIONS(3962), + [anon_sym_esac] = ACTIONS(3964), + [anon_sym_PIPE] = ACTIONS(3964), + [anon_sym_RPAREN] = ACTIONS(3964), + [anon_sym_SEMI_SEMI] = ACTIONS(3964), + [anon_sym_PIPE_AMP] = ACTIONS(3964), + [anon_sym_AMP_AMP] = ACTIONS(3964), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_LT] = ACTIONS(3964), + [anon_sym_GT] = ACTIONS(3964), + [anon_sym_GT_GT] = ACTIONS(3964), + [anon_sym_AMP_GT] = ACTIONS(3964), + [anon_sym_AMP_GT_GT] = ACTIONS(3964), + [anon_sym_LT_AMP] = ACTIONS(3964), + [anon_sym_GT_AMP] = ACTIONS(3964), + [sym__special_characters] = ACTIONS(3964), + [anon_sym_DQUOTE] = ACTIONS(3964), + [anon_sym_DOLLAR] = ACTIONS(3964), + [sym_raw_string] = ACTIONS(3964), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3964), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3964), + [anon_sym_BQUOTE] = ACTIONS(3964), + [anon_sym_LT_LPAREN] = ACTIONS(3964), + [anon_sym_GT_LPAREN] = ACTIONS(3964), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3964), + [anon_sym_SEMI] = ACTIONS(3964), + [anon_sym_LF] = ACTIONS(3962), + [anon_sym_AMP] = ACTIONS(3964), }, [1842] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5104), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5059), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1843] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5106), - [sym_comment] = ACTIONS(53), - }, - [1844] = { - [anon_sym_RBRACE] = ACTIONS(5106), - [sym_comment] = ACTIONS(53), - }, - [1845] = { - [sym_concatenation] = STATE(2189), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2189), - [anon_sym_RBRACE] = ACTIONS(5108), - [anon_sym_EQ] = ACTIONS(5110), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5112), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1846] = { - [sym__heredoc_body_middle] = ACTIONS(2830), - [sym__heredoc_body_end] = ACTIONS(2830), - [anon_sym_DOLLAR] = ACTIONS(2832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2830), - [sym_comment] = ACTIONS(53), - }, - [1847] = { - [sym_concatenation] = STATE(2192), - [sym_string] = STATE(2191), - [sym_simple_expansion] = STATE(2191), - [sym_string_expansion] = STATE(2191), - [sym_expansion] = STATE(2191), - [sym_command_substitution] = STATE(2191), - [sym_process_substitution] = STATE(2191), - [anon_sym_RBRACE] = ACTIONS(5106), - [sym__special_characters] = ACTIONS(5114), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(5116), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5116), - }, - [1848] = { - [sym__heredoc_body_middle] = ACTIONS(2873), - [sym__heredoc_body_end] = ACTIONS(2873), - [anon_sym_DOLLAR] = ACTIONS(2875), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2873), - [sym_comment] = ACTIONS(53), - }, - [1849] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5118), - }, - [1850] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5120), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1851] = { - [sym__heredoc_body_middle] = ACTIONS(2881), - [sym__heredoc_body_end] = ACTIONS(2881), - [anon_sym_DOLLAR] = ACTIONS(2883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2881), - [sym_comment] = ACTIONS(53), - }, - [1852] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5122), - }, - [1853] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5124), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1854] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5126), - }, - [1855] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5106), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1856] = { - [sym_concatenation] = STATE(2199), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2199), - [anon_sym_RBRACE] = ACTIONS(5128), - [anon_sym_EQ] = ACTIONS(5130), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5132), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5130), - [anon_sym_COLON_QMARK] = ACTIONS(5130), - [anon_sym_COLON_DASH] = ACTIONS(5130), - [anon_sym_PERCENT] = ACTIONS(5130), - [anon_sym_DASH] = ACTIONS(5130), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1857] = { - [sym__heredoc_body_middle] = ACTIONS(2897), - [sym__heredoc_body_end] = ACTIONS(2897), - [anon_sym_DOLLAR] = ACTIONS(2899), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2897), - [sym_comment] = ACTIONS(53), - }, - [1858] = { - [sym_concatenation] = STATE(2201), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2201), - [anon_sym_RBRACE] = ACTIONS(5134), - [anon_sym_EQ] = ACTIONS(5136), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5138), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5136), - [anon_sym_COLON_QMARK] = ACTIONS(5136), - [anon_sym_COLON_DASH] = ACTIONS(5136), - [anon_sym_PERCENT] = ACTIONS(5136), - [anon_sym_DASH] = ACTIONS(5136), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1859] = { - [sym__concat] = ACTIONS(2752), - [anon_sym_RPAREN] = ACTIONS(2752), - [sym__special_characters] = ACTIONS(2752), - [anon_sym_DQUOTE] = ACTIONS(2752), - [anon_sym_DOLLAR] = ACTIONS(2754), - [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(53), - [sym_word] = ACTIONS(2752), - }, - [1860] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5140), - [sym_comment] = ACTIONS(53), - }, - [1861] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5142), - [sym_comment] = ACTIONS(53), - }, - [1862] = { - [anon_sym_RBRACE] = ACTIONS(5142), - [sym_comment] = ACTIONS(53), - }, - [1863] = { - [sym_concatenation] = STATE(2205), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2205), - [anon_sym_RBRACE] = ACTIONS(5144), - [anon_sym_EQ] = ACTIONS(5146), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5148), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1864] = { - [sym__concat] = ACTIONS(2830), - [anon_sym_RPAREN] = ACTIONS(2830), - [sym__special_characters] = ACTIONS(2830), - [anon_sym_DQUOTE] = ACTIONS(2830), - [anon_sym_DOLLAR] = ACTIONS(2832), - [sym_raw_string] = ACTIONS(2830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2830), - [anon_sym_BQUOTE] = ACTIONS(2830), - [anon_sym_LT_LPAREN] = ACTIONS(2830), - [anon_sym_GT_LPAREN] = ACTIONS(2830), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2830), - }, - [1865] = { - [sym_concatenation] = STATE(2208), - [sym_string] = STATE(2207), - [sym_simple_expansion] = STATE(2207), - [sym_string_expansion] = STATE(2207), - [sym_expansion] = STATE(2207), - [sym_command_substitution] = STATE(2207), - [sym_process_substitution] = STATE(2207), - [anon_sym_RBRACE] = ACTIONS(5142), - [sym__special_characters] = ACTIONS(5150), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(5152), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5152), - }, - [1866] = { - [sym__concat] = ACTIONS(2873), - [anon_sym_RPAREN] = ACTIONS(2873), - [sym__special_characters] = ACTIONS(2873), - [anon_sym_DQUOTE] = ACTIONS(2873), - [anon_sym_DOLLAR] = ACTIONS(2875), - [sym_raw_string] = ACTIONS(2873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2873), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2873), - [anon_sym_BQUOTE] = ACTIONS(2873), - [anon_sym_LT_LPAREN] = ACTIONS(2873), - [anon_sym_GT_LPAREN] = ACTIONS(2873), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2873), - }, - [1867] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5154), - }, - [1868] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5156), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1869] = { - [sym__concat] = ACTIONS(2881), - [anon_sym_RPAREN] = ACTIONS(2881), - [sym__special_characters] = ACTIONS(2881), - [anon_sym_DQUOTE] = ACTIONS(2881), - [anon_sym_DOLLAR] = ACTIONS(2883), - [sym_raw_string] = ACTIONS(2881), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2881), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2881), - [anon_sym_BQUOTE] = ACTIONS(2881), - [anon_sym_LT_LPAREN] = ACTIONS(2881), - [anon_sym_GT_LPAREN] = ACTIONS(2881), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2881), - }, - [1870] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5158), - }, - [1871] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5160), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1872] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5162), - }, - [1873] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5142), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1874] = { - [sym_concatenation] = STATE(2215), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2215), - [anon_sym_RBRACE] = ACTIONS(5164), - [anon_sym_EQ] = ACTIONS(5166), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5168), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5166), - [anon_sym_COLON_QMARK] = ACTIONS(5166), - [anon_sym_COLON_DASH] = ACTIONS(5166), - [anon_sym_PERCENT] = ACTIONS(5166), - [anon_sym_DASH] = ACTIONS(5166), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1875] = { - [sym__concat] = ACTIONS(2897), - [anon_sym_RPAREN] = ACTIONS(2897), - [sym__special_characters] = ACTIONS(2897), - [anon_sym_DQUOTE] = ACTIONS(2897), - [anon_sym_DOLLAR] = ACTIONS(2899), - [sym_raw_string] = ACTIONS(2897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2897), - [anon_sym_BQUOTE] = ACTIONS(2897), - [anon_sym_LT_LPAREN] = ACTIONS(2897), - [anon_sym_GT_LPAREN] = ACTIONS(2897), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2897), - }, - [1876] = { - [sym_concatenation] = STATE(2217), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2217), - [anon_sym_RBRACE] = ACTIONS(5170), - [anon_sym_EQ] = ACTIONS(5172), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5174), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5172), - [anon_sym_COLON_QMARK] = ACTIONS(5172), - [anon_sym_COLON_DASH] = ACTIONS(5172), - [anon_sym_PERCENT] = ACTIONS(5172), - [anon_sym_DASH] = ACTIONS(5172), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1877] = { - [sym_file_descriptor] = ACTIONS(3917), - [sym__concat] = ACTIONS(3917), - [sym_variable_name] = ACTIONS(3917), - [anon_sym_PIPE] = ACTIONS(3919), - [anon_sym_RPAREN] = ACTIONS(3919), - [anon_sym_SEMI_SEMI] = ACTIONS(3919), - [anon_sym_PIPE_AMP] = ACTIONS(3919), - [anon_sym_AMP_AMP] = ACTIONS(3919), - [anon_sym_PIPE_PIPE] = ACTIONS(3919), - [anon_sym_LT] = ACTIONS(3919), - [anon_sym_GT] = ACTIONS(3919), - [anon_sym_GT_GT] = ACTIONS(3919), - [anon_sym_AMP_GT] = ACTIONS(3919), - [anon_sym_AMP_GT_GT] = ACTIONS(3919), - [anon_sym_LT_AMP] = ACTIONS(3919), - [anon_sym_GT_AMP] = ACTIONS(3919), - [sym__special_characters] = ACTIONS(3919), - [anon_sym_DQUOTE] = ACTIONS(3919), - [anon_sym_DOLLAR] = ACTIONS(3919), - [sym_raw_string] = ACTIONS(3919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3919), - [anon_sym_BQUOTE] = ACTIONS(3919), - [anon_sym_LT_LPAREN] = ACTIONS(3919), - [anon_sym_GT_LPAREN] = ACTIONS(3919), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3919), - [anon_sym_SEMI] = ACTIONS(3919), - [anon_sym_LF] = ACTIONS(3917), - [anon_sym_AMP] = ACTIONS(3919), - }, - [1878] = { - [sym_file_descriptor] = ACTIONS(3923), - [sym__concat] = ACTIONS(3923), - [sym_variable_name] = ACTIONS(3923), - [anon_sym_PIPE] = ACTIONS(3925), - [anon_sym_RPAREN] = ACTIONS(3925), - [anon_sym_SEMI_SEMI] = ACTIONS(3925), - [anon_sym_PIPE_AMP] = ACTIONS(3925), - [anon_sym_AMP_AMP] = ACTIONS(3925), - [anon_sym_PIPE_PIPE] = ACTIONS(3925), - [anon_sym_LT] = ACTIONS(3925), - [anon_sym_GT] = ACTIONS(3925), - [anon_sym_GT_GT] = ACTIONS(3925), - [anon_sym_AMP_GT] = ACTIONS(3925), - [anon_sym_AMP_GT_GT] = ACTIONS(3925), - [anon_sym_LT_AMP] = ACTIONS(3925), - [anon_sym_GT_AMP] = ACTIONS(3925), - [sym__special_characters] = ACTIONS(3925), - [anon_sym_DQUOTE] = ACTIONS(3925), - [anon_sym_DOLLAR] = ACTIONS(3925), - [sym_raw_string] = ACTIONS(3925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3925), - [anon_sym_BQUOTE] = ACTIONS(3925), - [anon_sym_LT_LPAREN] = ACTIONS(3925), - [anon_sym_GT_LPAREN] = ACTIONS(3925), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3925), - [anon_sym_SEMI] = ACTIONS(3925), - [anon_sym_LF] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3925), - }, - [1879] = { - [sym_file_descriptor] = ACTIONS(4008), - [sym__concat] = ACTIONS(4008), - [sym_variable_name] = ACTIONS(4008), - [anon_sym_PIPE] = ACTIONS(4010), - [anon_sym_RPAREN] = ACTIONS(4010), - [anon_sym_SEMI_SEMI] = ACTIONS(4010), - [anon_sym_PIPE_AMP] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_GT_GT] = ACTIONS(4010), - [anon_sym_AMP_GT] = ACTIONS(4010), - [anon_sym_AMP_GT_GT] = ACTIONS(4010), - [anon_sym_LT_AMP] = ACTIONS(4010), - [anon_sym_GT_AMP] = ACTIONS(4010), - [sym__special_characters] = ACTIONS(4010), - [anon_sym_DQUOTE] = ACTIONS(4010), - [anon_sym_DOLLAR] = ACTIONS(4010), - [sym_raw_string] = ACTIONS(4010), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4010), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4010), - [anon_sym_BQUOTE] = ACTIONS(4010), - [anon_sym_LT_LPAREN] = ACTIONS(4010), - [anon_sym_GT_LPAREN] = ACTIONS(4010), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4010), - [anon_sym_LF] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4010), - }, - [1880] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5176), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1881] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5178), - [sym_comment] = ACTIONS(53), - }, - [1882] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5180), - [sym_comment] = ACTIONS(53), - }, - [1883] = { - [anon_sym_RBRACE] = ACTIONS(5180), - [sym_comment] = ACTIONS(53), - }, - [1884] = { - [sym_concatenation] = STATE(2222), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2222), - [anon_sym_RBRACE] = ACTIONS(5182), - [anon_sym_EQ] = ACTIONS(5184), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1885] = { - [sym_file_descriptor] = ACTIONS(4024), - [sym__concat] = ACTIONS(4024), - [sym_variable_name] = ACTIONS(4024), - [anon_sym_PIPE] = ACTIONS(4026), - [anon_sym_RPAREN] = ACTIONS(4026), - [anon_sym_SEMI_SEMI] = ACTIONS(4026), - [anon_sym_PIPE_AMP] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [anon_sym_LT] = ACTIONS(4026), - [anon_sym_GT] = ACTIONS(4026), - [anon_sym_GT_GT] = ACTIONS(4026), - [anon_sym_AMP_GT] = ACTIONS(4026), - [anon_sym_AMP_GT_GT] = ACTIONS(4026), - [anon_sym_LT_AMP] = ACTIONS(4026), - [anon_sym_GT_AMP] = ACTIONS(4026), - [sym__special_characters] = ACTIONS(4026), - [anon_sym_DQUOTE] = ACTIONS(4026), - [anon_sym_DOLLAR] = ACTIONS(4026), - [sym_raw_string] = ACTIONS(4026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4026), - [anon_sym_BQUOTE] = ACTIONS(4026), - [anon_sym_LT_LPAREN] = ACTIONS(4026), - [anon_sym_GT_LPAREN] = ACTIONS(4026), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4026), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym_LF] = ACTIONS(4024), - [anon_sym_AMP] = ACTIONS(4026), - }, - [1886] = { - [sym_concatenation] = STATE(2224), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2224), - [anon_sym_RBRACE] = ACTIONS(5188), - [anon_sym_EQ] = ACTIONS(5190), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5190), - [anon_sym_COLON_QMARK] = ACTIONS(5190), - [anon_sym_COLON_DASH] = ACTIONS(5190), - [anon_sym_PERCENT] = ACTIONS(5190), - [anon_sym_DASH] = ACTIONS(5190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1887] = { - [sym_file_descriptor] = ACTIONS(4034), - [sym__concat] = ACTIONS(4034), - [sym_variable_name] = ACTIONS(4034), - [anon_sym_PIPE] = ACTIONS(4036), - [anon_sym_RPAREN] = ACTIONS(4036), - [anon_sym_SEMI_SEMI] = ACTIONS(4036), - [anon_sym_PIPE_AMP] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [anon_sym_LT] = ACTIONS(4036), - [anon_sym_GT] = ACTIONS(4036), - [anon_sym_GT_GT] = ACTIONS(4036), - [anon_sym_AMP_GT] = ACTIONS(4036), - [anon_sym_AMP_GT_GT] = ACTIONS(4036), - [anon_sym_LT_AMP] = ACTIONS(4036), - [anon_sym_GT_AMP] = ACTIONS(4036), - [sym__special_characters] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_DOLLAR] = ACTIONS(4036), - [sym_raw_string] = ACTIONS(4036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4036), - [anon_sym_BQUOTE] = ACTIONS(4036), - [anon_sym_LT_LPAREN] = ACTIONS(4036), - [anon_sym_GT_LPAREN] = ACTIONS(4036), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4036), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_LF] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4036), - }, - [1888] = { - [sym_concatenation] = STATE(2226), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2226), - [anon_sym_RBRACE] = ACTIONS(5194), - [anon_sym_EQ] = ACTIONS(5196), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5196), - [anon_sym_COLON_QMARK] = ACTIONS(5196), - [anon_sym_COLON_DASH] = ACTIONS(5196), - [anon_sym_PERCENT] = ACTIONS(5196), - [anon_sym_DASH] = ACTIONS(5196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1889] = { - [sym_file_descriptor] = ACTIONS(4044), - [sym__concat] = ACTIONS(4044), - [sym_variable_name] = ACTIONS(4044), - [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), - [sym__special_characters] = ACTIONS(4046), - [anon_sym_DQUOTE] = ACTIONS(4046), - [anon_sym_DOLLAR] = ACTIONS(4046), - [sym_raw_string] = ACTIONS(4046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4046), - [anon_sym_BQUOTE] = ACTIONS(4046), - [anon_sym_LT_LPAREN] = ACTIONS(4046), - [anon_sym_GT_LPAREN] = ACTIONS(4046), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4046), - [anon_sym_SEMI] = ACTIONS(4046), - [anon_sym_LF] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4046), - }, - [1890] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5200), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1891] = { - [sym_file_descriptor] = ACTIONS(4050), - [sym__concat] = ACTIONS(4050), - [sym_variable_name] = ACTIONS(4050), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_RPAREN] = ACTIONS(4052), - [anon_sym_SEMI_SEMI] = ACTIONS(4052), - [anon_sym_PIPE_AMP] = ACTIONS(4052), - [anon_sym_AMP_AMP] = ACTIONS(4052), - [anon_sym_PIPE_PIPE] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_GT_GT] = ACTIONS(4052), - [anon_sym_AMP_GT] = ACTIONS(4052), - [anon_sym_AMP_GT_GT] = ACTIONS(4052), - [anon_sym_LT_AMP] = ACTIONS(4052), - [anon_sym_GT_AMP] = ACTIONS(4052), - [sym__special_characters] = ACTIONS(4052), - [anon_sym_DQUOTE] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4052), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4052), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4052), - [anon_sym_BQUOTE] = ACTIONS(4052), - [anon_sym_LT_LPAREN] = ACTIONS(4052), - [anon_sym_GT_LPAREN] = ACTIONS(4052), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4052), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4052), - }, - [1892] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5202), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1893] = { - [sym__concat] = ACTIONS(2752), - [anon_sym_SEMI_SEMI] = ACTIONS(2754), - [sym__special_characters] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2754), - [anon_sym_DOLLAR] = ACTIONS(2754), - [sym_raw_string] = ACTIONS(2754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2754), - [anon_sym_BQUOTE] = ACTIONS(2754), - [anon_sym_LT_LPAREN] = ACTIONS(2754), - [anon_sym_GT_LPAREN] = ACTIONS(2754), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2754), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_LF] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2754), - }, - [1894] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5204), - [sym_comment] = ACTIONS(53), - }, - [1895] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5206), - [sym_comment] = ACTIONS(53), - }, - [1896] = { - [anon_sym_RBRACE] = ACTIONS(5206), - [sym_comment] = ACTIONS(53), - }, - [1897] = { - [sym_concatenation] = STATE(2232), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2232), - [anon_sym_RBRACE] = ACTIONS(5208), - [anon_sym_EQ] = ACTIONS(5210), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5212), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1898] = { - [sym__concat] = ACTIONS(2830), - [anon_sym_SEMI_SEMI] = ACTIONS(2832), - [sym__special_characters] = ACTIONS(2832), - [anon_sym_DQUOTE] = ACTIONS(2832), - [anon_sym_DOLLAR] = ACTIONS(2832), - [sym_raw_string] = ACTIONS(2832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2832), - [anon_sym_BQUOTE] = ACTIONS(2832), - [anon_sym_LT_LPAREN] = ACTIONS(2832), - [anon_sym_GT_LPAREN] = ACTIONS(2832), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_LF] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2832), - }, - [1899] = { - [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(5206), - [sym__special_characters] = ACTIONS(5214), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(5216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5216), - }, - [1900] = { - [sym__concat] = ACTIONS(2873), - [anon_sym_SEMI_SEMI] = ACTIONS(2875), - [sym__special_characters] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2875), - [anon_sym_DOLLAR] = ACTIONS(2875), - [sym_raw_string] = ACTIONS(2875), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2875), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2875), - [anon_sym_BQUOTE] = ACTIONS(2875), - [anon_sym_LT_LPAREN] = ACTIONS(2875), - [anon_sym_GT_LPAREN] = ACTIONS(2875), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym_LF] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2875), - }, - [1901] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5218), - }, - [1902] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5220), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1903] = { - [sym__concat] = ACTIONS(2881), - [anon_sym_SEMI_SEMI] = ACTIONS(2883), - [sym__special_characters] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2883), - [sym_raw_string] = ACTIONS(2883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2883), - [anon_sym_BQUOTE] = ACTIONS(2883), - [anon_sym_LT_LPAREN] = ACTIONS(2883), - [anon_sym_GT_LPAREN] = ACTIONS(2883), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2883), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym_LF] = ACTIONS(2881), - [anon_sym_AMP] = ACTIONS(2883), - }, - [1904] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5222), - }, - [1905] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5224), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1906] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5226), - }, - [1907] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5206), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1908] = { - [sym_concatenation] = STATE(2242), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2242), - [anon_sym_RBRACE] = ACTIONS(5228), - [anon_sym_EQ] = ACTIONS(5230), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5232), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5230), - [anon_sym_COLON_QMARK] = ACTIONS(5230), - [anon_sym_COLON_DASH] = ACTIONS(5230), - [anon_sym_PERCENT] = ACTIONS(5230), - [anon_sym_DASH] = ACTIONS(5230), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1909] = { - [sym__concat] = ACTIONS(2897), - [anon_sym_SEMI_SEMI] = ACTIONS(2899), - [sym__special_characters] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2899), - [anon_sym_DOLLAR] = ACTIONS(2899), - [sym_raw_string] = ACTIONS(2899), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2899), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2899), - [anon_sym_BQUOTE] = ACTIONS(2899), - [anon_sym_LT_LPAREN] = ACTIONS(2899), - [anon_sym_GT_LPAREN] = ACTIONS(2899), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2899), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym_LF] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2899), - }, - [1910] = { - [sym_concatenation] = STATE(2244), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2244), - [anon_sym_RBRACE] = ACTIONS(5234), - [anon_sym_EQ] = ACTIONS(5236), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5236), - [anon_sym_COLON_QMARK] = ACTIONS(5236), - [anon_sym_COLON_DASH] = ACTIONS(5236), - [anon_sym_PERCENT] = ACTIONS(5236), - [anon_sym_DASH] = ACTIONS(5236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1911] = { - [sym__terminated_statement] = STATE(1072), - [sym_for_statement] = STATE(607), - [sym_while_statement] = STATE(607), - [sym_if_statement] = STATE(607), - [sym_case_statement] = STATE(607), - [sym_function_definition] = STATE(607), - [sym_subshell] = STATE(607), - [sym_pipeline] = STATE(607), - [sym_list] = STATE(607), - [sym_negated_command] = STATE(607), - [sym_test_command] = STATE(607), - [sym_declaration_command] = STATE(607), - [sym_unset_command] = STATE(607), - [sym_command] = STATE(607), + [sym__terminated_statement] = STATE(1041), + [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_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(610), + [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -53883,16 +49244,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1072), + [aux_sym_program_repeat1] = STATE(1041), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), [anon_sym_while] = ACTIONS(13), [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(5240), - [anon_sym_elif] = ACTIONS(5240), - [anon_sym_else] = ACTIONS(5240), + [anon_sym_fi] = ACTIONS(5061), + [anon_sym_elif] = ACTIONS(5061), + [anon_sym_else] = ACTIONS(5061), [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), @@ -53925,46 +49286,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [1912] = { - [anon_sym_esac] = ACTIONS(5242), - [anon_sym_PIPE] = ACTIONS(5242), - [anon_sym_RPAREN] = ACTIONS(5242), - [anon_sym_SEMI_SEMI] = ACTIONS(5242), - [anon_sym_PIPE_AMP] = ACTIONS(5242), - [anon_sym_AMP_AMP] = ACTIONS(5242), - [anon_sym_PIPE_PIPE] = ACTIONS(5242), + [1844] = { + [anon_sym_esac] = ACTIONS(5063), + [anon_sym_PIPE] = ACTIONS(5063), + [anon_sym_RPAREN] = ACTIONS(5063), + [anon_sym_SEMI_SEMI] = ACTIONS(5063), + [anon_sym_PIPE_AMP] = ACTIONS(5063), + [anon_sym_AMP_AMP] = ACTIONS(5063), + [anon_sym_PIPE_PIPE] = ACTIONS(5063), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5242), - [anon_sym_LF] = ACTIONS(5244), - [anon_sym_AMP] = ACTIONS(5242), + [anon_sym_SEMI] = ACTIONS(5063), + [anon_sym_LF] = ACTIONS(5065), + [anon_sym_AMP] = ACTIONS(5063), }, - [1913] = { - [aux_sym_concatenation_repeat1] = STATE(1517), + [1845] = { + [aux_sym_concatenation_repeat1] = STATE(1467), [sym__concat] = ACTIONS(551), - [anon_sym_PIPE] = ACTIONS(5246), - [anon_sym_RPAREN] = ACTIONS(5246), + [anon_sym_PIPE] = ACTIONS(5067), + [anon_sym_RPAREN] = ACTIONS(5067), [sym_comment] = ACTIONS(53), }, - [1914] = { - [aux_sym_concatenation_repeat1] = STATE(1517), + [1846] = { + [aux_sym_concatenation_repeat1] = STATE(1467), [sym__concat] = ACTIONS(551), - [anon_sym_PIPE] = ACTIONS(5248), - [anon_sym_RPAREN] = ACTIONS(5248), + [anon_sym_PIPE] = ACTIONS(5069), + [anon_sym_RPAREN] = ACTIONS(5069), [sym_comment] = ACTIONS(53), }, - [1915] = { - [anon_sym_PIPE] = ACTIONS(5248), - [anon_sym_RPAREN] = ACTIONS(5248), + [1847] = { + [anon_sym_PIPE] = ACTIONS(5069), + [anon_sym_RPAREN] = ACTIONS(5069), [sym_comment] = ACTIONS(53), }, - [1916] = { + [1848] = { [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(5250), - [anon_sym_PLUS_EQ] = ACTIONS(5250), + [anon_sym_EQ] = ACTIONS(5071), + [anon_sym_PLUS_EQ] = ACTIONS(5071), [sym_comment] = ACTIONS(53), }, - [1917] = { - [sym__terminated_statement] = STATE(2246), + [1849] = { + [sym__terminated_statement] = STATE(2155), [sym_for_statement] = STATE(39), [sym_while_statement] = STATE(39), [sym_if_statement] = STATE(39), @@ -54027,45 +49388,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [1918] = { - [anon_sym_esac] = ACTIONS(5252), - [sym__special_characters] = ACTIONS(5254), - [anon_sym_DQUOTE] = ACTIONS(5254), - [anon_sym_DOLLAR] = ACTIONS(5256), - [sym_raw_string] = ACTIONS(5254), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5254), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5254), - [anon_sym_BQUOTE] = ACTIONS(5254), - [anon_sym_LT_LPAREN] = ACTIONS(5254), - [anon_sym_GT_LPAREN] = ACTIONS(5254), + [1850] = { + [anon_sym_esac] = ACTIONS(5073), + [sym__special_characters] = ACTIONS(5075), + [anon_sym_DQUOTE] = ACTIONS(5075), + [anon_sym_DOLLAR] = ACTIONS(5077), + [sym_raw_string] = ACTIONS(5075), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5075), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5075), + [anon_sym_BQUOTE] = ACTIONS(5075), + [anon_sym_LT_LPAREN] = ACTIONS(5075), + [anon_sym_GT_LPAREN] = ACTIONS(5075), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5256), + [sym_word] = ACTIONS(5077), }, - [1919] = { + [1851] = { [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5258), + [sym_word] = ACTIONS(5079), }, - [1920] = { + [1852] = { [sym_subshell] = STATE(70), [sym_test_command] = STATE(70), [sym_command] = STATE(70), - [sym_command_name] = STATE(1935), + [sym_command_name] = STATE(1861), [sym_variable_assignment] = STATE(30), [sym_subscript] = STATE(71), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(1938), - [sym_string] = STATE(1928), - [sym_simple_expansion] = STATE(1928), - [sym_string_expansion] = STATE(1928), - [sym_expansion] = STATE(1928), - [sym_command_substitution] = STATE(1928), - [sym_process_substitution] = STATE(1928), - [aux_sym_command_repeat1] = STATE(1940), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1858), + [sym_simple_expansion] = STATE(1858), + [sym_string_expansion] = STATE(1858), + [sym_expansion] = STATE(1858), + [sym_command_substitution] = STATE(1858), + [sym_process_substitution] = STATE(1858), + [aux_sym_command_repeat1] = STATE(1865), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(4460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4462), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4331), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -54073,24 +49434,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4468), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(4474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), + [sym__special_characters] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4474), + [sym_word] = ACTIONS(4339), }, - [1921] = { - [sym__expression] = STATE(2248), - [sym_binary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym_parenthesized_expression] = STATE(2248), - [sym_concatenation] = STATE(2248), + [1853] = { + [sym__expression] = STATE(2157), + [sym_binary_expression] = STATE(2157), + [sym_unary_expression] = STATE(2157), + [sym_parenthesized_expression] = STATE(2157), + [sym_concatenation] = STATE(2157), [sym_string] = STATE(77), [sym_simple_expansion] = STATE(77), [sym_string_expansion] = STATE(77), @@ -54112,12 +49473,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(129), [sym_test_operator] = ACTIONS(131), }, - [1922] = { - [sym__expression] = STATE(2249), - [sym_binary_expression] = STATE(2249), - [sym_unary_expression] = STATE(2249), - [sym_parenthesized_expression] = STATE(2249), - [sym_concatenation] = STATE(2249), + [1854] = { + [sym__expression] = STATE(2158), + [sym_binary_expression] = STATE(2158), + [sym_unary_expression] = STATE(2158), + [sym_parenthesized_expression] = STATE(2158), + [sym_concatenation] = STATE(2158), [sym_string] = STATE(88), [sym_simple_expansion] = STATE(88), [sym_string_expansion] = STATE(88), @@ -54139,77 +49500,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(153), [sym_test_operator] = ACTIONS(155), }, - [1923] = { - [sym_variable_assignment] = STATE(2261), - [sym_subscript] = STATE(2260), - [sym_concatenation] = STATE(2261), - [sym_string] = STATE(2254), - [sym_simple_expansion] = STATE(2254), - [sym_string_expansion] = STATE(2254), - [sym_expansion] = STATE(2254), - [sym_command_substitution] = STATE(2254), - [sym_process_substitution] = STATE(2254), - [aux_sym_declaration_command_repeat1] = STATE(2261), - [sym_variable_name] = ACTIONS(5260), + [1855] = { + [sym_variable_assignment] = STATE(2170), + [sym_subscript] = STATE(2169), + [sym_concatenation] = STATE(2170), + [sym_string] = STATE(2163), + [sym_simple_expansion] = STATE(2163), + [sym_string_expansion] = STATE(2163), + [sym_expansion] = STATE(2163), + [sym_command_substitution] = STATE(2163), + [sym_process_substitution] = STATE(2163), + [aux_sym_declaration_command_repeat1] = STATE(2170), + [sym_variable_name] = ACTIONS(5081), [anon_sym_esac] = ACTIONS(159), [anon_sym_PIPE] = ACTIONS(159), [anon_sym_SEMI_SEMI] = ACTIONS(159), [anon_sym_PIPE_AMP] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(159), [anon_sym_PIPE_PIPE] = ACTIONS(159), - [sym__special_characters] = ACTIONS(5262), - [anon_sym_DQUOTE] = ACTIONS(5264), - [anon_sym_DOLLAR] = ACTIONS(5266), - [sym_raw_string] = ACTIONS(5268), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5270), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5272), - [anon_sym_BQUOTE] = ACTIONS(5274), - [anon_sym_LT_LPAREN] = ACTIONS(5276), - [anon_sym_GT_LPAREN] = ACTIONS(5276), + [sym__special_characters] = ACTIONS(5083), + [anon_sym_DQUOTE] = ACTIONS(5085), + [anon_sym_DOLLAR] = ACTIONS(5087), + [sym_raw_string] = ACTIONS(5089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5091), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5093), + [anon_sym_BQUOTE] = ACTIONS(5095), + [anon_sym_LT_LPAREN] = ACTIONS(5097), + [anon_sym_GT_LPAREN] = ACTIONS(5097), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5278), - [sym_word] = ACTIONS(5268), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5099), + [sym_word] = ACTIONS(5089), [anon_sym_SEMI] = ACTIONS(159), [anon_sym_LF] = ACTIONS(181), [anon_sym_AMP] = ACTIONS(159), }, - [1924] = { - [sym_concatenation] = STATE(2271), - [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), - [aux_sym_unset_command_repeat1] = STATE(2271), + [1856] = { + [sym_concatenation] = STATE(2180), + [sym_string] = STATE(2174), + [sym_simple_expansion] = STATE(2174), + [sym_string_expansion] = STATE(2174), + [sym_expansion] = STATE(2174), + [sym_command_substitution] = STATE(2174), + [sym_process_substitution] = STATE(2174), + [aux_sym_unset_command_repeat1] = STATE(2180), [anon_sym_esac] = ACTIONS(183), [anon_sym_PIPE] = ACTIONS(183), [anon_sym_SEMI_SEMI] = ACTIONS(183), [anon_sym_PIPE_AMP] = ACTIONS(183), [anon_sym_AMP_AMP] = ACTIONS(183), [anon_sym_PIPE_PIPE] = ACTIONS(183), - [sym__special_characters] = ACTIONS(5280), - [anon_sym_DQUOTE] = ACTIONS(5282), - [anon_sym_DOLLAR] = ACTIONS(5284), - [sym_raw_string] = ACTIONS(5286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5290), - [anon_sym_BQUOTE] = ACTIONS(5292), - [anon_sym_LT_LPAREN] = ACTIONS(5294), - [anon_sym_GT_LPAREN] = ACTIONS(5294), + [sym__special_characters] = ACTIONS(5101), + [anon_sym_DQUOTE] = ACTIONS(5103), + [anon_sym_DOLLAR] = ACTIONS(5105), + [sym_raw_string] = ACTIONS(5107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5109), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5111), + [anon_sym_BQUOTE] = ACTIONS(5113), + [anon_sym_LT_LPAREN] = ACTIONS(5115), + [anon_sym_GT_LPAREN] = ACTIONS(5115), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5296), - [sym_word] = ACTIONS(5286), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5117), + [sym_word] = ACTIONS(5107), [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LF] = ACTIONS(203), [anon_sym_AMP] = ACTIONS(183), }, - [1925] = { - [aux_sym_concatenation_repeat1] = STATE(2273), + [1857] = { + [aux_sym_concatenation_repeat1] = STATE(2181), [sym__simple_heredoc_body] = ACTIONS(221), [sym__heredoc_body_beginning] = ACTIONS(221), [sym_file_descriptor] = ACTIONS(221), - [sym__concat] = ACTIONS(5298), + [sym__concat] = ACTIONS(223), [anon_sym_esac] = ACTIONS(225), [anon_sym_PIPE] = ACTIONS(225), [anon_sym_SEMI_SEMI] = ACTIONS(225), @@ -54243,40 +49604,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(221), [anon_sym_AMP] = ACTIONS(225), }, - [1926] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(2275), - [anon_sym_DQUOTE] = ACTIONS(5300), - [anon_sym_DOLLAR] = ACTIONS(229), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [1927] = { - [sym_string] = STATE(2277), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(5302), - [sym_raw_string] = ACTIONS(5304), - [anon_sym_POUND] = ACTIONS(5302), - [anon_sym_DASH] = ACTIONS(5302), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5306), - [anon_sym_STAR] = ACTIONS(5302), - [anon_sym_AT] = ACTIONS(5302), - [anon_sym_QMARK] = ACTIONS(5302), - [anon_sym_0] = ACTIONS(5308), - [anon_sym__] = ACTIONS(5308), - }, - [1928] = { - [aux_sym_concatenation_repeat1] = STATE(2273), + [1858] = { + [aux_sym_concatenation_repeat1] = STATE(2181), [sym__simple_heredoc_body] = ACTIONS(247), [sym__heredoc_body_beginning] = ACTIONS(247), [sym_file_descriptor] = ACTIONS(247), - [sym__concat] = ACTIONS(5298), + [sym__concat] = ACTIONS(223), [anon_sym_esac] = ACTIONS(249), [anon_sym_PIPE] = ACTIONS(249), [anon_sym_SEMI_SEMI] = ACTIONS(249), @@ -54310,219 +49643,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(247), [anon_sym_AMP] = ACTIONS(249), }, - [1929] = { - [sym_subscript] = STATE(2283), - [sym_variable_name] = ACTIONS(5310), - [anon_sym_DOLLAR] = ACTIONS(5312), - [anon_sym_POUND] = ACTIONS(5314), - [anon_sym_DASH] = ACTIONS(5312), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5316), - [anon_sym_STAR] = ACTIONS(5312), - [anon_sym_AT] = ACTIONS(5312), - [anon_sym_QMARK] = ACTIONS(5312), - [anon_sym_0] = ACTIONS(5318), - [anon_sym__] = ACTIONS(5318), - }, - [1930] = { - [sym_for_statement] = STATE(2284), - [sym_while_statement] = STATE(2284), - [sym_if_statement] = STATE(2284), - [sym_case_statement] = STATE(2284), - [sym_function_definition] = STATE(2284), - [sym_subshell] = STATE(2284), - [sym_pipeline] = STATE(2284), - [sym_list] = STATE(2284), - [sym_negated_command] = STATE(2284), - [sym_test_command] = STATE(2284), - [sym_declaration_command] = STATE(2284), - [sym_unset_command] = STATE(2284), - [sym_command] = STATE(2284), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2285), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [1931] = { - [sym_for_statement] = STATE(2286), - [sym_while_statement] = STATE(2286), - [sym_if_statement] = STATE(2286), - [sym_case_statement] = STATE(2286), - [sym_function_definition] = STATE(2286), - [sym_subshell] = STATE(2286), - [sym_pipeline] = STATE(2286), - [sym_list] = STATE(2286), - [sym_negated_command] = STATE(2286), - [sym_test_command] = STATE(2286), - [sym_declaration_command] = STATE(2286), - [sym_unset_command] = STATE(2286), - [sym_command] = STATE(2286), - [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(2287), - [sym_subscript] = STATE(183), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(303), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(305), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_typeset] = ACTIONS(315), - [anon_sym_export] = ACTIONS(315), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_unset] = ACTIONS(317), - [anon_sym_unsetenv] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), - }, - [1932] = { - [sym_for_statement] = STATE(2288), - [sym_while_statement] = STATE(2288), - [sym_if_statement] = STATE(2288), - [sym_case_statement] = STATE(2288), - [sym_function_definition] = STATE(2288), - [sym_subshell] = STATE(2288), - [sym_pipeline] = STATE(2288), - [sym_list] = STATE(2288), - [sym_negated_command] = STATE(2288), - [sym_test_command] = STATE(2288), - [sym_declaration_command] = STATE(2288), - [sym_unset_command] = STATE(2288), - [sym_command] = STATE(2288), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2289), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [1933] = { - [aux_sym_concatenation_repeat1] = STATE(2273), + [1859] = { + [aux_sym_concatenation_repeat1] = STATE(2181), [sym__simple_heredoc_body] = ACTIONS(247), [sym__heredoc_body_beginning] = ACTIONS(247), [sym_file_descriptor] = ACTIONS(247), - [sym__concat] = ACTIONS(5298), + [sym__concat] = ACTIONS(223), [anon_sym_esac] = ACTIONS(249), [anon_sym_PIPE] = ACTIONS(249), [anon_sym_SEMI_SEMI] = ACTIONS(249), - [anon_sym_LPAREN] = ACTIONS(5320), + [anon_sym_LPAREN] = ACTIONS(5119), [anon_sym_PIPE_AMP] = ACTIONS(249), [anon_sym_AMP_AMP] = ACTIONS(249), [anon_sym_PIPE_PIPE] = ACTIONS(249), @@ -54553,77 +49683,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(247), [anon_sym_AMP] = ACTIONS(249), }, - [1934] = { - [anon_sym_esac] = ACTIONS(5252), - [anon_sym_PIPE] = ACTIONS(5322), - [anon_sym_SEMI_SEMI] = ACTIONS(5324), - [anon_sym_PIPE_AMP] = ACTIONS(5322), - [anon_sym_AMP_AMP] = ACTIONS(5326), - [anon_sym_PIPE_PIPE] = ACTIONS(5326), + [1860] = { + [anon_sym_esac] = ACTIONS(5073), + [anon_sym_PIPE] = ACTIONS(5121), + [anon_sym_SEMI_SEMI] = ACTIONS(5123), + [anon_sym_PIPE_AMP] = ACTIONS(5121), + [anon_sym_AMP_AMP] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5125), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5328), - [anon_sym_LF] = ACTIONS(5330), - [anon_sym_AMP] = ACTIONS(5328), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(331), }, - [1935] = { - [sym_file_redirect] = STATE(2301), - [sym_heredoc_redirect] = STATE(2301), + [1861] = { + [sym_file_redirect] = STATE(2192), + [sym_heredoc_redirect] = STATE(2192), [sym_heredoc_body] = STATE(200), - [sym_herestring_redirect] = STATE(2301), - [sym_concatenation] = STATE(2302), - [sym_string] = STATE(2300), - [sym_simple_expansion] = STATE(2300), - [sym_string_expansion] = STATE(2300), - [sym_expansion] = STATE(2300), - [sym_command_substitution] = STATE(2300), - [sym_process_substitution] = STATE(2300), - [aux_sym_while_statement_repeat1] = STATE(2301), - [aux_sym_command_repeat2] = STATE(2302), + [sym_herestring_redirect] = STATE(2192), + [sym_concatenation] = STATE(2193), + [sym_string] = STATE(2191), + [sym_simple_expansion] = STATE(2191), + [sym_string_expansion] = STATE(2191), + [sym_expansion] = STATE(2191), + [sym_command_substitution] = STATE(2191), + [sym_process_substitution] = STATE(2191), + [aux_sym_while_statement_repeat1] = STATE(2192), + [aux_sym_command_repeat2] = STATE(2193), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(5332), + [sym_file_descriptor] = ACTIONS(5127), [anon_sym_esac] = ACTIONS(343), [anon_sym_PIPE] = ACTIONS(343), [anon_sym_SEMI_SEMI] = ACTIONS(343), [anon_sym_PIPE_AMP] = ACTIONS(343), [anon_sym_AMP_AMP] = ACTIONS(343), [anon_sym_PIPE_PIPE] = ACTIONS(343), - [anon_sym_EQ_TILDE] = ACTIONS(5334), - [anon_sym_EQ_EQ] = ACTIONS(5334), - [anon_sym_LT] = ACTIONS(5336), - [anon_sym_GT] = ACTIONS(5336), - [anon_sym_GT_GT] = ACTIONS(5336), - [anon_sym_AMP_GT] = ACTIONS(5336), - [anon_sym_AMP_GT_GT] = ACTIONS(5336), - [anon_sym_LT_AMP] = ACTIONS(5336), - [anon_sym_GT_AMP] = ACTIONS(5336), + [anon_sym_EQ_TILDE] = ACTIONS(5129), + [anon_sym_EQ_EQ] = ACTIONS(5129), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_GT_GT] = ACTIONS(5131), + [anon_sym_AMP_GT] = ACTIONS(5131), + [anon_sym_AMP_GT_GT] = ACTIONS(5131), + [anon_sym_LT_AMP] = ACTIONS(5131), + [anon_sym_GT_AMP] = ACTIONS(5131), [anon_sym_LT_LT] = ACTIONS(349), [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(5338), - [sym__special_characters] = ACTIONS(5340), - [anon_sym_DQUOTE] = ACTIONS(5342), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(5344), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5348), - [anon_sym_BQUOTE] = ACTIONS(5350), - [anon_sym_LT_LPAREN] = ACTIONS(5352), - [anon_sym_GT_LPAREN] = ACTIONS(5352), + [anon_sym_LT_LT_LT] = ACTIONS(5133), + [sym__special_characters] = ACTIONS(5135), + [anon_sym_DQUOTE] = ACTIONS(355), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5137), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(361), + [anon_sym_BQUOTE] = ACTIONS(363), + [anon_sym_LT_LPAREN] = ACTIONS(365), + [anon_sym_GT_LPAREN] = ACTIONS(365), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5344), + [sym_word] = ACTIONS(5137), [anon_sym_SEMI] = ACTIONS(343), [anon_sym_LF] = ACTIONS(367), [anon_sym_AMP] = ACTIONS(343), }, - [1936] = { + [1862] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [anon_sym_esac] = ACTIONS(5252), - [anon_sym_PIPE] = ACTIONS(5322), - [anon_sym_SEMI_SEMI] = ACTIONS(5324), - [anon_sym_PIPE_AMP] = ACTIONS(5322), - [anon_sym_AMP_AMP] = ACTIONS(5326), - [anon_sym_PIPE_PIPE] = ACTIONS(5326), + [anon_sym_esac] = ACTIONS(5073), + [anon_sym_PIPE] = ACTIONS(5121), + [anon_sym_SEMI_SEMI] = ACTIONS(5123), + [anon_sym_PIPE_AMP] = ACTIONS(5121), + [anon_sym_AMP_AMP] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5125), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(371), @@ -54642,100 +49772,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(371), [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(5328), - [anon_sym_LF] = ACTIONS(5330), - [anon_sym_AMP] = ACTIONS(5328), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(331), }, - [1937] = { - [anon_sym_EQ] = ACTIONS(5250), - [anon_sym_PLUS_EQ] = ACTIONS(5250), + [1863] = { + [anon_sym_EQ] = ACTIONS(5071), + [anon_sym_PLUS_EQ] = ACTIONS(5071), [sym_comment] = ACTIONS(53), }, - [1938] = { - [sym__simple_heredoc_body] = ACTIONS(247), - [sym__heredoc_body_beginning] = ACTIONS(247), - [sym_file_descriptor] = ACTIONS(247), - [anon_sym_esac] = ACTIONS(249), - [anon_sym_PIPE] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(249), - [anon_sym_PIPE_AMP] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_EQ_TILDE] = ACTIONS(249), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_GT_GT] = ACTIONS(249), - [anon_sym_AMP_GT] = ACTIONS(249), - [anon_sym_AMP_GT_GT] = ACTIONS(249), - [anon_sym_LT_AMP] = ACTIONS(249), - [anon_sym_GT_AMP] = ACTIONS(249), - [anon_sym_LT_LT] = ACTIONS(249), - [anon_sym_LT_LT_DASH] = ACTIONS(249), - [anon_sym_LT_LT_LT] = ACTIONS(249), - [sym__special_characters] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR] = ACTIONS(249), - [sym_raw_string] = ACTIONS(249), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(249), - [anon_sym_BQUOTE] = ACTIONS(249), - [anon_sym_LT_LPAREN] = ACTIONS(249), - [anon_sym_GT_LPAREN] = ACTIONS(249), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_LF] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(249), - }, - [1939] = { - [sym__terminated_statement] = STATE(2306), - [sym_for_statement] = STATE(2304), - [sym_while_statement] = STATE(2304), - [sym_if_statement] = STATE(2304), - [sym_case_statement] = STATE(2304), - [sym_function_definition] = STATE(2304), - [sym_subshell] = STATE(2304), - [sym_pipeline] = STATE(2304), - [sym_list] = STATE(2304), - [sym_negated_command] = STATE(2304), - [sym_test_command] = STATE(2304), - [sym_declaration_command] = STATE(2304), - [sym_unset_command] = STATE(2304), - [sym_command] = STATE(2304), - [sym_command_name] = STATE(1935), - [sym_variable_assignment] = STATE(2305), - [sym_subscript] = STATE(1937), + [1864] = { + [sym__terminated_statement] = STATE(2197), + [sym_for_statement] = STATE(2195), + [sym_while_statement] = STATE(2195), + [sym_if_statement] = STATE(2195), + [sym_case_statement] = STATE(2195), + [sym_function_definition] = STATE(2195), + [sym_subshell] = STATE(2195), + [sym_pipeline] = STATE(2195), + [sym_list] = STATE(2195), + [sym_negated_command] = STATE(2195), + [sym_test_command] = STATE(2195), + [sym_declaration_command] = STATE(2195), + [sym_unset_command] = STATE(2195), + [sym_command] = STATE(2195), + [sym_command_name] = STATE(1861), + [sym_variable_assignment] = STATE(2196), + [sym_subscript] = STATE(1863), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(1938), - [sym_string] = STATE(1928), - [sym_simple_expansion] = STATE(1928), - [sym_string_expansion] = STATE(1928), - [sym_expansion] = STATE(1928), - [sym_command_substitution] = STATE(1928), - [sym_process_substitution] = STATE(1928), - [aux_sym_program_repeat1] = STATE(2306), - [aux_sym_command_repeat1] = STATE(1940), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1858), + [sym_simple_expansion] = STATE(1858), + [sym_string_expansion] = STATE(1858), + [sym_expansion] = STATE(1858), + [sym_command_substitution] = STATE(1858), + [sym_process_substitution] = STATE(1858), + [aux_sym_program_repeat1] = STATE(2197), + [aux_sym_command_repeat1] = STATE(1865), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4448), + [sym_variable_name] = ACTIONS(4317), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4450), + [anon_sym_while] = ACTIONS(4319), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(5252), - [anon_sym_SEMI_SEMI] = ACTIONS(5354), - [anon_sym_function] = ACTIONS(4456), + [anon_sym_esac] = ACTIONS(5073), + [anon_sym_SEMI_SEMI] = ACTIONS(5139), + [anon_sym_function] = ACTIONS(4325), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4458), - [anon_sym_LBRACK] = ACTIONS(4460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4462), - [anon_sym_declare] = ACTIONS(4464), - [anon_sym_typeset] = ACTIONS(4464), - [anon_sym_export] = ACTIONS(4464), - [anon_sym_readonly] = ACTIONS(4464), - [anon_sym_local] = ACTIONS(4464), - [anon_sym_unset] = ACTIONS(4466), - [anon_sym_unsetenv] = ACTIONS(4466), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4331), + [anon_sym_declare] = ACTIONS(4333), + [anon_sym_typeset] = ACTIONS(4333), + [anon_sym_export] = ACTIONS(4333), + [anon_sym_readonly] = ACTIONS(4333), + [anon_sym_local] = ACTIONS(4333), + [anon_sym_unset] = ACTIONS(4335), + [anon_sym_unsetenv] = ACTIONS(4335), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -54743,30 +49836,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4468), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(4474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), + [sym__special_characters] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4484), + [sym_word] = ACTIONS(4341), }, - [1940] = { - [sym_command_name] = STATE(2307), + [1865] = { + [sym_command_name] = STATE(2198), [sym_variable_assignment] = STATE(30), [sym_subscript] = STATE(71), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(1938), - [sym_string] = STATE(1928), - [sym_simple_expansion] = STATE(1928), - [sym_string_expansion] = STATE(1928), - [sym_expansion] = STATE(1928), - [sym_command_substitution] = STATE(1928), - [sym_process_substitution] = STATE(1928), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1858), + [sym_simple_expansion] = STATE(1858), + [sym_string_expansion] = STATE(1858), + [sym_expansion] = STATE(1858), + [sym_command_substitution] = STATE(1858), + [sym_process_substitution] = STATE(1858), [aux_sym_command_repeat1] = STATE(205), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(107), @@ -54777,66 +49870,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(5356), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(4474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), + [sym__special_characters] = ACTIONS(5141), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4474), + [sym_word] = ACTIONS(4339), }, - [1941] = { - [sym__terminated_statement] = STATE(2308), - [sym_for_statement] = STATE(2304), - [sym_while_statement] = STATE(2304), - [sym_if_statement] = STATE(2304), - [sym_case_statement] = STATE(2304), - [sym_function_definition] = STATE(2304), - [sym_subshell] = STATE(2304), - [sym_pipeline] = STATE(2304), - [sym_list] = STATE(2304), - [sym_negated_command] = STATE(2304), - [sym_test_command] = STATE(2304), - [sym_declaration_command] = STATE(2304), - [sym_unset_command] = STATE(2304), - [sym_command] = STATE(2304), - [sym_command_name] = STATE(1935), - [sym_variable_assignment] = STATE(2305), - [sym_subscript] = STATE(1937), + [1866] = { + [sym__terminated_statement] = STATE(2199), + [sym_for_statement] = STATE(2195), + [sym_while_statement] = STATE(2195), + [sym_if_statement] = STATE(2195), + [sym_case_statement] = STATE(2195), + [sym_function_definition] = STATE(2195), + [sym_subshell] = STATE(2195), + [sym_pipeline] = STATE(2195), + [sym_list] = STATE(2195), + [sym_negated_command] = STATE(2195), + [sym_test_command] = STATE(2195), + [sym_declaration_command] = STATE(2195), + [sym_unset_command] = STATE(2195), + [sym_command] = STATE(2195), + [sym_command_name] = STATE(1861), + [sym_variable_assignment] = STATE(2196), + [sym_subscript] = STATE(1863), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(1938), - [sym_string] = STATE(1928), - [sym_simple_expansion] = STATE(1928), - [sym_string_expansion] = STATE(1928), - [sym_expansion] = STATE(1928), - [sym_command_substitution] = STATE(1928), - [sym_process_substitution] = STATE(1928), - [aux_sym_program_repeat1] = STATE(2308), - [aux_sym_command_repeat1] = STATE(1940), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1858), + [sym_simple_expansion] = STATE(1858), + [sym_string_expansion] = STATE(1858), + [sym_expansion] = STATE(1858), + [sym_command_substitution] = STATE(1858), + [sym_process_substitution] = STATE(1858), + [aux_sym_program_repeat1] = STATE(2199), + [aux_sym_command_repeat1] = STATE(1865), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4448), + [sym_variable_name] = ACTIONS(4317), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4450), + [anon_sym_while] = ACTIONS(4319), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(5252), - [anon_sym_SEMI_SEMI] = ACTIONS(5354), - [anon_sym_function] = ACTIONS(4456), + [anon_sym_esac] = ACTIONS(5073), + [anon_sym_SEMI_SEMI] = ACTIONS(5139), + [anon_sym_function] = ACTIONS(4325), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4458), - [anon_sym_LBRACK] = ACTIONS(4460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4462), - [anon_sym_declare] = ACTIONS(4464), - [anon_sym_typeset] = ACTIONS(4464), - [anon_sym_export] = ACTIONS(4464), - [anon_sym_readonly] = ACTIONS(4464), - [anon_sym_local] = ACTIONS(4464), - [anon_sym_unset] = ACTIONS(4466), - [anon_sym_unsetenv] = ACTIONS(4466), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4331), + [anon_sym_declare] = ACTIONS(4333), + [anon_sym_typeset] = ACTIONS(4333), + [anon_sym_export] = ACTIONS(4333), + [anon_sym_readonly] = ACTIONS(4333), + [anon_sym_local] = ACTIONS(4333), + [anon_sym_unset] = ACTIONS(4335), + [anon_sym_unsetenv] = ACTIONS(4335), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -54844,66 +49937,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4468), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(4474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), + [sym__special_characters] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4484), + [sym_word] = ACTIONS(4341), }, - [1942] = { - [aux_sym_case_item_repeat1] = STATE(1942), - [anon_sym_PIPE] = ACTIONS(5358), - [anon_sym_RPAREN] = ACTIONS(5248), + [1867] = { + [aux_sym_case_item_repeat1] = STATE(1867), + [anon_sym_PIPE] = ACTIONS(5143), + [anon_sym_RPAREN] = ACTIONS(5069), [sym_comment] = ACTIONS(53), }, - [1943] = { - [aux_sym_concatenation_repeat1] = STATE(1943), - [sym__concat] = ACTIONS(2524), - [anon_sym_PIPE] = ACTIONS(1654), - [anon_sym_RPAREN] = ACTIONS(1654), + [1868] = { + [aux_sym_concatenation_repeat1] = STATE(1868), + [sym__concat] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(1642), + [anon_sym_RPAREN] = ACTIONS(1642), [sym_comment] = ACTIONS(53), }, - [1944] = { - [anon_sym_esac] = ACTIONS(5361), - [sym__special_characters] = ACTIONS(5363), - [anon_sym_DQUOTE] = ACTIONS(5363), - [anon_sym_DOLLAR] = ACTIONS(5365), - [sym_raw_string] = ACTIONS(5363), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5363), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5363), - [anon_sym_BQUOTE] = ACTIONS(5363), - [anon_sym_LT_LPAREN] = ACTIONS(5363), - [anon_sym_GT_LPAREN] = ACTIONS(5363), + [1869] = { + [anon_sym_esac] = ACTIONS(5146), + [sym__special_characters] = ACTIONS(5148), + [anon_sym_DQUOTE] = ACTIONS(5148), + [anon_sym_DOLLAR] = ACTIONS(5150), + [sym_raw_string] = ACTIONS(5148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5148), + [anon_sym_BQUOTE] = ACTIONS(5148), + [anon_sym_LT_LPAREN] = ACTIONS(5148), + [anon_sym_GT_LPAREN] = ACTIONS(5148), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5365), + [sym_word] = ACTIONS(5150), }, - [1945] = { - [anon_sym_esac] = ACTIONS(5361), - [anon_sym_PIPE] = ACTIONS(5322), - [anon_sym_SEMI_SEMI] = ACTIONS(5367), - [anon_sym_PIPE_AMP] = ACTIONS(5322), - [anon_sym_AMP_AMP] = ACTIONS(5326), - [anon_sym_PIPE_PIPE] = ACTIONS(5326), + [1870] = { + [anon_sym_esac] = ACTIONS(5146), + [anon_sym_PIPE] = ACTIONS(5121), + [anon_sym_SEMI_SEMI] = ACTIONS(5152), + [anon_sym_PIPE_AMP] = ACTIONS(5121), + [anon_sym_AMP_AMP] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5125), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5328), - [anon_sym_LF] = ACTIONS(5330), - [anon_sym_AMP] = ACTIONS(5328), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(331), }, - [1946] = { + [1871] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [anon_sym_esac] = ACTIONS(5361), - [anon_sym_PIPE] = ACTIONS(5322), - [anon_sym_SEMI_SEMI] = ACTIONS(5367), - [anon_sym_PIPE_AMP] = ACTIONS(5322), - [anon_sym_AMP_AMP] = ACTIONS(5326), - [anon_sym_PIPE_PIPE] = ACTIONS(5326), + [anon_sym_esac] = ACTIONS(5146), + [anon_sym_PIPE] = ACTIONS(5121), + [anon_sym_SEMI_SEMI] = ACTIONS(5152), + [anon_sym_PIPE_AMP] = ACTIONS(5121), + [anon_sym_AMP_AMP] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5125), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(371), @@ -54922,58 +50015,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(371), [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(5328), - [anon_sym_LF] = ACTIONS(5330), - [anon_sym_AMP] = ACTIONS(5328), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(331), }, - [1947] = { - [sym__terminated_statement] = STATE(2306), - [sym_for_statement] = STATE(2311), - [sym_while_statement] = STATE(2311), - [sym_if_statement] = STATE(2311), - [sym_case_statement] = STATE(2311), - [sym_function_definition] = STATE(2311), - [sym_subshell] = STATE(2311), - [sym_pipeline] = STATE(2311), - [sym_list] = STATE(2311), - [sym_negated_command] = STATE(2311), - [sym_test_command] = STATE(2311), - [sym_declaration_command] = STATE(2311), - [sym_unset_command] = STATE(2311), - [sym_command] = STATE(2311), - [sym_command_name] = STATE(1935), - [sym_variable_assignment] = STATE(2312), - [sym_subscript] = STATE(1937), + [1872] = { + [sym__terminated_statement] = STATE(2197), + [sym_for_statement] = STATE(2202), + [sym_while_statement] = STATE(2202), + [sym_if_statement] = STATE(2202), + [sym_case_statement] = STATE(2202), + [sym_function_definition] = STATE(2202), + [sym_subshell] = STATE(2202), + [sym_pipeline] = STATE(2202), + [sym_list] = STATE(2202), + [sym_negated_command] = STATE(2202), + [sym_test_command] = STATE(2202), + [sym_declaration_command] = STATE(2202), + [sym_unset_command] = STATE(2202), + [sym_command] = STATE(2202), + [sym_command_name] = STATE(1861), + [sym_variable_assignment] = STATE(2203), + [sym_subscript] = STATE(1863), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(1938), - [sym_string] = STATE(1928), - [sym_simple_expansion] = STATE(1928), - [sym_string_expansion] = STATE(1928), - [sym_expansion] = STATE(1928), - [sym_command_substitution] = STATE(1928), - [sym_process_substitution] = STATE(1928), - [aux_sym_program_repeat1] = STATE(2306), - [aux_sym_command_repeat1] = STATE(1940), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1858), + [sym_simple_expansion] = STATE(1858), + [sym_string_expansion] = STATE(1858), + [sym_expansion] = STATE(1858), + [sym_command_substitution] = STATE(1858), + [sym_process_substitution] = STATE(1858), + [aux_sym_program_repeat1] = STATE(2197), + [aux_sym_command_repeat1] = STATE(1865), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4448), + [sym_variable_name] = ACTIONS(4317), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4450), + [anon_sym_while] = ACTIONS(4319), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(5361), - [anon_sym_SEMI_SEMI] = ACTIONS(5369), - [anon_sym_function] = ACTIONS(4456), + [anon_sym_esac] = ACTIONS(5146), + [anon_sym_SEMI_SEMI] = ACTIONS(5154), + [anon_sym_function] = ACTIONS(4325), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4458), - [anon_sym_LBRACK] = ACTIONS(4460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4462), - [anon_sym_declare] = ACTIONS(4464), - [anon_sym_typeset] = ACTIONS(4464), - [anon_sym_export] = ACTIONS(4464), - [anon_sym_readonly] = ACTIONS(4464), - [anon_sym_local] = ACTIONS(4464), - [anon_sym_unset] = ACTIONS(4466), - [anon_sym_unsetenv] = ACTIONS(4466), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4331), + [anon_sym_declare] = ACTIONS(4333), + [anon_sym_typeset] = ACTIONS(4333), + [anon_sym_export] = ACTIONS(4333), + [anon_sym_readonly] = ACTIONS(4333), + [anon_sym_local] = ACTIONS(4333), + [anon_sym_unset] = ACTIONS(4335), + [anon_sym_unsetenv] = ACTIONS(4335), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -54981,66 +50074,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4468), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(4474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), + [sym__special_characters] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4484), + [sym_word] = ACTIONS(4341), }, - [1948] = { - [sym__terminated_statement] = STATE(2313), - [sym_for_statement] = STATE(2311), - [sym_while_statement] = STATE(2311), - [sym_if_statement] = STATE(2311), - [sym_case_statement] = STATE(2311), - [sym_function_definition] = STATE(2311), - [sym_subshell] = STATE(2311), - [sym_pipeline] = STATE(2311), - [sym_list] = STATE(2311), - [sym_negated_command] = STATE(2311), - [sym_test_command] = STATE(2311), - [sym_declaration_command] = STATE(2311), - [sym_unset_command] = STATE(2311), - [sym_command] = STATE(2311), - [sym_command_name] = STATE(1935), - [sym_variable_assignment] = STATE(2312), - [sym_subscript] = STATE(1937), + [1873] = { + [sym__terminated_statement] = STATE(2204), + [sym_for_statement] = STATE(2202), + [sym_while_statement] = STATE(2202), + [sym_if_statement] = STATE(2202), + [sym_case_statement] = STATE(2202), + [sym_function_definition] = STATE(2202), + [sym_subshell] = STATE(2202), + [sym_pipeline] = STATE(2202), + [sym_list] = STATE(2202), + [sym_negated_command] = STATE(2202), + [sym_test_command] = STATE(2202), + [sym_declaration_command] = STATE(2202), + [sym_unset_command] = STATE(2202), + [sym_command] = STATE(2202), + [sym_command_name] = STATE(1861), + [sym_variable_assignment] = STATE(2203), + [sym_subscript] = STATE(1863), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(1938), - [sym_string] = STATE(1928), - [sym_simple_expansion] = STATE(1928), - [sym_string_expansion] = STATE(1928), - [sym_expansion] = STATE(1928), - [sym_command_substitution] = STATE(1928), - [sym_process_substitution] = STATE(1928), - [aux_sym_program_repeat1] = STATE(2313), - [aux_sym_command_repeat1] = STATE(1940), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1858), + [sym_simple_expansion] = STATE(1858), + [sym_string_expansion] = STATE(1858), + [sym_expansion] = STATE(1858), + [sym_command_substitution] = STATE(1858), + [sym_process_substitution] = STATE(1858), + [aux_sym_program_repeat1] = STATE(2204), + [aux_sym_command_repeat1] = STATE(1865), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4448), + [sym_variable_name] = ACTIONS(4317), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4450), + [anon_sym_while] = ACTIONS(4319), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(5361), - [anon_sym_SEMI_SEMI] = ACTIONS(5369), - [anon_sym_function] = ACTIONS(4456), + [anon_sym_esac] = ACTIONS(5146), + [anon_sym_SEMI_SEMI] = ACTIONS(5154), + [anon_sym_function] = ACTIONS(4325), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4458), - [anon_sym_LBRACK] = ACTIONS(4460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4462), - [anon_sym_declare] = ACTIONS(4464), - [anon_sym_typeset] = ACTIONS(4464), - [anon_sym_export] = ACTIONS(4464), - [anon_sym_readonly] = ACTIONS(4464), - [anon_sym_local] = ACTIONS(4464), - [anon_sym_unset] = ACTIONS(4466), - [anon_sym_unsetenv] = ACTIONS(4466), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4331), + [anon_sym_declare] = ACTIONS(4333), + [anon_sym_typeset] = ACTIONS(4333), + [anon_sym_export] = ACTIONS(4333), + [anon_sym_readonly] = ACTIONS(4333), + [anon_sym_local] = ACTIONS(4333), + [anon_sym_unset] = ACTIONS(4335), + [anon_sym_unsetenv] = ACTIONS(4335), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -55048,132 +50141,172 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4468), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(4474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), + [sym__special_characters] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4484), + [sym_word] = ACTIONS(4341), }, - [1949] = { - [anon_sym_esac] = ACTIONS(5371), - [anon_sym_PIPE] = ACTIONS(5371), - [anon_sym_RPAREN] = ACTIONS(5371), - [anon_sym_SEMI_SEMI] = ACTIONS(5371), - [anon_sym_PIPE_AMP] = ACTIONS(5371), - [anon_sym_AMP_AMP] = ACTIONS(5371), - [anon_sym_PIPE_PIPE] = ACTIONS(5371), + [1874] = { + [anon_sym_esac] = ACTIONS(5156), + [anon_sym_PIPE] = ACTIONS(5156), + [anon_sym_RPAREN] = ACTIONS(5156), + [anon_sym_SEMI_SEMI] = ACTIONS(5156), + [anon_sym_PIPE_AMP] = ACTIONS(5156), + [anon_sym_AMP_AMP] = ACTIONS(5156), + [anon_sym_PIPE_PIPE] = ACTIONS(5156), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5371), - [anon_sym_LF] = ACTIONS(5373), - [anon_sym_AMP] = ACTIONS(5371), + [anon_sym_SEMI] = ACTIONS(5156), + [anon_sym_LF] = ACTIONS(5158), + [anon_sym_AMP] = ACTIONS(5156), }, - [1950] = { - [aux_sym_case_item_repeat1] = STATE(2315), - [aux_sym_concatenation_repeat1] = STATE(1517), + [1875] = { + [aux_sym_case_item_repeat1] = STATE(2206), + [aux_sym_concatenation_repeat1] = STATE(1467), [sym__concat] = ACTIONS(551), - [anon_sym_PIPE] = ACTIONS(3555), - [anon_sym_RPAREN] = ACTIONS(5375), + [anon_sym_PIPE] = ACTIONS(3467), + [anon_sym_RPAREN] = ACTIONS(5160), [sym_comment] = ACTIONS(53), }, - [1951] = { - [aux_sym_case_item_repeat1] = STATE(2317), - [aux_sym_concatenation_repeat1] = STATE(1517), + [1876] = { + [aux_sym_case_item_repeat1] = STATE(2208), + [aux_sym_concatenation_repeat1] = STATE(1467), [sym__concat] = ACTIONS(551), - [anon_sym_PIPE] = ACTIONS(3555), - [anon_sym_RPAREN] = ACTIONS(5377), + [anon_sym_PIPE] = ACTIONS(3467), + [anon_sym_RPAREN] = ACTIONS(5162), [sym_comment] = ACTIONS(53), }, - [1952] = { - [aux_sym_case_item_repeat1] = STATE(2317), - [anon_sym_PIPE] = ACTIONS(3555), - [anon_sym_RPAREN] = ACTIONS(5377), + [1877] = { + [aux_sym_case_item_repeat1] = STATE(2208), + [anon_sym_PIPE] = ACTIONS(3467), + [anon_sym_RPAREN] = ACTIONS(5162), [sym_comment] = ACTIONS(53), }, - [1953] = { - [anon_sym_esac] = ACTIONS(5379), + [1878] = { + [anon_sym_esac] = ACTIONS(5164), [sym_comment] = ACTIONS(53), }, - [1954] = { - [anon_sym_esac] = ACTIONS(5381), - [anon_sym_PIPE] = ACTIONS(5381), - [anon_sym_RPAREN] = ACTIONS(5381), - [anon_sym_SEMI_SEMI] = ACTIONS(5381), - [anon_sym_PIPE_AMP] = ACTIONS(5381), - [anon_sym_AMP_AMP] = ACTIONS(5381), - [anon_sym_PIPE_PIPE] = ACTIONS(5381), + [1879] = { + [anon_sym_esac] = ACTIONS(5166), + [anon_sym_PIPE] = ACTIONS(5166), + [anon_sym_RPAREN] = ACTIONS(5166), + [anon_sym_SEMI_SEMI] = ACTIONS(5166), + [anon_sym_PIPE_AMP] = ACTIONS(5166), + [anon_sym_AMP_AMP] = ACTIONS(5166), + [anon_sym_PIPE_PIPE] = ACTIONS(5166), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5381), - [anon_sym_LF] = ACTIONS(5383), - [anon_sym_AMP] = ACTIONS(5381), + [anon_sym_SEMI] = ACTIONS(5166), + [anon_sym_LF] = ACTIONS(5168), + [anon_sym_AMP] = ACTIONS(5166), }, - [1955] = { - [anon_sym_esac] = ACTIONS(5385), + [1880] = { + [anon_sym_esac] = ACTIONS(5170), [sym_comment] = ACTIONS(53), }, - [1956] = { - [sym__concat] = ACTIONS(4884), - [anon_sym_in] = ACTIONS(4886), - [anon_sym_SEMI_SEMI] = ACTIONS(4886), + [1881] = { + [sym__concat] = ACTIONS(4741), + [anon_sym_in] = ACTIONS(4743), + [anon_sym_SEMI_SEMI] = ACTIONS(4743), + [sym__special_characters] = ACTIONS(4743), + [anon_sym_DQUOTE] = ACTIONS(4743), + [anon_sym_DOLLAR] = ACTIONS(4743), + [sym_raw_string] = ACTIONS(4743), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4743), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4743), + [anon_sym_BQUOTE] = ACTIONS(4743), + [anon_sym_LT_LPAREN] = ACTIONS(4743), + [anon_sym_GT_LPAREN] = ACTIONS(4743), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym_LF] = ACTIONS(4884), - [anon_sym_AMP] = ACTIONS(4886), + [sym_word] = ACTIONS(4743), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym_LF] = ACTIONS(4741), + [anon_sym_AMP] = ACTIONS(4743), }, - [1957] = { - [sym__concat] = ACTIONS(4888), - [anon_sym_in] = ACTIONS(4890), - [anon_sym_SEMI_SEMI] = ACTIONS(4890), + [1882] = { + [sym__concat] = ACTIONS(4745), + [anon_sym_in] = ACTIONS(4747), + [anon_sym_SEMI_SEMI] = ACTIONS(4747), + [sym__special_characters] = ACTIONS(4747), + [anon_sym_DQUOTE] = ACTIONS(4747), + [anon_sym_DOLLAR] = ACTIONS(4747), + [sym_raw_string] = ACTIONS(4747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4747), + [anon_sym_BQUOTE] = ACTIONS(4747), + [anon_sym_LT_LPAREN] = ACTIONS(4747), + [anon_sym_GT_LPAREN] = ACTIONS(4747), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4890), - [anon_sym_LF] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4890), + [sym_word] = ACTIONS(4747), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_LF] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4747), }, - [1958] = { - [sym__concat] = ACTIONS(4892), - [anon_sym_in] = ACTIONS(4894), - [anon_sym_SEMI_SEMI] = ACTIONS(4894), + [1883] = { + [sym__concat] = ACTIONS(4749), + [anon_sym_in] = ACTIONS(4751), + [anon_sym_SEMI_SEMI] = ACTIONS(4751), + [sym__special_characters] = ACTIONS(4751), + [anon_sym_DQUOTE] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4751), + [sym_raw_string] = ACTIONS(4751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4751), + [anon_sym_BQUOTE] = ACTIONS(4751), + [anon_sym_LT_LPAREN] = ACTIONS(4751), + [anon_sym_GT_LPAREN] = ACTIONS(4751), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4894), - [anon_sym_LF] = ACTIONS(4892), - [anon_sym_AMP] = ACTIONS(4894), + [sym_word] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_LF] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4751), }, - [1959] = { - [sym__concat] = ACTIONS(4896), - [anon_sym_in] = ACTIONS(4898), - [anon_sym_SEMI_SEMI] = ACTIONS(4898), + [1884] = { + [sym__concat] = ACTIONS(4753), + [anon_sym_in] = ACTIONS(4755), + [anon_sym_SEMI_SEMI] = ACTIONS(4755), + [sym__special_characters] = ACTIONS(4755), + [anon_sym_DQUOTE] = ACTIONS(4755), + [anon_sym_DOLLAR] = ACTIONS(4755), + [sym_raw_string] = ACTIONS(4755), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4755), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4755), + [anon_sym_BQUOTE] = ACTIONS(4755), + [anon_sym_LT_LPAREN] = ACTIONS(4755), + [anon_sym_GT_LPAREN] = ACTIONS(4755), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4898), - [anon_sym_LF] = ACTIONS(4896), - [anon_sym_AMP] = ACTIONS(4898), + [sym_word] = ACTIONS(4755), + [anon_sym_SEMI] = ACTIONS(4755), + [anon_sym_LF] = ACTIONS(4753), + [anon_sym_AMP] = ACTIONS(4755), }, - [1960] = { - [sym_concatenation] = STATE(839), + [1885] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5387), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5172), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -55181,37 +50314,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1961] = { - [sym__concat] = ACTIONS(4902), - [anon_sym_in] = ACTIONS(4904), - [anon_sym_SEMI_SEMI] = ACTIONS(4904), + [1886] = { + [sym__concat] = ACTIONS(4759), + [anon_sym_in] = ACTIONS(4761), + [anon_sym_SEMI_SEMI] = ACTIONS(4761), + [sym__special_characters] = ACTIONS(4761), + [anon_sym_DQUOTE] = ACTIONS(4761), + [anon_sym_DOLLAR] = ACTIONS(4761), + [sym_raw_string] = ACTIONS(4761), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4761), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4761), + [anon_sym_LT_LPAREN] = ACTIONS(4761), + [anon_sym_GT_LPAREN] = ACTIONS(4761), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4904), - [anon_sym_LF] = ACTIONS(4902), - [anon_sym_AMP] = ACTIONS(4904), + [sym_word] = ACTIONS(4761), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_LF] = ACTIONS(4759), + [anon_sym_AMP] = ACTIONS(4761), }, - [1962] = { - [sym_concatenation] = STATE(839), + [1887] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5389), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5174), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -55219,37 +50362,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1963] = { - [sym__concat] = ACTIONS(4908), - [anon_sym_in] = ACTIONS(4910), - [anon_sym_SEMI_SEMI] = ACTIONS(4910), + [1888] = { + [sym__concat] = ACTIONS(4765), + [anon_sym_in] = ACTIONS(4767), + [anon_sym_SEMI_SEMI] = ACTIONS(4767), + [sym__special_characters] = ACTIONS(4767), + [anon_sym_DQUOTE] = ACTIONS(4767), + [anon_sym_DOLLAR] = ACTIONS(4767), + [sym_raw_string] = ACTIONS(4767), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4767), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4767), + [anon_sym_BQUOTE] = ACTIONS(4767), + [anon_sym_LT_LPAREN] = ACTIONS(4767), + [anon_sym_GT_LPAREN] = ACTIONS(4767), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4910), - [anon_sym_LF] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4910), + [sym_word] = ACTIONS(4767), + [anon_sym_SEMI] = ACTIONS(4767), + [anon_sym_LF] = ACTIONS(4765), + [anon_sym_AMP] = ACTIONS(4767), }, - [1964] = { - [sym_concatenation] = STATE(839), + [1889] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5391), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5176), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -55257,39 +50410,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [1965] = { - [sym__concat] = ACTIONS(4914), - [anon_sym_in] = ACTIONS(4916), - [anon_sym_SEMI_SEMI] = ACTIONS(4916), + [1890] = { + [sym__concat] = ACTIONS(4771), + [anon_sym_in] = ACTIONS(4773), + [anon_sym_SEMI_SEMI] = ACTIONS(4773), + [sym__special_characters] = ACTIONS(4773), + [anon_sym_DQUOTE] = ACTIONS(4773), + [anon_sym_DOLLAR] = ACTIONS(4773), + [sym_raw_string] = ACTIONS(4773), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4773), + [anon_sym_BQUOTE] = ACTIONS(4773), + [anon_sym_LT_LPAREN] = ACTIONS(4773), + [anon_sym_GT_LPAREN] = ACTIONS(4773), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4916), - [anon_sym_LF] = ACTIONS(4914), - [anon_sym_AMP] = ACTIONS(4916), + [sym_word] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4773), + [anon_sym_LF] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), }, - [1966] = { - [sym__concat] = ACTIONS(4918), - [anon_sym_in] = ACTIONS(4920), - [anon_sym_SEMI_SEMI] = ACTIONS(4920), + [1891] = { + [sym__concat] = ACTIONS(4775), + [anon_sym_in] = ACTIONS(4777), + [anon_sym_SEMI_SEMI] = ACTIONS(4777), + [sym__special_characters] = ACTIONS(4777), + [anon_sym_DQUOTE] = ACTIONS(4777), + [anon_sym_DOLLAR] = ACTIONS(4777), + [sym_raw_string] = ACTIONS(4777), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4777), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4777), + [anon_sym_BQUOTE] = ACTIONS(4777), + [anon_sym_LT_LPAREN] = ACTIONS(4777), + [anon_sym_GT_LPAREN] = ACTIONS(4777), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4920), - [anon_sym_LF] = ACTIONS(4918), - [anon_sym_AMP] = ACTIONS(4920), + [sym_word] = ACTIONS(4777), + [anon_sym_SEMI] = ACTIONS(4777), + [anon_sym_LF] = ACTIONS(4775), + [anon_sym_AMP] = ACTIONS(4777), }, - [1967] = { - [aux_sym_concatenation_repeat1] = STATE(1967), - [sym__concat] = ACTIONS(2612), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), + [1892] = { + [aux_sym_concatenation_repeat1] = STATE(1892), + [sym__concat] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, - [1968] = { - [aux_sym_concatenation_repeat1] = STATE(1970), + [1893] = { + [aux_sym_concatenation_repeat1] = STATE(1895), [sym__concat] = ACTIONS(621), [anon_sym_PIPE] = ACTIONS(1091), [anon_sym_RPAREN] = ACTIONS(1091), @@ -55302,8 +50475,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1089), [anon_sym_AMP] = ACTIONS(1091), }, - [1969] = { - [aux_sym_concatenation_repeat1] = STATE(1970), + [1894] = { + [aux_sym_concatenation_repeat1] = STATE(1895), [sym__concat] = ACTIONS(621), [anon_sym_PIPE] = ACTIONS(1095), [anon_sym_RPAREN] = ACTIONS(1095), @@ -55316,8 +50489,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1093), [anon_sym_AMP] = ACTIONS(1095), }, - [1970] = { - [aux_sym_concatenation_repeat1] = STATE(2323), + [1895] = { + [aux_sym_concatenation_repeat1] = STATE(2214), [sym__concat] = ACTIONS(621), [anon_sym_PIPE] = ACTIONS(695), [anon_sym_RPAREN] = ACTIONS(695), @@ -55330,10 +50503,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(693), [anon_sym_AMP] = ACTIONS(695), }, - [1971] = { - [aux_sym_concatenation_repeat1] = STATE(1973), + [1896] = { + [aux_sym_concatenation_repeat1] = STATE(1898), [sym_file_descriptor] = ACTIONS(1089), - [sym__concat] = ACTIONS(3687), + [sym__concat] = ACTIONS(3599), [anon_sym_PIPE] = ACTIONS(1091), [anon_sym_RPAREN] = ACTIONS(1091), [anon_sym_SEMI_SEMI] = ACTIONS(1091), @@ -55355,10 +50528,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1089), [anon_sym_AMP] = ACTIONS(1091), }, - [1972] = { - [aux_sym_concatenation_repeat1] = STATE(1973), + [1897] = { + [aux_sym_concatenation_repeat1] = STATE(1898), [sym_file_descriptor] = ACTIONS(1093), - [sym__concat] = ACTIONS(3687), + [sym__concat] = ACTIONS(3599), [anon_sym_PIPE] = ACTIONS(1095), [anon_sym_RPAREN] = ACTIONS(1095), [anon_sym_SEMI_SEMI] = ACTIONS(1095), @@ -55380,10 +50553,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1093), [anon_sym_AMP] = ACTIONS(1095), }, - [1973] = { - [aux_sym_concatenation_repeat1] = STATE(2324), + [1898] = { + [aux_sym_concatenation_repeat1] = STATE(2215), [sym_file_descriptor] = ACTIONS(693), - [sym__concat] = ACTIONS(3687), + [sym__concat] = ACTIONS(3599), [anon_sym_PIPE] = ACTIONS(695), [anon_sym_RPAREN] = ACTIONS(695), [anon_sym_SEMI_SEMI] = ACTIONS(695), @@ -55405,386 +50578,1965 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(693), [anon_sym_AMP] = ACTIONS(695), }, - [1974] = { - [sym__concat] = ACTIONS(4884), - [anon_sym_AMP_AMP] = ACTIONS(4884), - [anon_sym_PIPE_PIPE] = ACTIONS(4884), - [anon_sym_RBRACK] = ACTIONS(4884), - [anon_sym_EQ_TILDE] = ACTIONS(4884), - [anon_sym_EQ_EQ] = ACTIONS(4884), - [anon_sym_EQ] = ACTIONS(4886), - [anon_sym_LT] = ACTIONS(4884), - [anon_sym_GT] = ACTIONS(4884), - [anon_sym_BANG_EQ] = ACTIONS(4884), + [1899] = { + [sym__concat] = ACTIONS(4741), + [anon_sym_AMP_AMP] = ACTIONS(4741), + [anon_sym_PIPE_PIPE] = ACTIONS(4741), + [anon_sym_RBRACK] = ACTIONS(4741), + [anon_sym_EQ_TILDE] = ACTIONS(4741), + [anon_sym_EQ_EQ] = ACTIONS(4741), + [anon_sym_EQ] = ACTIONS(4743), + [anon_sym_LT] = ACTIONS(4741), + [anon_sym_GT] = ACTIONS(4741), + [anon_sym_BANG_EQ] = ACTIONS(4741), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4884), + [sym_test_operator] = ACTIONS(4741), + }, + [1900] = { + [sym__concat] = ACTIONS(4745), + [anon_sym_AMP_AMP] = ACTIONS(4745), + [anon_sym_PIPE_PIPE] = ACTIONS(4745), + [anon_sym_RBRACK] = ACTIONS(4745), + [anon_sym_EQ_TILDE] = ACTIONS(4745), + [anon_sym_EQ_EQ] = ACTIONS(4745), + [anon_sym_EQ] = ACTIONS(4747), + [anon_sym_LT] = ACTIONS(4745), + [anon_sym_GT] = ACTIONS(4745), + [anon_sym_BANG_EQ] = ACTIONS(4745), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4745), + }, + [1901] = { + [sym__concat] = ACTIONS(4749), + [anon_sym_AMP_AMP] = ACTIONS(4749), + [anon_sym_PIPE_PIPE] = ACTIONS(4749), + [anon_sym_RBRACK] = ACTIONS(4749), + [anon_sym_EQ_TILDE] = ACTIONS(4749), + [anon_sym_EQ_EQ] = ACTIONS(4749), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4749), + [anon_sym_GT] = ACTIONS(4749), + [anon_sym_BANG_EQ] = ACTIONS(4749), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4749), + }, + [1902] = { + [sym__concat] = ACTIONS(4753), + [anon_sym_AMP_AMP] = ACTIONS(4753), + [anon_sym_PIPE_PIPE] = ACTIONS(4753), + [anon_sym_RBRACK] = ACTIONS(4753), + [anon_sym_EQ_TILDE] = ACTIONS(4753), + [anon_sym_EQ_EQ] = ACTIONS(4753), + [anon_sym_EQ] = ACTIONS(4755), + [anon_sym_LT] = ACTIONS(4753), + [anon_sym_GT] = ACTIONS(4753), + [anon_sym_BANG_EQ] = ACTIONS(4753), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4753), + }, + [1903] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5178), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1904] = { + [sym__concat] = ACTIONS(4759), + [anon_sym_AMP_AMP] = ACTIONS(4759), + [anon_sym_PIPE_PIPE] = ACTIONS(4759), + [anon_sym_RBRACK] = ACTIONS(4759), + [anon_sym_EQ_TILDE] = ACTIONS(4759), + [anon_sym_EQ_EQ] = ACTIONS(4759), + [anon_sym_EQ] = ACTIONS(4761), + [anon_sym_LT] = ACTIONS(4759), + [anon_sym_GT] = ACTIONS(4759), + [anon_sym_BANG_EQ] = ACTIONS(4759), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4759), + }, + [1905] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5180), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1906] = { + [sym__concat] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_RBRACK] = ACTIONS(4765), + [anon_sym_EQ_TILDE] = ACTIONS(4765), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4767), + [anon_sym_LT] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4765), + }, + [1907] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5182), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1908] = { + [sym__concat] = ACTIONS(4771), + [anon_sym_AMP_AMP] = ACTIONS(4771), + [anon_sym_PIPE_PIPE] = ACTIONS(4771), + [anon_sym_RBRACK] = ACTIONS(4771), + [anon_sym_EQ_TILDE] = ACTIONS(4771), + [anon_sym_EQ_EQ] = ACTIONS(4771), + [anon_sym_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4771), + [anon_sym_GT] = ACTIONS(4771), + [anon_sym_BANG_EQ] = ACTIONS(4771), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4771), + }, + [1909] = { + [sym__concat] = ACTIONS(4775), + [anon_sym_AMP_AMP] = ACTIONS(4775), + [anon_sym_PIPE_PIPE] = ACTIONS(4775), + [anon_sym_RBRACK] = ACTIONS(4775), + [anon_sym_EQ_TILDE] = ACTIONS(4775), + [anon_sym_EQ_EQ] = ACTIONS(4775), + [anon_sym_EQ] = ACTIONS(4777), + [anon_sym_LT] = ACTIONS(4775), + [anon_sym_GT] = ACTIONS(4775), + [anon_sym_BANG_EQ] = ACTIONS(4775), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4775), + }, + [1910] = { + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(1642), + [anon_sym_esac] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1644), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1644), + [anon_sym_LT_AMP] = ACTIONS(1644), + [anon_sym_GT_AMP] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1644), + [anon_sym_LT_LT_DASH] = ACTIONS(1644), + [anon_sym_LT_LT_LT] = ACTIONS(1644), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), + }, + [1911] = { + [aux_sym_concatenation_repeat1] = STATE(1911), + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(5184), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1644), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1644), + [anon_sym_LT_AMP] = ACTIONS(1644), + [anon_sym_GT_AMP] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1644), + [anon_sym_LT_LT_DASH] = ACTIONS(1644), + [anon_sym_LT_LT_LT] = ACTIONS(1644), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), + }, + [1912] = { + [sym_file_descriptor] = ACTIONS(1691), + [sym__concat] = ACTIONS(1691), + [anon_sym_esac] = ACTIONS(1693), + [anon_sym_PIPE] = ACTIONS(1693), + [anon_sym_RPAREN] = ACTIONS(1693), + [anon_sym_SEMI_SEMI] = ACTIONS(1693), + [anon_sym_PIPE_AMP] = ACTIONS(1693), + [anon_sym_AMP_AMP] = ACTIONS(1693), + [anon_sym_PIPE_PIPE] = ACTIONS(1693), + [anon_sym_LT] = ACTIONS(1693), + [anon_sym_GT] = ACTIONS(1693), + [anon_sym_GT_GT] = ACTIONS(1693), + [anon_sym_AMP_GT] = ACTIONS(1693), + [anon_sym_AMP_GT_GT] = ACTIONS(1693), + [anon_sym_LT_AMP] = ACTIONS(1693), + [anon_sym_GT_AMP] = ACTIONS(1693), + [anon_sym_LT_LT] = ACTIONS(1693), + [anon_sym_LT_LT_DASH] = ACTIONS(1693), + [anon_sym_LT_LT_LT] = ACTIONS(1693), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_LF] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1693), + }, + [1913] = { + [sym_concatenation] = STATE(2222), + [sym_string] = STATE(2221), + [sym_simple_expansion] = STATE(2221), + [sym_string_expansion] = STATE(2221), + [sym_expansion] = STATE(2221), + [sym_command_substitution] = STATE(2221), + [sym_process_substitution] = STATE(2221), + [anon_sym_RBRACE] = ACTIONS(5187), + [sym__special_characters] = ACTIONS(5189), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(5191), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5191), + }, + [1914] = { + [sym_file_descriptor] = ACTIONS(1732), + [sym__concat] = ACTIONS(1732), + [anon_sym_esac] = ACTIONS(1734), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_SEMI_SEMI] = ACTIONS(1734), + [anon_sym_PIPE_AMP] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_GT_GT] = ACTIONS(1734), + [anon_sym_AMP_GT] = ACTIONS(1734), + [anon_sym_AMP_GT_GT] = ACTIONS(1734), + [anon_sym_LT_AMP] = ACTIONS(1734), + [anon_sym_GT_AMP] = ACTIONS(1734), + [anon_sym_LT_LT] = ACTIONS(1734), + [anon_sym_LT_LT_DASH] = ACTIONS(1734), + [anon_sym_LT_LT_LT] = ACTIONS(1734), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_LF] = ACTIONS(1732), + [anon_sym_AMP] = ACTIONS(1734), + }, + [1915] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(5193), + }, + [1916] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5195), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1917] = { + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(5197), + [sym_comment] = ACTIONS(53), + }, + [1918] = { + [sym_concatenation] = STATE(2228), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2228), + [anon_sym_RBRACE] = ACTIONS(5199), + [anon_sym_EQ] = ACTIONS(5201), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(5205), + [anon_sym_COLON] = ACTIONS(5201), + [anon_sym_COLON_QMARK] = ACTIONS(5201), + [anon_sym_COLON_DASH] = ACTIONS(5201), + [anon_sym_PERCENT] = ACTIONS(5201), + [anon_sym_DASH] = ACTIONS(5201), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1919] = { + [sym_concatenation] = STATE(2231), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2231), + [anon_sym_RBRACE] = ACTIONS(5207), + [anon_sym_EQ] = ACTIONS(5209), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(5213), + [anon_sym_COLON] = ACTIONS(5209), + [anon_sym_COLON_QMARK] = ACTIONS(5209), + [anon_sym_COLON_DASH] = ACTIONS(5209), + [anon_sym_PERCENT] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1920] = { + [sym_concatenation] = STATE(2233), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2233), + [anon_sym_RBRACE] = ACTIONS(5187), + [anon_sym_EQ] = ACTIONS(5215), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5217), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(5219), + [anon_sym_COLON] = ACTIONS(5215), + [anon_sym_COLON_QMARK] = ACTIONS(5215), + [anon_sym_COLON_DASH] = ACTIONS(5215), + [anon_sym_PERCENT] = ACTIONS(5215), + [anon_sym_DASH] = ACTIONS(5215), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1921] = { + [sym_file_descriptor] = ACTIONS(1798), + [sym__concat] = ACTIONS(1798), + [anon_sym_esac] = ACTIONS(1800), + [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), + [anon_sym_LT_LT] = ACTIONS(1800), + [anon_sym_LT_LT_DASH] = ACTIONS(1800), + [anon_sym_LT_LT_LT] = ACTIONS(1800), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_LF] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1800), + }, + [1922] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(5221), + }, + [1923] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5223), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1924] = { + [sym_file_descriptor] = ACTIONS(1806), + [sym__concat] = ACTIONS(1806), + [anon_sym_esac] = ACTIONS(1808), + [anon_sym_PIPE] = ACTIONS(1808), + [anon_sym_RPAREN] = ACTIONS(1808), + [anon_sym_SEMI_SEMI] = ACTIONS(1808), + [anon_sym_PIPE_AMP] = ACTIONS(1808), + [anon_sym_AMP_AMP] = ACTIONS(1808), + [anon_sym_PIPE_PIPE] = ACTIONS(1808), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_GT_GT] = ACTIONS(1808), + [anon_sym_AMP_GT] = ACTIONS(1808), + [anon_sym_AMP_GT_GT] = ACTIONS(1808), + [anon_sym_LT_AMP] = ACTIONS(1808), + [anon_sym_GT_AMP] = ACTIONS(1808), + [anon_sym_LT_LT] = ACTIONS(1808), + [anon_sym_LT_LT_DASH] = ACTIONS(1808), + [anon_sym_LT_LT_LT] = ACTIONS(1808), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1808), + [anon_sym_LF] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1808), + }, + [1925] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(5225), + }, + [1926] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5187), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1927] = { + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(1940), + [anon_sym_esac] = ACTIONS(1942), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1942), + [anon_sym_PIPE_AMP] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1942), + [anon_sym_PIPE_PIPE] = ACTIONS(1942), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_GT_GT] = ACTIONS(1942), + [anon_sym_AMP_GT] = ACTIONS(1942), + [anon_sym_AMP_GT_GT] = ACTIONS(1942), + [anon_sym_LT_AMP] = ACTIONS(1942), + [anon_sym_GT_AMP] = ACTIONS(1942), + [anon_sym_LT_LT] = ACTIONS(1942), + [anon_sym_LT_LT_DASH] = ACTIONS(1942), + [anon_sym_LT_LT_LT] = ACTIONS(1942), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1942), + }, + [1928] = { + [sym_file_descriptor] = ACTIONS(2006), + [sym__concat] = ACTIONS(2006), + [anon_sym_esac] = ACTIONS(2008), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2008), + [anon_sym_SEMI_SEMI] = ACTIONS(2008), + [anon_sym_PIPE_AMP] = ACTIONS(2008), + [anon_sym_AMP_AMP] = ACTIONS(2008), + [anon_sym_PIPE_PIPE] = ACTIONS(2008), + [anon_sym_LT] = ACTIONS(2008), + [anon_sym_GT] = ACTIONS(2008), + [anon_sym_GT_GT] = ACTIONS(2008), + [anon_sym_AMP_GT] = ACTIONS(2008), + [anon_sym_AMP_GT_GT] = ACTIONS(2008), + [anon_sym_LT_AMP] = ACTIONS(2008), + [anon_sym_GT_AMP] = ACTIONS(2008), + [anon_sym_LT_LT] = ACTIONS(2008), + [anon_sym_LT_LT_DASH] = ACTIONS(2008), + [anon_sym_LT_LT_LT] = ACTIONS(2008), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_LF] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2008), + }, + [1929] = { + [sym__concat] = ACTIONS(4741), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4741), + [anon_sym_AMP_AMP] = ACTIONS(4741), + [anon_sym_PIPE_PIPE] = ACTIONS(4741), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4741), + [anon_sym_EQ_TILDE] = ACTIONS(4741), + [anon_sym_EQ_EQ] = ACTIONS(4741), + [anon_sym_EQ] = ACTIONS(4743), + [anon_sym_LT] = ACTIONS(4741), + [anon_sym_GT] = ACTIONS(4741), + [anon_sym_BANG_EQ] = ACTIONS(4741), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4741), + }, + [1930] = { + [sym__concat] = ACTIONS(4745), + [anon_sym_PIPE] = ACTIONS(4747), + [anon_sym_RPAREN] = ACTIONS(4745), + [anon_sym_AMP_AMP] = ACTIONS(4745), + [anon_sym_PIPE_PIPE] = ACTIONS(4745), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4745), + [anon_sym_EQ_TILDE] = ACTIONS(4745), + [anon_sym_EQ_EQ] = ACTIONS(4745), + [anon_sym_EQ] = ACTIONS(4747), + [anon_sym_LT] = ACTIONS(4745), + [anon_sym_GT] = ACTIONS(4745), + [anon_sym_BANG_EQ] = ACTIONS(4745), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4745), + }, + [1931] = { + [sym__concat] = ACTIONS(4749), + [anon_sym_PIPE] = ACTIONS(4751), + [anon_sym_RPAREN] = ACTIONS(4749), + [anon_sym_AMP_AMP] = ACTIONS(4749), + [anon_sym_PIPE_PIPE] = ACTIONS(4749), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4749), + [anon_sym_EQ_TILDE] = ACTIONS(4749), + [anon_sym_EQ_EQ] = ACTIONS(4749), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4749), + [anon_sym_GT] = ACTIONS(4749), + [anon_sym_BANG_EQ] = ACTIONS(4749), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4749), + }, + [1932] = { + [sym__concat] = ACTIONS(4753), + [anon_sym_PIPE] = ACTIONS(4755), + [anon_sym_RPAREN] = ACTIONS(4753), + [anon_sym_AMP_AMP] = ACTIONS(4753), + [anon_sym_PIPE_PIPE] = ACTIONS(4753), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4753), + [anon_sym_EQ_TILDE] = ACTIONS(4753), + [anon_sym_EQ_EQ] = ACTIONS(4753), + [anon_sym_EQ] = ACTIONS(4755), + [anon_sym_LT] = ACTIONS(4753), + [anon_sym_GT] = ACTIONS(4753), + [anon_sym_BANG_EQ] = ACTIONS(4753), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4753), + }, + [1933] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5227), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1934] = { + [sym__concat] = ACTIONS(4759), + [anon_sym_PIPE] = ACTIONS(4761), + [anon_sym_RPAREN] = ACTIONS(4759), + [anon_sym_AMP_AMP] = ACTIONS(4759), + [anon_sym_PIPE_PIPE] = ACTIONS(4759), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4759), + [anon_sym_EQ_TILDE] = ACTIONS(4759), + [anon_sym_EQ_EQ] = ACTIONS(4759), + [anon_sym_EQ] = ACTIONS(4761), + [anon_sym_LT] = ACTIONS(4759), + [anon_sym_GT] = ACTIONS(4759), + [anon_sym_BANG_EQ] = ACTIONS(4759), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4759), + }, + [1935] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5229), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1936] = { + [sym__concat] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4767), + [anon_sym_RPAREN] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4765), + [anon_sym_EQ_TILDE] = ACTIONS(4765), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4767), + [anon_sym_LT] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4765), + }, + [1937] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5231), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1938] = { + [sym__concat] = ACTIONS(4771), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_RPAREN] = ACTIONS(4771), + [anon_sym_AMP_AMP] = ACTIONS(4771), + [anon_sym_PIPE_PIPE] = ACTIONS(4771), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4771), + [anon_sym_EQ_TILDE] = ACTIONS(4771), + [anon_sym_EQ_EQ] = ACTIONS(4771), + [anon_sym_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4771), + [anon_sym_GT] = ACTIONS(4771), + [anon_sym_BANG_EQ] = ACTIONS(4771), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4771), + }, + [1939] = { + [sym__concat] = ACTIONS(4775), + [anon_sym_PIPE] = ACTIONS(4777), + [anon_sym_RPAREN] = ACTIONS(4775), + [anon_sym_AMP_AMP] = ACTIONS(4775), + [anon_sym_PIPE_PIPE] = ACTIONS(4775), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4775), + [anon_sym_EQ_TILDE] = ACTIONS(4775), + [anon_sym_EQ_EQ] = ACTIONS(4775), + [anon_sym_EQ] = ACTIONS(4777), + [anon_sym_LT] = ACTIONS(4775), + [anon_sym_GT] = ACTIONS(4775), + [anon_sym_BANG_EQ] = ACTIONS(4775), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4775), + }, + [1940] = { + [sym__concat] = ACTIONS(4741), + [sym_variable_name] = ACTIONS(4741), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4743), + [anon_sym_SEMI_SEMI] = ACTIONS(4743), + [anon_sym_PIPE_AMP] = ACTIONS(4743), + [anon_sym_AMP_AMP] = ACTIONS(4743), + [anon_sym_PIPE_PIPE] = ACTIONS(4743), + [sym__special_characters] = ACTIONS(4743), + [anon_sym_DQUOTE] = ACTIONS(4743), + [anon_sym_DOLLAR] = ACTIONS(4743), + [sym_raw_string] = ACTIONS(4743), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4743), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4743), + [anon_sym_BQUOTE] = ACTIONS(4743), + [anon_sym_LT_LPAREN] = ACTIONS(4743), + [anon_sym_GT_LPAREN] = ACTIONS(4743), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4743), + [sym_word] = ACTIONS(4743), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym_LF] = ACTIONS(4741), + [anon_sym_AMP] = ACTIONS(4743), + }, + [1941] = { + [sym__concat] = ACTIONS(4745), + [sym_variable_name] = ACTIONS(4745), + [anon_sym_PIPE] = ACTIONS(4747), + [anon_sym_RPAREN] = ACTIONS(4747), + [anon_sym_SEMI_SEMI] = ACTIONS(4747), + [anon_sym_PIPE_AMP] = ACTIONS(4747), + [anon_sym_AMP_AMP] = ACTIONS(4747), + [anon_sym_PIPE_PIPE] = ACTIONS(4747), + [sym__special_characters] = ACTIONS(4747), + [anon_sym_DQUOTE] = ACTIONS(4747), + [anon_sym_DOLLAR] = ACTIONS(4747), + [sym_raw_string] = ACTIONS(4747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4747), + [anon_sym_BQUOTE] = ACTIONS(4747), + [anon_sym_LT_LPAREN] = ACTIONS(4747), + [anon_sym_GT_LPAREN] = ACTIONS(4747), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4747), + [sym_word] = ACTIONS(4747), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_LF] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4747), + }, + [1942] = { + [sym__concat] = ACTIONS(4749), + [sym_variable_name] = ACTIONS(4749), + [anon_sym_PIPE] = ACTIONS(4751), + [anon_sym_RPAREN] = ACTIONS(4751), + [anon_sym_SEMI_SEMI] = ACTIONS(4751), + [anon_sym_PIPE_AMP] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [sym__special_characters] = ACTIONS(4751), + [anon_sym_DQUOTE] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4751), + [sym_raw_string] = ACTIONS(4751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4751), + [anon_sym_BQUOTE] = ACTIONS(4751), + [anon_sym_LT_LPAREN] = ACTIONS(4751), + [anon_sym_GT_LPAREN] = ACTIONS(4751), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4751), + [sym_word] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_LF] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4751), + }, + [1943] = { + [sym__concat] = ACTIONS(4753), + [sym_variable_name] = ACTIONS(4753), + [anon_sym_PIPE] = ACTIONS(4755), + [anon_sym_RPAREN] = ACTIONS(4755), + [anon_sym_SEMI_SEMI] = ACTIONS(4755), + [anon_sym_PIPE_AMP] = ACTIONS(4755), + [anon_sym_AMP_AMP] = ACTIONS(4755), + [anon_sym_PIPE_PIPE] = ACTIONS(4755), + [sym__special_characters] = ACTIONS(4755), + [anon_sym_DQUOTE] = ACTIONS(4755), + [anon_sym_DOLLAR] = ACTIONS(4755), + [sym_raw_string] = ACTIONS(4755), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4755), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4755), + [anon_sym_BQUOTE] = ACTIONS(4755), + [anon_sym_LT_LPAREN] = ACTIONS(4755), + [anon_sym_GT_LPAREN] = ACTIONS(4755), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4755), + [sym_word] = ACTIONS(4755), + [anon_sym_SEMI] = ACTIONS(4755), + [anon_sym_LF] = ACTIONS(4753), + [anon_sym_AMP] = ACTIONS(4755), + }, + [1944] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5233), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1945] = { + [sym__concat] = ACTIONS(4759), + [sym_variable_name] = ACTIONS(4759), + [anon_sym_PIPE] = ACTIONS(4761), + [anon_sym_RPAREN] = ACTIONS(4761), + [anon_sym_SEMI_SEMI] = ACTIONS(4761), + [anon_sym_PIPE_AMP] = ACTIONS(4761), + [anon_sym_AMP_AMP] = ACTIONS(4761), + [anon_sym_PIPE_PIPE] = ACTIONS(4761), + [sym__special_characters] = ACTIONS(4761), + [anon_sym_DQUOTE] = ACTIONS(4761), + [anon_sym_DOLLAR] = ACTIONS(4761), + [sym_raw_string] = ACTIONS(4761), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4761), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4761), + [anon_sym_LT_LPAREN] = ACTIONS(4761), + [anon_sym_GT_LPAREN] = ACTIONS(4761), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4761), + [sym_word] = ACTIONS(4761), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_LF] = ACTIONS(4759), + [anon_sym_AMP] = ACTIONS(4761), + }, + [1946] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5235), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1947] = { + [sym__concat] = ACTIONS(4765), + [sym_variable_name] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4767), + [anon_sym_RPAREN] = ACTIONS(4767), + [anon_sym_SEMI_SEMI] = ACTIONS(4767), + [anon_sym_PIPE_AMP] = ACTIONS(4767), + [anon_sym_AMP_AMP] = ACTIONS(4767), + [anon_sym_PIPE_PIPE] = ACTIONS(4767), + [sym__special_characters] = ACTIONS(4767), + [anon_sym_DQUOTE] = ACTIONS(4767), + [anon_sym_DOLLAR] = ACTIONS(4767), + [sym_raw_string] = ACTIONS(4767), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4767), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4767), + [anon_sym_BQUOTE] = ACTIONS(4767), + [anon_sym_LT_LPAREN] = ACTIONS(4767), + [anon_sym_GT_LPAREN] = ACTIONS(4767), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4767), + [sym_word] = ACTIONS(4767), + [anon_sym_SEMI] = ACTIONS(4767), + [anon_sym_LF] = ACTIONS(4765), + [anon_sym_AMP] = ACTIONS(4767), + }, + [1948] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5237), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1949] = { + [sym__concat] = ACTIONS(4771), + [sym_variable_name] = ACTIONS(4771), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_RPAREN] = ACTIONS(4773), + [anon_sym_SEMI_SEMI] = ACTIONS(4773), + [anon_sym_PIPE_AMP] = ACTIONS(4773), + [anon_sym_AMP_AMP] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4773), + [sym__special_characters] = ACTIONS(4773), + [anon_sym_DQUOTE] = ACTIONS(4773), + [anon_sym_DOLLAR] = ACTIONS(4773), + [sym_raw_string] = ACTIONS(4773), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4773), + [anon_sym_BQUOTE] = ACTIONS(4773), + [anon_sym_LT_LPAREN] = ACTIONS(4773), + [anon_sym_GT_LPAREN] = ACTIONS(4773), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4773), + [sym_word] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4773), + [anon_sym_LF] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), + }, + [1950] = { + [sym__concat] = ACTIONS(4775), + [sym_variable_name] = ACTIONS(4775), + [anon_sym_PIPE] = ACTIONS(4777), + [anon_sym_RPAREN] = ACTIONS(4777), + [anon_sym_SEMI_SEMI] = ACTIONS(4777), + [anon_sym_PIPE_AMP] = ACTIONS(4777), + [anon_sym_AMP_AMP] = ACTIONS(4777), + [anon_sym_PIPE_PIPE] = ACTIONS(4777), + [sym__special_characters] = ACTIONS(4777), + [anon_sym_DQUOTE] = ACTIONS(4777), + [anon_sym_DOLLAR] = ACTIONS(4777), + [sym_raw_string] = ACTIONS(4777), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4777), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4777), + [anon_sym_BQUOTE] = ACTIONS(4777), + [anon_sym_LT_LPAREN] = ACTIONS(4777), + [anon_sym_GT_LPAREN] = ACTIONS(4777), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4777), + [sym_word] = ACTIONS(4777), + [anon_sym_SEMI] = ACTIONS(4777), + [anon_sym_LF] = ACTIONS(4775), + [anon_sym_AMP] = ACTIONS(4777), + }, + [1951] = { + [sym__concat] = ACTIONS(4741), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4743), + [anon_sym_SEMI_SEMI] = ACTIONS(4743), + [anon_sym_PIPE_AMP] = ACTIONS(4743), + [anon_sym_AMP_AMP] = ACTIONS(4743), + [anon_sym_PIPE_PIPE] = ACTIONS(4743), + [sym__special_characters] = ACTIONS(4743), + [anon_sym_DQUOTE] = ACTIONS(4743), + [anon_sym_DOLLAR] = ACTIONS(4743), + [sym_raw_string] = ACTIONS(4743), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4743), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4743), + [anon_sym_BQUOTE] = ACTIONS(4743), + [anon_sym_LT_LPAREN] = ACTIONS(4743), + [anon_sym_GT_LPAREN] = ACTIONS(4743), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4743), + [sym_word] = ACTIONS(4743), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym_LF] = ACTIONS(4741), + [anon_sym_AMP] = ACTIONS(4743), + }, + [1952] = { + [sym__concat] = ACTIONS(4745), + [anon_sym_PIPE] = ACTIONS(4747), + [anon_sym_RPAREN] = ACTIONS(4747), + [anon_sym_SEMI_SEMI] = ACTIONS(4747), + [anon_sym_PIPE_AMP] = ACTIONS(4747), + [anon_sym_AMP_AMP] = ACTIONS(4747), + [anon_sym_PIPE_PIPE] = ACTIONS(4747), + [sym__special_characters] = ACTIONS(4747), + [anon_sym_DQUOTE] = ACTIONS(4747), + [anon_sym_DOLLAR] = ACTIONS(4747), + [sym_raw_string] = ACTIONS(4747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4747), + [anon_sym_BQUOTE] = ACTIONS(4747), + [anon_sym_LT_LPAREN] = ACTIONS(4747), + [anon_sym_GT_LPAREN] = ACTIONS(4747), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4747), + [sym_word] = ACTIONS(4747), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_LF] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4747), + }, + [1953] = { + [sym__concat] = ACTIONS(4749), + [anon_sym_PIPE] = ACTIONS(4751), + [anon_sym_RPAREN] = ACTIONS(4751), + [anon_sym_SEMI_SEMI] = ACTIONS(4751), + [anon_sym_PIPE_AMP] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [sym__special_characters] = ACTIONS(4751), + [anon_sym_DQUOTE] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4751), + [sym_raw_string] = ACTIONS(4751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4751), + [anon_sym_BQUOTE] = ACTIONS(4751), + [anon_sym_LT_LPAREN] = ACTIONS(4751), + [anon_sym_GT_LPAREN] = ACTIONS(4751), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4751), + [sym_word] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_LF] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4751), + }, + [1954] = { + [sym__concat] = ACTIONS(4753), + [anon_sym_PIPE] = ACTIONS(4755), + [anon_sym_RPAREN] = ACTIONS(4755), + [anon_sym_SEMI_SEMI] = ACTIONS(4755), + [anon_sym_PIPE_AMP] = ACTIONS(4755), + [anon_sym_AMP_AMP] = ACTIONS(4755), + [anon_sym_PIPE_PIPE] = ACTIONS(4755), + [sym__special_characters] = ACTIONS(4755), + [anon_sym_DQUOTE] = ACTIONS(4755), + [anon_sym_DOLLAR] = ACTIONS(4755), + [sym_raw_string] = ACTIONS(4755), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4755), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4755), + [anon_sym_BQUOTE] = ACTIONS(4755), + [anon_sym_LT_LPAREN] = ACTIONS(4755), + [anon_sym_GT_LPAREN] = ACTIONS(4755), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4755), + [sym_word] = ACTIONS(4755), + [anon_sym_SEMI] = ACTIONS(4755), + [anon_sym_LF] = ACTIONS(4753), + [anon_sym_AMP] = ACTIONS(4755), + }, + [1955] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5239), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1956] = { + [sym__concat] = ACTIONS(4759), + [anon_sym_PIPE] = ACTIONS(4761), + [anon_sym_RPAREN] = ACTIONS(4761), + [anon_sym_SEMI_SEMI] = ACTIONS(4761), + [anon_sym_PIPE_AMP] = ACTIONS(4761), + [anon_sym_AMP_AMP] = ACTIONS(4761), + [anon_sym_PIPE_PIPE] = ACTIONS(4761), + [sym__special_characters] = ACTIONS(4761), + [anon_sym_DQUOTE] = ACTIONS(4761), + [anon_sym_DOLLAR] = ACTIONS(4761), + [sym_raw_string] = ACTIONS(4761), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4761), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4761), + [anon_sym_LT_LPAREN] = ACTIONS(4761), + [anon_sym_GT_LPAREN] = ACTIONS(4761), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4761), + [sym_word] = ACTIONS(4761), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_LF] = ACTIONS(4759), + [anon_sym_AMP] = ACTIONS(4761), + }, + [1957] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5241), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1958] = { + [sym__concat] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4767), + [anon_sym_RPAREN] = ACTIONS(4767), + [anon_sym_SEMI_SEMI] = ACTIONS(4767), + [anon_sym_PIPE_AMP] = ACTIONS(4767), + [anon_sym_AMP_AMP] = ACTIONS(4767), + [anon_sym_PIPE_PIPE] = ACTIONS(4767), + [sym__special_characters] = ACTIONS(4767), + [anon_sym_DQUOTE] = ACTIONS(4767), + [anon_sym_DOLLAR] = ACTIONS(4767), + [sym_raw_string] = ACTIONS(4767), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4767), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4767), + [anon_sym_BQUOTE] = ACTIONS(4767), + [anon_sym_LT_LPAREN] = ACTIONS(4767), + [anon_sym_GT_LPAREN] = ACTIONS(4767), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4767), + [sym_word] = ACTIONS(4767), + [anon_sym_SEMI] = ACTIONS(4767), + [anon_sym_LF] = ACTIONS(4765), + [anon_sym_AMP] = ACTIONS(4767), + }, + [1959] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5243), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1960] = { + [sym__concat] = ACTIONS(4771), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_RPAREN] = ACTIONS(4773), + [anon_sym_SEMI_SEMI] = ACTIONS(4773), + [anon_sym_PIPE_AMP] = ACTIONS(4773), + [anon_sym_AMP_AMP] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4773), + [sym__special_characters] = ACTIONS(4773), + [anon_sym_DQUOTE] = ACTIONS(4773), + [anon_sym_DOLLAR] = ACTIONS(4773), + [sym_raw_string] = ACTIONS(4773), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4773), + [anon_sym_BQUOTE] = ACTIONS(4773), + [anon_sym_LT_LPAREN] = ACTIONS(4773), + [anon_sym_GT_LPAREN] = ACTIONS(4773), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4773), + [sym_word] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4773), + [anon_sym_LF] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), + }, + [1961] = { + [sym__concat] = ACTIONS(4775), + [anon_sym_PIPE] = ACTIONS(4777), + [anon_sym_RPAREN] = ACTIONS(4777), + [anon_sym_SEMI_SEMI] = ACTIONS(4777), + [anon_sym_PIPE_AMP] = ACTIONS(4777), + [anon_sym_AMP_AMP] = ACTIONS(4777), + [anon_sym_PIPE_PIPE] = ACTIONS(4777), + [sym__special_characters] = ACTIONS(4777), + [anon_sym_DQUOTE] = ACTIONS(4777), + [anon_sym_DOLLAR] = ACTIONS(4777), + [sym_raw_string] = ACTIONS(4777), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4777), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4777), + [anon_sym_BQUOTE] = ACTIONS(4777), + [anon_sym_LT_LPAREN] = ACTIONS(4777), + [anon_sym_GT_LPAREN] = ACTIONS(4777), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4777), + [sym_word] = ACTIONS(4777), + [anon_sym_SEMI] = ACTIONS(4777), + [anon_sym_LF] = ACTIONS(4775), + [anon_sym_AMP] = ACTIONS(4777), + }, + [1962] = { + [sym_file_descriptor] = ACTIONS(4741), + [sym__concat] = ACTIONS(4741), + [sym_variable_name] = ACTIONS(4741), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4741), + [anon_sym_PIPE_AMP] = ACTIONS(4741), + [anon_sym_AMP_AMP] = ACTIONS(4741), + [anon_sym_PIPE_PIPE] = ACTIONS(4741), + [anon_sym_LT] = ACTIONS(4743), + [anon_sym_GT] = ACTIONS(4743), + [anon_sym_GT_GT] = ACTIONS(4741), + [anon_sym_AMP_GT] = ACTIONS(4743), + [anon_sym_AMP_GT_GT] = ACTIONS(4741), + [anon_sym_LT_AMP] = ACTIONS(4741), + [anon_sym_GT_AMP] = ACTIONS(4741), + [sym__special_characters] = ACTIONS(4741), + [anon_sym_DQUOTE] = ACTIONS(4741), + [anon_sym_DOLLAR] = ACTIONS(4743), + [sym_raw_string] = ACTIONS(4741), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4741), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4741), + [anon_sym_BQUOTE] = ACTIONS(4741), + [anon_sym_LT_LPAREN] = ACTIONS(4741), + [anon_sym_GT_LPAREN] = ACTIONS(4741), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4741), + }, + [1963] = { + [sym_file_descriptor] = ACTIONS(4745), + [sym__concat] = ACTIONS(4745), + [sym_variable_name] = ACTIONS(4745), + [anon_sym_PIPE] = ACTIONS(4747), + [anon_sym_RPAREN] = ACTIONS(4745), + [anon_sym_PIPE_AMP] = ACTIONS(4745), + [anon_sym_AMP_AMP] = ACTIONS(4745), + [anon_sym_PIPE_PIPE] = ACTIONS(4745), + [anon_sym_LT] = ACTIONS(4747), + [anon_sym_GT] = ACTIONS(4747), + [anon_sym_GT_GT] = ACTIONS(4745), + [anon_sym_AMP_GT] = ACTIONS(4747), + [anon_sym_AMP_GT_GT] = ACTIONS(4745), + [anon_sym_LT_AMP] = ACTIONS(4745), + [anon_sym_GT_AMP] = ACTIONS(4745), + [sym__special_characters] = ACTIONS(4745), + [anon_sym_DQUOTE] = ACTIONS(4745), + [anon_sym_DOLLAR] = ACTIONS(4747), + [sym_raw_string] = ACTIONS(4745), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4745), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4745), + [anon_sym_BQUOTE] = ACTIONS(4745), + [anon_sym_LT_LPAREN] = ACTIONS(4745), + [anon_sym_GT_LPAREN] = ACTIONS(4745), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4745), + }, + [1964] = { + [sym_file_descriptor] = ACTIONS(4749), + [sym__concat] = ACTIONS(4749), + [sym_variable_name] = ACTIONS(4749), + [anon_sym_PIPE] = ACTIONS(4751), + [anon_sym_RPAREN] = ACTIONS(4749), + [anon_sym_PIPE_AMP] = ACTIONS(4749), + [anon_sym_AMP_AMP] = ACTIONS(4749), + [anon_sym_PIPE_PIPE] = ACTIONS(4749), + [anon_sym_LT] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4751), + [anon_sym_GT_GT] = ACTIONS(4749), + [anon_sym_AMP_GT] = ACTIONS(4751), + [anon_sym_AMP_GT_GT] = ACTIONS(4749), + [anon_sym_LT_AMP] = ACTIONS(4749), + [anon_sym_GT_AMP] = ACTIONS(4749), + [sym__special_characters] = ACTIONS(4749), + [anon_sym_DQUOTE] = ACTIONS(4749), + [anon_sym_DOLLAR] = ACTIONS(4751), + [sym_raw_string] = ACTIONS(4749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4749), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4749), + [anon_sym_BQUOTE] = ACTIONS(4749), + [anon_sym_LT_LPAREN] = ACTIONS(4749), + [anon_sym_GT_LPAREN] = ACTIONS(4749), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4749), + }, + [1965] = { + [sym_file_descriptor] = ACTIONS(4753), + [sym__concat] = ACTIONS(4753), + [sym_variable_name] = ACTIONS(4753), + [anon_sym_PIPE] = ACTIONS(4755), + [anon_sym_RPAREN] = ACTIONS(4753), + [anon_sym_PIPE_AMP] = ACTIONS(4753), + [anon_sym_AMP_AMP] = ACTIONS(4753), + [anon_sym_PIPE_PIPE] = ACTIONS(4753), + [anon_sym_LT] = ACTIONS(4755), + [anon_sym_GT] = ACTIONS(4755), + [anon_sym_GT_GT] = ACTIONS(4753), + [anon_sym_AMP_GT] = ACTIONS(4755), + [anon_sym_AMP_GT_GT] = ACTIONS(4753), + [anon_sym_LT_AMP] = ACTIONS(4753), + [anon_sym_GT_AMP] = ACTIONS(4753), + [sym__special_characters] = ACTIONS(4753), + [anon_sym_DQUOTE] = ACTIONS(4753), + [anon_sym_DOLLAR] = ACTIONS(4755), + [sym_raw_string] = ACTIONS(4753), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4753), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4753), + [anon_sym_BQUOTE] = ACTIONS(4753), + [anon_sym_LT_LPAREN] = ACTIONS(4753), + [anon_sym_GT_LPAREN] = ACTIONS(4753), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4753), + }, + [1966] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5245), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1967] = { + [sym_file_descriptor] = ACTIONS(4759), + [sym__concat] = ACTIONS(4759), + [sym_variable_name] = ACTIONS(4759), + [anon_sym_PIPE] = ACTIONS(4761), + [anon_sym_RPAREN] = ACTIONS(4759), + [anon_sym_PIPE_AMP] = ACTIONS(4759), + [anon_sym_AMP_AMP] = ACTIONS(4759), + [anon_sym_PIPE_PIPE] = ACTIONS(4759), + [anon_sym_LT] = ACTIONS(4761), + [anon_sym_GT] = ACTIONS(4761), + [anon_sym_GT_GT] = ACTIONS(4759), + [anon_sym_AMP_GT] = ACTIONS(4761), + [anon_sym_AMP_GT_GT] = ACTIONS(4759), + [anon_sym_LT_AMP] = ACTIONS(4759), + [anon_sym_GT_AMP] = ACTIONS(4759), + [sym__special_characters] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4759), + [anon_sym_DOLLAR] = ACTIONS(4761), + [sym_raw_string] = ACTIONS(4759), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4759), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4759), + [anon_sym_BQUOTE] = ACTIONS(4759), + [anon_sym_LT_LPAREN] = ACTIONS(4759), + [anon_sym_GT_LPAREN] = ACTIONS(4759), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4759), + }, + [1968] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5247), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1969] = { + [sym_file_descriptor] = ACTIONS(4765), + [sym__concat] = ACTIONS(4765), + [sym_variable_name] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4767), + [anon_sym_RPAREN] = ACTIONS(4765), + [anon_sym_PIPE_AMP] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_LT] = ACTIONS(4767), + [anon_sym_GT] = ACTIONS(4767), + [anon_sym_GT_GT] = ACTIONS(4765), + [anon_sym_AMP_GT] = ACTIONS(4767), + [anon_sym_AMP_GT_GT] = ACTIONS(4765), + [anon_sym_LT_AMP] = ACTIONS(4765), + [anon_sym_GT_AMP] = ACTIONS(4765), + [sym__special_characters] = ACTIONS(4765), + [anon_sym_DQUOTE] = ACTIONS(4765), + [anon_sym_DOLLAR] = ACTIONS(4767), + [sym_raw_string] = ACTIONS(4765), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4765), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4765), + [anon_sym_BQUOTE] = ACTIONS(4765), + [anon_sym_LT_LPAREN] = ACTIONS(4765), + [anon_sym_GT_LPAREN] = ACTIONS(4765), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4765), + }, + [1970] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5249), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [1971] = { + [sym_file_descriptor] = ACTIONS(4771), + [sym__concat] = ACTIONS(4771), + [sym_variable_name] = ACTIONS(4771), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_RPAREN] = ACTIONS(4771), + [anon_sym_PIPE_AMP] = ACTIONS(4771), + [anon_sym_AMP_AMP] = ACTIONS(4771), + [anon_sym_PIPE_PIPE] = ACTIONS(4771), + [anon_sym_LT] = ACTIONS(4773), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4771), + [anon_sym_AMP_GT] = ACTIONS(4773), + [anon_sym_AMP_GT_GT] = ACTIONS(4771), + [anon_sym_LT_AMP] = ACTIONS(4771), + [anon_sym_GT_AMP] = ACTIONS(4771), + [sym__special_characters] = ACTIONS(4771), + [anon_sym_DQUOTE] = ACTIONS(4771), + [anon_sym_DOLLAR] = ACTIONS(4773), + [sym_raw_string] = ACTIONS(4771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4771), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4771), + [anon_sym_BQUOTE] = ACTIONS(4771), + [anon_sym_LT_LPAREN] = ACTIONS(4771), + [anon_sym_GT_LPAREN] = ACTIONS(4771), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4771), + }, + [1972] = { + [sym_file_descriptor] = ACTIONS(4775), + [sym__concat] = ACTIONS(4775), + [sym_variable_name] = ACTIONS(4775), + [anon_sym_PIPE] = ACTIONS(4777), + [anon_sym_RPAREN] = ACTIONS(4775), + [anon_sym_PIPE_AMP] = ACTIONS(4775), + [anon_sym_AMP_AMP] = ACTIONS(4775), + [anon_sym_PIPE_PIPE] = ACTIONS(4775), + [anon_sym_LT] = ACTIONS(4777), + [anon_sym_GT] = ACTIONS(4777), + [anon_sym_GT_GT] = ACTIONS(4775), + [anon_sym_AMP_GT] = ACTIONS(4777), + [anon_sym_AMP_GT_GT] = ACTIONS(4775), + [anon_sym_LT_AMP] = ACTIONS(4775), + [anon_sym_GT_AMP] = ACTIONS(4775), + [sym__special_characters] = ACTIONS(4775), + [anon_sym_DQUOTE] = ACTIONS(4775), + [anon_sym_DOLLAR] = ACTIONS(4777), + [sym_raw_string] = ACTIONS(4775), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4775), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4775), + [anon_sym_BQUOTE] = ACTIONS(4775), + [anon_sym_LT_LPAREN] = ACTIONS(4775), + [anon_sym_GT_LPAREN] = ACTIONS(4775), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4775), + }, + [1973] = { + [sym__concat] = ACTIONS(4741), + [anon_sym_DQUOTE] = ACTIONS(4743), + [anon_sym_DOLLAR] = ACTIONS(4743), + [sym__string_content] = ACTIONS(4741), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4743), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4743), + [anon_sym_BQUOTE] = ACTIONS(4743), + [sym_comment] = ACTIONS(177), + }, + [1974] = { + [sym__concat] = ACTIONS(4745), + [anon_sym_DQUOTE] = ACTIONS(4747), + [anon_sym_DOLLAR] = ACTIONS(4747), + [sym__string_content] = ACTIONS(4745), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4747), + [anon_sym_BQUOTE] = ACTIONS(4747), + [sym_comment] = ACTIONS(177), }, [1975] = { - [sym__concat] = ACTIONS(4888), - [anon_sym_AMP_AMP] = ACTIONS(4888), - [anon_sym_PIPE_PIPE] = ACTIONS(4888), - [anon_sym_RBRACK] = ACTIONS(4888), - [anon_sym_EQ_TILDE] = ACTIONS(4888), - [anon_sym_EQ_EQ] = ACTIONS(4888), - [anon_sym_EQ] = ACTIONS(4890), - [anon_sym_LT] = ACTIONS(4888), - [anon_sym_GT] = ACTIONS(4888), - [anon_sym_BANG_EQ] = ACTIONS(4888), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4888), + [sym__concat] = ACTIONS(4749), + [anon_sym_DQUOTE] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4751), + [sym__string_content] = ACTIONS(4749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4751), + [anon_sym_BQUOTE] = ACTIONS(4751), + [sym_comment] = ACTIONS(177), }, [1976] = { - [sym__concat] = ACTIONS(4892), - [anon_sym_AMP_AMP] = ACTIONS(4892), - [anon_sym_PIPE_PIPE] = ACTIONS(4892), - [anon_sym_RBRACK] = ACTIONS(4892), - [anon_sym_EQ_TILDE] = ACTIONS(4892), - [anon_sym_EQ_EQ] = ACTIONS(4892), - [anon_sym_EQ] = ACTIONS(4894), - [anon_sym_LT] = ACTIONS(4892), - [anon_sym_GT] = ACTIONS(4892), - [anon_sym_BANG_EQ] = ACTIONS(4892), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4892), + [sym__concat] = ACTIONS(4753), + [anon_sym_DQUOTE] = ACTIONS(4755), + [anon_sym_DOLLAR] = ACTIONS(4755), + [sym__string_content] = ACTIONS(4753), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4755), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4755), + [anon_sym_BQUOTE] = ACTIONS(4755), + [sym_comment] = ACTIONS(177), }, [1977] = { - [sym__concat] = ACTIONS(4896), - [anon_sym_AMP_AMP] = ACTIONS(4896), - [anon_sym_PIPE_PIPE] = ACTIONS(4896), - [anon_sym_RBRACK] = ACTIONS(4896), - [anon_sym_EQ_TILDE] = ACTIONS(4896), - [anon_sym_EQ_EQ] = ACTIONS(4896), - [anon_sym_EQ] = ACTIONS(4898), - [anon_sym_LT] = ACTIONS(4896), - [anon_sym_GT] = ACTIONS(4896), - [anon_sym_BANG_EQ] = ACTIONS(4896), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4896), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1978] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5393), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym__concat] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4761), + [anon_sym_DOLLAR] = ACTIONS(4761), + [sym__string_content] = ACTIONS(4759), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4761), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4761), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), }, [1979] = { - [sym__concat] = ACTIONS(4902), - [anon_sym_AMP_AMP] = ACTIONS(4902), - [anon_sym_PIPE_PIPE] = ACTIONS(4902), - [anon_sym_RBRACK] = ACTIONS(4902), - [anon_sym_EQ_TILDE] = ACTIONS(4902), - [anon_sym_EQ_EQ] = ACTIONS(4902), - [anon_sym_EQ] = ACTIONS(4904), - [anon_sym_LT] = ACTIONS(4902), - [anon_sym_GT] = ACTIONS(4902), - [anon_sym_BANG_EQ] = ACTIONS(4902), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4902), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5253), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1980] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5395), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym__concat] = ACTIONS(4765), + [anon_sym_DQUOTE] = ACTIONS(4767), + [anon_sym_DOLLAR] = ACTIONS(4767), + [sym__string_content] = ACTIONS(4765), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4767), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4767), + [anon_sym_BQUOTE] = ACTIONS(4767), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), }, [1981] = { - [sym__concat] = ACTIONS(4908), - [anon_sym_AMP_AMP] = ACTIONS(4908), - [anon_sym_PIPE_PIPE] = ACTIONS(4908), - [anon_sym_RBRACK] = ACTIONS(4908), - [anon_sym_EQ_TILDE] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4908), - [anon_sym_EQ] = ACTIONS(4910), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_BANG_EQ] = ACTIONS(4908), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4908), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [1982] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5397), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym__concat] = ACTIONS(4771), + [anon_sym_DQUOTE] = ACTIONS(4773), + [anon_sym_DOLLAR] = ACTIONS(4773), + [sym__string_content] = ACTIONS(4771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4773), + [anon_sym_BQUOTE] = ACTIONS(4773), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), }, [1983] = { - [sym__concat] = ACTIONS(4914), - [anon_sym_AMP_AMP] = ACTIONS(4914), - [anon_sym_PIPE_PIPE] = ACTIONS(4914), - [anon_sym_RBRACK] = ACTIONS(4914), - [anon_sym_EQ_TILDE] = ACTIONS(4914), - [anon_sym_EQ_EQ] = ACTIONS(4914), - [anon_sym_EQ] = ACTIONS(4916), - [anon_sym_LT] = ACTIONS(4914), - [anon_sym_GT] = ACTIONS(4914), - [anon_sym_BANG_EQ] = ACTIONS(4914), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4914), + [sym__concat] = ACTIONS(4775), + [anon_sym_DQUOTE] = ACTIONS(4777), + [anon_sym_DOLLAR] = ACTIONS(4777), + [sym__string_content] = ACTIONS(4775), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4777), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4777), + [anon_sym_BQUOTE] = ACTIONS(4777), + [sym_comment] = ACTIONS(177), }, [1984] = { - [sym__concat] = ACTIONS(4918), - [anon_sym_AMP_AMP] = ACTIONS(4918), - [anon_sym_PIPE_PIPE] = ACTIONS(4918), - [anon_sym_RBRACK] = ACTIONS(4918), - [anon_sym_EQ_TILDE] = ACTIONS(4918), - [anon_sym_EQ_EQ] = ACTIONS(4918), - [anon_sym_EQ] = ACTIONS(4920), - [anon_sym_LT] = ACTIONS(4918), - [anon_sym_GT] = ACTIONS(4918), - [anon_sym_BANG_EQ] = ACTIONS(4918), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4918), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_EQ] = ACTIONS(5257), + [sym__special_characters] = ACTIONS(5257), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_DOLLAR] = ACTIONS(5257), + [sym_raw_string] = ACTIONS(4218), + [anon_sym_POUND] = ACTIONS(4218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4218), + [aux_sym_SLASH] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(5257), + [anon_sym_COLON_QMARK] = ACTIONS(5257), + [anon_sym_COLON_DASH] = ACTIONS(5257), + [anon_sym_PERCENT] = ACTIONS(5257), + [anon_sym_DASH] = ACTIONS(5257), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4218), + [anon_sym_BQUOTE] = ACTIONS(4218), + [anon_sym_LT_LPAREN] = ACTIONS(4218), + [anon_sym_GT_LPAREN] = ACTIONS(4218), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(5257), }, [1985] = { - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(1654), - [anon_sym_esac] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1656), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1656), - [anon_sym_LT_AMP] = ACTIONS(1656), - [anon_sym_GT_AMP] = ACTIONS(1656), - [anon_sym_LT_LT] = ACTIONS(1656), - [anon_sym_LT_LT_DASH] = ACTIONS(1656), - [anon_sym_LT_LT_LT] = ACTIONS(1656), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_EQ] = ACTIONS(5259), + [sym__special_characters] = ACTIONS(5259), + [anon_sym_DQUOTE] = ACTIONS(4220), + [anon_sym_DOLLAR] = ACTIONS(5259), + [sym_raw_string] = ACTIONS(4220), + [anon_sym_POUND] = ACTIONS(4220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4220), + [aux_sym_SLASH] = ACTIONS(4220), + [anon_sym_COLON] = ACTIONS(5259), + [anon_sym_COLON_QMARK] = ACTIONS(5259), + [anon_sym_COLON_DASH] = ACTIONS(5259), + [anon_sym_PERCENT] = ACTIONS(5259), + [anon_sym_DASH] = ACTIONS(5259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4220), + [anon_sym_BQUOTE] = ACTIONS(4220), + [anon_sym_LT_LPAREN] = ACTIONS(4220), + [anon_sym_GT_LPAREN] = ACTIONS(4220), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), + [sym_word] = ACTIONS(5259), }, [1986] = { - [aux_sym_concatenation_repeat1] = STATE(1986), - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(5399), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1656), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1656), - [anon_sym_LT_AMP] = ACTIONS(1656), - [anon_sym_GT_AMP] = ACTIONS(1656), - [anon_sym_LT_LT] = ACTIONS(1656), - [anon_sym_LT_LT_DASH] = ACTIONS(1656), - [anon_sym_LT_LT_LT] = ACTIONS(1656), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), + [sym__concat] = ACTIONS(2710), + [anon_sym_RBRACE] = ACTIONS(2710), + [sym_comment] = ACTIONS(53), }, [1987] = { - [sym_file_descriptor] = ACTIONS(1703), - [sym__concat] = ACTIONS(1703), - [anon_sym_esac] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_RPAREN] = ACTIONS(1705), - [anon_sym_SEMI_SEMI] = ACTIONS(1705), - [anon_sym_PIPE_AMP] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1705), - [anon_sym_PIPE_PIPE] = ACTIONS(1705), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_GT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_AMP_GT] = ACTIONS(1705), - [anon_sym_AMP_GT_GT] = ACTIONS(1705), - [anon_sym_LT_AMP] = ACTIONS(1705), - [anon_sym_GT_AMP] = ACTIONS(1705), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_LT_LT_DASH] = ACTIONS(1705), - [anon_sym_LT_LT_LT] = ACTIONS(1705), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_LF] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1705), + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(5261), + [sym_comment] = ACTIONS(53), }, [1988] = { - [sym_concatenation] = STATE(2331), - [sym_string] = STATE(2330), - [sym_simple_expansion] = STATE(2330), - [sym_string_expansion] = STATE(2330), - [sym_expansion] = STATE(2330), - [sym_command_substitution] = STATE(2330), - [sym_process_substitution] = STATE(2330), - [anon_sym_RBRACE] = ACTIONS(5402), - [sym__special_characters] = ACTIONS(5404), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(5406), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(5263), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5406), }, [1989] = { - [sym_file_descriptor] = ACTIONS(1744), - [sym__concat] = ACTIONS(1744), - [anon_sym_esac] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_SEMI_SEMI] = ACTIONS(1746), - [anon_sym_PIPE_AMP] = ACTIONS(1746), - [anon_sym_AMP_AMP] = ACTIONS(1746), - [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1746), - [anon_sym_GT] = ACTIONS(1746), - [anon_sym_GT_GT] = ACTIONS(1746), - [anon_sym_AMP_GT] = ACTIONS(1746), - [anon_sym_AMP_GT_GT] = ACTIONS(1746), - [anon_sym_LT_AMP] = ACTIONS(1746), - [anon_sym_GT_AMP] = ACTIONS(1746), - [anon_sym_LT_LT] = ACTIONS(1746), - [anon_sym_LT_LT_DASH] = ACTIONS(1746), - [anon_sym_LT_LT_LT] = ACTIONS(1746), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LF] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1746), - }, - [1990] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5408), - }, - [1991] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5410), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1992] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(5412), + [anon_sym_RBRACE] = ACTIONS(5263), [sym_comment] = ACTIONS(53), }, - [1993] = { - [sym_concatenation] = STATE(2337), + [1990] = { + [sym_concatenation] = STATE(2255), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2337), - [anon_sym_RBRACE] = ACTIONS(5414), - [anon_sym_EQ] = ACTIONS(5416), + [aux_sym_expansion_repeat1] = STATE(2255), + [anon_sym_RBRACE] = ACTIONS(5265), + [anon_sym_EQ] = ACTIONS(5267), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5418), + [anon_sym_POUND] = ACTIONS(5269), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(5420), - [anon_sym_COLON] = ACTIONS(5416), - [anon_sym_COLON_QMARK] = ACTIONS(5416), - [anon_sym_COLON_DASH] = ACTIONS(5416), - [anon_sym_PERCENT] = ACTIONS(5416), - [anon_sym_DASH] = ACTIONS(5416), + [anon_sym_COLON] = ACTIONS(5267), + [anon_sym_COLON_QMARK] = ACTIONS(5267), + [anon_sym_COLON_DASH] = ACTIONS(5267), + [anon_sym_PERCENT] = ACTIONS(5267), + [anon_sym_DASH] = ACTIONS(5267), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -55792,59 +52544,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, + [1991] = { + [sym__concat] = ACTIONS(2788), + [anon_sym_RBRACE] = ACTIONS(2788), + [sym_comment] = ACTIONS(53), + }, + [1992] = { + [sym_concatenation] = STATE(2258), + [sym_string] = STATE(2257), + [sym_simple_expansion] = STATE(2257), + [sym_string_expansion] = STATE(2257), + [sym_expansion] = STATE(2257), + [sym_command_substitution] = STATE(2257), + [sym_process_substitution] = STATE(2257), + [anon_sym_RBRACE] = ACTIONS(5263), + [sym__special_characters] = ACTIONS(5271), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(5273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5273), + }, + [1993] = { + [sym__concat] = ACTIONS(2831), + [anon_sym_RBRACE] = ACTIONS(2831), + [sym_comment] = ACTIONS(53), + }, [1994] = { - [sym_concatenation] = STATE(2340), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2340), - [anon_sym_RBRACE] = ACTIONS(5422), - [anon_sym_EQ] = ACTIONS(5424), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5426), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(5428), - [anon_sym_COLON] = ACTIONS(5424), - [anon_sym_COLON_QMARK] = ACTIONS(5424), - [anon_sym_COLON_DASH] = ACTIONS(5424), - [anon_sym_PERCENT] = ACTIONS(5424), - [anon_sym_DASH] = ACTIONS(5424), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_regex_without_right_brace] = ACTIONS(5275), }, [1995] = { - [sym_concatenation] = STATE(2342), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2342), - [anon_sym_RBRACE] = ACTIONS(5402), - [anon_sym_EQ] = ACTIONS(5430), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5277), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5432), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(5434), - [anon_sym_COLON] = ACTIONS(5430), - [anon_sym_COLON_QMARK] = ACTIONS(5430), - [anon_sym_COLON_DASH] = ACTIONS(5430), - [anon_sym_PERCENT] = ACTIONS(5430), - [anon_sym_DASH] = ACTIONS(5430), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -55853,56 +52609,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [1996] = { - [sym_file_descriptor] = ACTIONS(1810), - [sym__concat] = ACTIONS(1810), - [anon_sym_esac] = ACTIONS(1812), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_SEMI_SEMI] = ACTIONS(1812), - [anon_sym_PIPE_AMP] = ACTIONS(1812), - [anon_sym_AMP_AMP] = ACTIONS(1812), - [anon_sym_PIPE_PIPE] = ACTIONS(1812), - [anon_sym_LT] = ACTIONS(1812), - [anon_sym_GT] = ACTIONS(1812), - [anon_sym_GT_GT] = ACTIONS(1812), - [anon_sym_AMP_GT] = ACTIONS(1812), - [anon_sym_AMP_GT_GT] = ACTIONS(1812), - [anon_sym_LT_AMP] = ACTIONS(1812), - [anon_sym_GT_AMP] = ACTIONS(1812), - [anon_sym_LT_LT] = ACTIONS(1812), - [anon_sym_LT_LT_DASH] = ACTIONS(1812), - [anon_sym_LT_LT_LT] = ACTIONS(1812), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_LF] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1812), + [sym__concat] = ACTIONS(2839), + [anon_sym_RBRACE] = ACTIONS(2839), + [sym_comment] = ACTIONS(53), }, [1997] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5436), + [sym_regex_without_right_brace] = ACTIONS(5279), }, [1998] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5438), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5281), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -55911,56 +52647,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [1999] = { - [sym_file_descriptor] = ACTIONS(1818), - [sym__concat] = ACTIONS(1818), - [anon_sym_esac] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_RPAREN] = ACTIONS(1820), - [anon_sym_SEMI_SEMI] = ACTIONS(1820), - [anon_sym_PIPE_AMP] = ACTIONS(1820), - [anon_sym_AMP_AMP] = ACTIONS(1820), - [anon_sym_PIPE_PIPE] = ACTIONS(1820), - [anon_sym_LT] = ACTIONS(1820), - [anon_sym_GT] = ACTIONS(1820), - [anon_sym_GT_GT] = ACTIONS(1820), - [anon_sym_AMP_GT] = ACTIONS(1820), - [anon_sym_AMP_GT_GT] = ACTIONS(1820), - [anon_sym_LT_AMP] = ACTIONS(1820), - [anon_sym_GT_AMP] = ACTIONS(1820), - [anon_sym_LT_LT] = ACTIONS(1820), - [anon_sym_LT_LT_DASH] = ACTIONS(1820), - [anon_sym_LT_LT_LT] = ACTIONS(1820), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_LF] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1820), + [sym_regex_without_right_brace] = ACTIONS(5283), }, [2000] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5440), - }, - [2001] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5402), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5263), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2001] = { + [sym_concatenation] = STATE(2265), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2265), + [anon_sym_RBRACE] = ACTIONS(5285), + [anon_sym_EQ] = ACTIONS(5287), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5287), + [anon_sym_COLON_QMARK] = ACTIONS(5287), + [anon_sym_COLON_DASH] = ACTIONS(5287), + [anon_sym_PERCENT] = ACTIONS(5287), + [anon_sym_DASH] = ACTIONS(5287), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -55969,231 +52709,172 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [2002] = { - [sym_file_descriptor] = ACTIONS(1952), - [sym__concat] = ACTIONS(1952), - [anon_sym_esac] = ACTIONS(1954), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_RPAREN] = ACTIONS(1954), - [anon_sym_SEMI_SEMI] = ACTIONS(1954), - [anon_sym_PIPE_AMP] = ACTIONS(1954), - [anon_sym_AMP_AMP] = ACTIONS(1954), - [anon_sym_PIPE_PIPE] = ACTIONS(1954), - [anon_sym_LT] = ACTIONS(1954), - [anon_sym_GT] = ACTIONS(1954), - [anon_sym_GT_GT] = ACTIONS(1954), - [anon_sym_AMP_GT] = ACTIONS(1954), - [anon_sym_AMP_GT_GT] = ACTIONS(1954), - [anon_sym_LT_AMP] = ACTIONS(1954), - [anon_sym_GT_AMP] = ACTIONS(1954), - [anon_sym_LT_LT] = ACTIONS(1954), - [anon_sym_LT_LT_DASH] = ACTIONS(1954), - [anon_sym_LT_LT_LT] = ACTIONS(1954), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_LF] = ACTIONS(1952), - [anon_sym_AMP] = ACTIONS(1954), + [sym__concat] = ACTIONS(2855), + [anon_sym_RBRACE] = ACTIONS(2855), + [sym_comment] = ACTIONS(53), }, [2003] = { - [sym_file_descriptor] = ACTIONS(2018), - [sym__concat] = ACTIONS(2018), - [anon_sym_esac] = ACTIONS(2020), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_RPAREN] = ACTIONS(2020), - [anon_sym_SEMI_SEMI] = ACTIONS(2020), - [anon_sym_PIPE_AMP] = ACTIONS(2020), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [anon_sym_LT] = ACTIONS(2020), - [anon_sym_GT] = ACTIONS(2020), - [anon_sym_GT_GT] = ACTIONS(2020), - [anon_sym_AMP_GT] = ACTIONS(2020), - [anon_sym_AMP_GT_GT] = ACTIONS(2020), - [anon_sym_LT_AMP] = ACTIONS(2020), - [anon_sym_GT_AMP] = ACTIONS(2020), - [anon_sym_LT_LT] = ACTIONS(2020), - [anon_sym_LT_LT_DASH] = ACTIONS(2020), - [anon_sym_LT_LT_LT] = ACTIONS(2020), + [sym_concatenation] = STATE(2267), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2267), + [anon_sym_RBRACE] = ACTIONS(5291), + [anon_sym_EQ] = ACTIONS(5293), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5293), + [anon_sym_COLON_QMARK] = ACTIONS(5293), + [anon_sym_COLON_DASH] = ACTIONS(5293), + [anon_sym_PERCENT] = ACTIONS(5293), + [anon_sym_DASH] = ACTIONS(5293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2020), - [anon_sym_LF] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2020), + [sym_word] = ACTIONS(767), }, [2004] = { - [sym__concat] = ACTIONS(4884), - [anon_sym_PIPE] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4884), - [anon_sym_AMP_AMP] = ACTIONS(4884), - [anon_sym_PIPE_PIPE] = ACTIONS(4884), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4884), - [anon_sym_EQ_TILDE] = ACTIONS(4884), - [anon_sym_EQ_EQ] = ACTIONS(4884), - [anon_sym_EQ] = ACTIONS(4886), - [anon_sym_LT] = ACTIONS(4884), - [anon_sym_GT] = ACTIONS(4884), - [anon_sym_BANG_EQ] = ACTIONS(4884), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4884), + [sym__concat] = ACTIONS(3829), + [anon_sym_RBRACE] = ACTIONS(3829), + [anon_sym_EQ] = ACTIONS(3831), + [sym__special_characters] = ACTIONS(3831), + [anon_sym_DQUOTE] = ACTIONS(3829), + [anon_sym_DOLLAR] = ACTIONS(3831), + [sym_raw_string] = ACTIONS(3829), + [anon_sym_POUND] = ACTIONS(3829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3829), + [anon_sym_COLON] = ACTIONS(3831), + [anon_sym_COLON_QMARK] = ACTIONS(3831), + [anon_sym_COLON_DASH] = ACTIONS(3831), + [anon_sym_PERCENT] = ACTIONS(3831), + [anon_sym_DASH] = ACTIONS(3831), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3829), + [anon_sym_BQUOTE] = ACTIONS(3829), + [anon_sym_LT_LPAREN] = ACTIONS(3829), + [anon_sym_GT_LPAREN] = ACTIONS(3829), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3831), }, [2005] = { - [sym__concat] = ACTIONS(4888), - [anon_sym_PIPE] = ACTIONS(4890), - [anon_sym_RPAREN] = ACTIONS(4888), - [anon_sym_AMP_AMP] = ACTIONS(4888), - [anon_sym_PIPE_PIPE] = ACTIONS(4888), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4888), - [anon_sym_EQ_TILDE] = ACTIONS(4888), - [anon_sym_EQ_EQ] = ACTIONS(4888), - [anon_sym_EQ] = ACTIONS(4890), - [anon_sym_LT] = ACTIONS(4888), - [anon_sym_GT] = ACTIONS(4888), - [anon_sym_BANG_EQ] = ACTIONS(4888), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4888), + [sym__concat] = ACTIONS(3835), + [anon_sym_RBRACE] = ACTIONS(3835), + [anon_sym_EQ] = ACTIONS(3837), + [sym__special_characters] = ACTIONS(3837), + [anon_sym_DQUOTE] = ACTIONS(3835), + [anon_sym_DOLLAR] = ACTIONS(3837), + [sym_raw_string] = ACTIONS(3835), + [anon_sym_POUND] = ACTIONS(3835), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3835), + [anon_sym_COLON] = ACTIONS(3837), + [anon_sym_COLON_QMARK] = ACTIONS(3837), + [anon_sym_COLON_DASH] = ACTIONS(3837), + [anon_sym_PERCENT] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3837), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3835), + [anon_sym_BQUOTE] = ACTIONS(3835), + [anon_sym_LT_LPAREN] = ACTIONS(3835), + [anon_sym_GT_LPAREN] = ACTIONS(3835), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3837), }, [2006] = { - [sym__concat] = ACTIONS(4892), - [anon_sym_PIPE] = ACTIONS(4894), - [anon_sym_RPAREN] = ACTIONS(4892), - [anon_sym_AMP_AMP] = ACTIONS(4892), - [anon_sym_PIPE_PIPE] = ACTIONS(4892), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4892), - [anon_sym_EQ_TILDE] = ACTIONS(4892), - [anon_sym_EQ_EQ] = ACTIONS(4892), - [anon_sym_EQ] = ACTIONS(4894), - [anon_sym_LT] = ACTIONS(4892), - [anon_sym_GT] = ACTIONS(4892), - [anon_sym_BANG_EQ] = ACTIONS(4892), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4892), + [sym__concat] = ACTIONS(3920), + [anon_sym_RBRACE] = ACTIONS(3920), + [anon_sym_EQ] = ACTIONS(3922), + [sym__special_characters] = ACTIONS(3922), + [anon_sym_DQUOTE] = ACTIONS(3920), + [anon_sym_DOLLAR] = ACTIONS(3922), + [sym_raw_string] = ACTIONS(3920), + [anon_sym_POUND] = ACTIONS(3920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3920), + [anon_sym_COLON] = ACTIONS(3922), + [anon_sym_COLON_QMARK] = ACTIONS(3922), + [anon_sym_COLON_DASH] = ACTIONS(3922), + [anon_sym_PERCENT] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3920), + [anon_sym_BQUOTE] = ACTIONS(3920), + [anon_sym_LT_LPAREN] = ACTIONS(3920), + [anon_sym_GT_LPAREN] = ACTIONS(3920), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3922), }, [2007] = { - [sym__concat] = ACTIONS(4896), - [anon_sym_PIPE] = ACTIONS(4898), - [anon_sym_RPAREN] = ACTIONS(4896), - [anon_sym_AMP_AMP] = ACTIONS(4896), - [anon_sym_PIPE_PIPE] = ACTIONS(4896), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4896), - [anon_sym_EQ_TILDE] = ACTIONS(4896), - [anon_sym_EQ_EQ] = ACTIONS(4896), - [anon_sym_EQ] = ACTIONS(4898), - [anon_sym_LT] = ACTIONS(4896), - [anon_sym_GT] = ACTIONS(4896), - [anon_sym_BANG_EQ] = ACTIONS(4896), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4896), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5297), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [2008] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5442), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(5299), + [sym_comment] = ACTIONS(53), }, [2009] = { - [sym__concat] = ACTIONS(4902), - [anon_sym_PIPE] = ACTIONS(4904), - [anon_sym_RPAREN] = ACTIONS(4902), - [anon_sym_AMP_AMP] = ACTIONS(4902), - [anon_sym_PIPE_PIPE] = ACTIONS(4902), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4902), - [anon_sym_EQ_TILDE] = ACTIONS(4902), - [anon_sym_EQ_EQ] = ACTIONS(4902), - [anon_sym_EQ] = ACTIONS(4904), - [anon_sym_LT] = ACTIONS(4902), - [anon_sym_GT] = ACTIONS(4902), - [anon_sym_BANG_EQ] = ACTIONS(4902), + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(5301), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4902), }, [2010] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5444), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(5301), + [sym_comment] = ACTIONS(53), }, [2011] = { - [sym__concat] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4910), - [anon_sym_RPAREN] = ACTIONS(4908), - [anon_sym_AMP_AMP] = ACTIONS(4908), - [anon_sym_PIPE_PIPE] = ACTIONS(4908), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4908), - [anon_sym_EQ_TILDE] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4908), - [anon_sym_EQ] = ACTIONS(4910), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_BANG_EQ] = ACTIONS(4908), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4908), - }, - [2012] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(2272), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5446), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(2272), + [anon_sym_RBRACE] = ACTIONS(5303), + [anon_sym_EQ] = ACTIONS(5305), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(5307), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_COLON] = ACTIONS(5305), + [anon_sym_COLON_QMARK] = ACTIONS(5305), + [anon_sym_COLON_DASH] = ACTIONS(5305), + [anon_sym_PERCENT] = ACTIONS(5305), + [anon_sym_DASH] = ACTIONS(5305), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -56201,160 +52882,203 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, + [2012] = { + [sym__concat] = ACTIONS(3936), + [anon_sym_RBRACE] = ACTIONS(3936), + [anon_sym_EQ] = ACTIONS(3938), + [sym__special_characters] = ACTIONS(3938), + [anon_sym_DQUOTE] = ACTIONS(3936), + [anon_sym_DOLLAR] = ACTIONS(3938), + [sym_raw_string] = ACTIONS(3936), + [anon_sym_POUND] = ACTIONS(3936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3936), + [anon_sym_COLON] = ACTIONS(3938), + [anon_sym_COLON_QMARK] = ACTIONS(3938), + [anon_sym_COLON_DASH] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(3936), + [anon_sym_LT_LPAREN] = ACTIONS(3936), + [anon_sym_GT_LPAREN] = ACTIONS(3936), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3938), + }, [2013] = { - [sym__concat] = ACTIONS(4914), - [anon_sym_PIPE] = ACTIONS(4916), - [anon_sym_RPAREN] = ACTIONS(4914), - [anon_sym_AMP_AMP] = ACTIONS(4914), - [anon_sym_PIPE_PIPE] = ACTIONS(4914), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4914), - [anon_sym_EQ_TILDE] = ACTIONS(4914), - [anon_sym_EQ_EQ] = ACTIONS(4914), - [anon_sym_EQ] = ACTIONS(4916), - [anon_sym_LT] = ACTIONS(4914), - [anon_sym_GT] = ACTIONS(4914), - [anon_sym_BANG_EQ] = ACTIONS(4914), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4914), - }, - [2014] = { - [sym__concat] = ACTIONS(4918), - [anon_sym_PIPE] = ACTIONS(4920), - [anon_sym_RPAREN] = ACTIONS(4918), - [anon_sym_AMP_AMP] = ACTIONS(4918), - [anon_sym_PIPE_PIPE] = ACTIONS(4918), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4918), - [anon_sym_EQ_TILDE] = ACTIONS(4918), - [anon_sym_EQ_EQ] = ACTIONS(4918), - [anon_sym_EQ] = ACTIONS(4920), - [anon_sym_LT] = ACTIONS(4918), - [anon_sym_GT] = ACTIONS(4918), - [anon_sym_BANG_EQ] = ACTIONS(4918), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4918), - }, - [2015] = { - [sym__concat] = ACTIONS(4884), - [sym_variable_name] = ACTIONS(4884), - [anon_sym_PIPE] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4886), - [anon_sym_SEMI_SEMI] = ACTIONS(4886), - [anon_sym_PIPE_AMP] = ACTIONS(4886), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [sym__special_characters] = ACTIONS(4886), - [anon_sym_DQUOTE] = ACTIONS(4886), - [anon_sym_DOLLAR] = ACTIONS(4886), - [sym_raw_string] = ACTIONS(4886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4886), - [anon_sym_BQUOTE] = ACTIONS(4886), - [anon_sym_LT_LPAREN] = ACTIONS(4886), - [anon_sym_GT_LPAREN] = ACTIONS(4886), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4886), - [sym_word] = ACTIONS(4886), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym_LF] = ACTIONS(4884), - [anon_sym_AMP] = ACTIONS(4886), - }, - [2016] = { - [sym__concat] = ACTIONS(4888), - [sym_variable_name] = ACTIONS(4888), - [anon_sym_PIPE] = ACTIONS(4890), - [anon_sym_RPAREN] = ACTIONS(4890), - [anon_sym_SEMI_SEMI] = ACTIONS(4890), - [anon_sym_PIPE_AMP] = ACTIONS(4890), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [sym__special_characters] = ACTIONS(4890), - [anon_sym_DQUOTE] = ACTIONS(4890), - [anon_sym_DOLLAR] = ACTIONS(4890), - [sym_raw_string] = ACTIONS(4890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4890), - [anon_sym_BQUOTE] = ACTIONS(4890), - [anon_sym_LT_LPAREN] = ACTIONS(4890), - [anon_sym_GT_LPAREN] = ACTIONS(4890), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4890), - [sym_word] = ACTIONS(4890), - [anon_sym_SEMI] = ACTIONS(4890), - [anon_sym_LF] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4890), - }, - [2017] = { - [sym__concat] = ACTIONS(4892), - [sym_variable_name] = ACTIONS(4892), - [anon_sym_PIPE] = ACTIONS(4894), - [anon_sym_RPAREN] = ACTIONS(4894), - [anon_sym_SEMI_SEMI] = ACTIONS(4894), - [anon_sym_PIPE_AMP] = ACTIONS(4894), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE_PIPE] = ACTIONS(4894), - [sym__special_characters] = ACTIONS(4894), - [anon_sym_DQUOTE] = ACTIONS(4894), - [anon_sym_DOLLAR] = ACTIONS(4894), - [sym_raw_string] = ACTIONS(4894), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4894), - [anon_sym_BQUOTE] = ACTIONS(4894), - [anon_sym_LT_LPAREN] = ACTIONS(4894), - [anon_sym_GT_LPAREN] = ACTIONS(4894), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4894), - [sym_word] = ACTIONS(4894), - [anon_sym_SEMI] = ACTIONS(4894), - [anon_sym_LF] = ACTIONS(4892), - [anon_sym_AMP] = ACTIONS(4894), - }, - [2018] = { - [sym__concat] = ACTIONS(4896), - [sym_variable_name] = ACTIONS(4896), - [anon_sym_PIPE] = ACTIONS(4898), - [anon_sym_RPAREN] = ACTIONS(4898), - [anon_sym_SEMI_SEMI] = ACTIONS(4898), - [anon_sym_PIPE_AMP] = ACTIONS(4898), - [anon_sym_AMP_AMP] = ACTIONS(4898), - [anon_sym_PIPE_PIPE] = ACTIONS(4898), - [sym__special_characters] = ACTIONS(4898), - [anon_sym_DQUOTE] = ACTIONS(4898), - [anon_sym_DOLLAR] = ACTIONS(4898), - [sym_raw_string] = ACTIONS(4898), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4898), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4898), - [anon_sym_BQUOTE] = ACTIONS(4898), - [anon_sym_LT_LPAREN] = ACTIONS(4898), - [anon_sym_GT_LPAREN] = ACTIONS(4898), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4898), - [sym_word] = ACTIONS(4898), - [anon_sym_SEMI] = ACTIONS(4898), - [anon_sym_LF] = ACTIONS(4896), - [anon_sym_AMP] = ACTIONS(4898), - }, - [2019] = { - [sym_concatenation] = STATE(839), + [sym_concatenation] = STATE(2274), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5448), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(2274), + [anon_sym_RBRACE] = ACTIONS(5309), + [anon_sym_EQ] = ACTIONS(5311), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(5313), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_COLON] = ACTIONS(5311), + [anon_sym_COLON_QMARK] = ACTIONS(5311), + [anon_sym_COLON_DASH] = ACTIONS(5311), + [anon_sym_PERCENT] = ACTIONS(5311), + [anon_sym_DASH] = ACTIONS(5311), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2014] = { + [sym__concat] = ACTIONS(3946), + [anon_sym_RBRACE] = ACTIONS(3946), + [anon_sym_EQ] = ACTIONS(3948), + [sym__special_characters] = ACTIONS(3948), + [anon_sym_DQUOTE] = ACTIONS(3946), + [anon_sym_DOLLAR] = ACTIONS(3948), + [sym_raw_string] = ACTIONS(3946), + [anon_sym_POUND] = ACTIONS(3946), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3946), + [anon_sym_COLON] = ACTIONS(3948), + [anon_sym_COLON_QMARK] = ACTIONS(3948), + [anon_sym_COLON_DASH] = ACTIONS(3948), + [anon_sym_PERCENT] = ACTIONS(3948), + [anon_sym_DASH] = ACTIONS(3948), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3946), + [anon_sym_BQUOTE] = ACTIONS(3946), + [anon_sym_LT_LPAREN] = ACTIONS(3946), + [anon_sym_GT_LPAREN] = ACTIONS(3946), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3948), + }, + [2015] = { + [sym_concatenation] = STATE(2276), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2276), + [anon_sym_RBRACE] = ACTIONS(5315), + [anon_sym_EQ] = ACTIONS(5317), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5319), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5317), + [anon_sym_COLON_QMARK] = ACTIONS(5317), + [anon_sym_COLON_DASH] = ACTIONS(5317), + [anon_sym_PERCENT] = ACTIONS(5317), + [anon_sym_DASH] = ACTIONS(5317), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2016] = { + [sym__concat] = ACTIONS(3956), + [anon_sym_RBRACE] = ACTIONS(3956), + [anon_sym_EQ] = ACTIONS(3958), + [sym__special_characters] = ACTIONS(3958), + [anon_sym_DQUOTE] = ACTIONS(3956), + [anon_sym_DOLLAR] = ACTIONS(3958), + [sym_raw_string] = ACTIONS(3956), + [anon_sym_POUND] = ACTIONS(3956), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3956), + [anon_sym_COLON] = ACTIONS(3958), + [anon_sym_COLON_QMARK] = ACTIONS(3958), + [anon_sym_COLON_DASH] = ACTIONS(3958), + [anon_sym_PERCENT] = ACTIONS(3958), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3956), + [anon_sym_BQUOTE] = ACTIONS(3956), + [anon_sym_LT_LPAREN] = ACTIONS(3956), + [anon_sym_GT_LPAREN] = ACTIONS(3956), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3958), + }, + [2017] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2018] = { + [sym__concat] = ACTIONS(3962), + [anon_sym_RBRACE] = ACTIONS(3962), + [anon_sym_EQ] = ACTIONS(3964), + [sym__special_characters] = ACTIONS(3964), + [anon_sym_DQUOTE] = ACTIONS(3962), + [anon_sym_DOLLAR] = ACTIONS(3964), + [sym_raw_string] = ACTIONS(3962), + [anon_sym_POUND] = ACTIONS(3962), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3962), + [anon_sym_COLON] = ACTIONS(3964), + [anon_sym_COLON_QMARK] = ACTIONS(3964), + [anon_sym_COLON_DASH] = ACTIONS(3964), + [anon_sym_PERCENT] = ACTIONS(3964), + [anon_sym_DASH] = ACTIONS(3964), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3962), + [anon_sym_BQUOTE] = ACTIONS(3962), + [anon_sym_LT_LPAREN] = ACTIONS(3962), + [anon_sym_GT_LPAREN] = ACTIONS(3962), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3964), + }, + [2019] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5323), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -56363,1803 +53087,255 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [2020] = { - [sym__concat] = ACTIONS(4902), - [sym_variable_name] = ACTIONS(4902), - [anon_sym_PIPE] = ACTIONS(4904), - [anon_sym_RPAREN] = ACTIONS(4904), - [anon_sym_SEMI_SEMI] = ACTIONS(4904), - [anon_sym_PIPE_AMP] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4904), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [sym__special_characters] = ACTIONS(4904), - [anon_sym_DQUOTE] = ACTIONS(4904), - [anon_sym_DOLLAR] = ACTIONS(4904), - [sym_raw_string] = ACTIONS(4904), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4904), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4904), - [anon_sym_BQUOTE] = ACTIONS(4904), - [anon_sym_LT_LPAREN] = ACTIONS(4904), - [anon_sym_GT_LPAREN] = ACTIONS(4904), + [sym__simple_heredoc_body] = ACTIONS(5325), + [sym__heredoc_body_beginning] = ACTIONS(5325), + [sym_file_descriptor] = ACTIONS(5325), + [sym__concat] = ACTIONS(5325), + [anon_sym_esac] = ACTIONS(5327), + [anon_sym_PIPE] = ACTIONS(5327), + [anon_sym_RPAREN] = ACTIONS(5327), + [anon_sym_SEMI_SEMI] = ACTIONS(5327), + [anon_sym_PIPE_AMP] = ACTIONS(5327), + [anon_sym_AMP_AMP] = ACTIONS(5327), + [anon_sym_PIPE_PIPE] = ACTIONS(5327), + [anon_sym_EQ_TILDE] = ACTIONS(5327), + [anon_sym_EQ_EQ] = ACTIONS(5327), + [anon_sym_LT] = ACTIONS(5327), + [anon_sym_GT] = ACTIONS(5327), + [anon_sym_GT_GT] = ACTIONS(5327), + [anon_sym_AMP_GT] = ACTIONS(5327), + [anon_sym_AMP_GT_GT] = ACTIONS(5327), + [anon_sym_LT_AMP] = ACTIONS(5327), + [anon_sym_GT_AMP] = ACTIONS(5327), + [anon_sym_LT_LT] = ACTIONS(5327), + [anon_sym_LT_LT_DASH] = ACTIONS(5327), + [anon_sym_LT_LT_LT] = ACTIONS(5327), + [sym__special_characters] = ACTIONS(5327), + [anon_sym_DQUOTE] = ACTIONS(5327), + [anon_sym_DOLLAR] = ACTIONS(5327), + [sym_raw_string] = ACTIONS(5327), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5327), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5327), + [anon_sym_BQUOTE] = ACTIONS(5327), + [anon_sym_LT_LPAREN] = ACTIONS(5327), + [anon_sym_GT_LPAREN] = ACTIONS(5327), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4904), - [sym_word] = ACTIONS(4904), - [anon_sym_SEMI] = ACTIONS(4904), - [anon_sym_LF] = ACTIONS(4902), - [anon_sym_AMP] = ACTIONS(4904), + [sym_word] = ACTIONS(5327), + [anon_sym_SEMI] = ACTIONS(5327), + [anon_sym_LF] = ACTIONS(5325), + [anon_sym_AMP] = ACTIONS(5327), }, [2021] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5450), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym__simple_heredoc_body] = ACTIONS(5329), + [sym__heredoc_body_beginning] = ACTIONS(5329), + [sym_file_descriptor] = ACTIONS(5329), + [sym__concat] = ACTIONS(5329), + [anon_sym_esac] = ACTIONS(5331), + [anon_sym_PIPE] = ACTIONS(5331), + [anon_sym_RPAREN] = ACTIONS(5331), + [anon_sym_SEMI_SEMI] = ACTIONS(5331), + [anon_sym_PIPE_AMP] = ACTIONS(5331), + [anon_sym_AMP_AMP] = ACTIONS(5331), + [anon_sym_PIPE_PIPE] = ACTIONS(5331), + [anon_sym_EQ_TILDE] = ACTIONS(5331), + [anon_sym_EQ_EQ] = ACTIONS(5331), + [anon_sym_LT] = ACTIONS(5331), + [anon_sym_GT] = ACTIONS(5331), + [anon_sym_GT_GT] = ACTIONS(5331), + [anon_sym_AMP_GT] = ACTIONS(5331), + [anon_sym_AMP_GT_GT] = ACTIONS(5331), + [anon_sym_LT_AMP] = ACTIONS(5331), + [anon_sym_GT_AMP] = ACTIONS(5331), + [anon_sym_LT_LT] = ACTIONS(5331), + [anon_sym_LT_LT_DASH] = ACTIONS(5331), + [anon_sym_LT_LT_LT] = ACTIONS(5331), + [sym__special_characters] = ACTIONS(5331), + [anon_sym_DQUOTE] = ACTIONS(5331), + [anon_sym_DOLLAR] = ACTIONS(5331), + [sym_raw_string] = ACTIONS(5331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5331), + [anon_sym_BQUOTE] = ACTIONS(5331), + [anon_sym_LT_LPAREN] = ACTIONS(5331), + [anon_sym_GT_LPAREN] = ACTIONS(5331), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(5331), + [anon_sym_SEMI] = ACTIONS(5331), + [anon_sym_LF] = ACTIONS(5329), + [anon_sym_AMP] = ACTIONS(5331), }, [2022] = { - [sym__concat] = ACTIONS(4908), - [sym_variable_name] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4910), - [anon_sym_RPAREN] = ACTIONS(4910), - [anon_sym_SEMI_SEMI] = ACTIONS(4910), - [anon_sym_PIPE_AMP] = ACTIONS(4910), - [anon_sym_AMP_AMP] = ACTIONS(4910), - [anon_sym_PIPE_PIPE] = ACTIONS(4910), - [sym__special_characters] = ACTIONS(4910), - [anon_sym_DQUOTE] = ACTIONS(4910), - [anon_sym_DOLLAR] = ACTIONS(4910), - [sym_raw_string] = ACTIONS(4910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4910), - [anon_sym_BQUOTE] = ACTIONS(4910), - [anon_sym_LT_LPAREN] = ACTIONS(4910), - [anon_sym_GT_LPAREN] = ACTIONS(4910), + [sym__simple_heredoc_body] = ACTIONS(5333), + [sym__heredoc_body_beginning] = ACTIONS(5333), + [sym_file_descriptor] = ACTIONS(5333), + [sym__concat] = ACTIONS(5333), + [anon_sym_esac] = ACTIONS(5335), + [anon_sym_PIPE] = ACTIONS(5335), + [anon_sym_RPAREN] = ACTIONS(5335), + [anon_sym_SEMI_SEMI] = ACTIONS(5335), + [anon_sym_PIPE_AMP] = ACTIONS(5335), + [anon_sym_AMP_AMP] = ACTIONS(5335), + [anon_sym_PIPE_PIPE] = ACTIONS(5335), + [anon_sym_EQ_TILDE] = ACTIONS(5335), + [anon_sym_EQ_EQ] = ACTIONS(5335), + [anon_sym_LT] = ACTIONS(5335), + [anon_sym_GT] = ACTIONS(5335), + [anon_sym_GT_GT] = ACTIONS(5335), + [anon_sym_AMP_GT] = ACTIONS(5335), + [anon_sym_AMP_GT_GT] = ACTIONS(5335), + [anon_sym_LT_AMP] = ACTIONS(5335), + [anon_sym_GT_AMP] = ACTIONS(5335), + [anon_sym_LT_LT] = ACTIONS(5335), + [anon_sym_LT_LT_DASH] = ACTIONS(5335), + [anon_sym_LT_LT_LT] = ACTIONS(5335), + [sym__special_characters] = ACTIONS(5335), + [anon_sym_DQUOTE] = ACTIONS(5335), + [anon_sym_DOLLAR] = ACTIONS(5335), + [sym_raw_string] = ACTIONS(5335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5335), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5335), + [anon_sym_BQUOTE] = ACTIONS(5335), + [anon_sym_LT_LPAREN] = ACTIONS(5335), + [anon_sym_GT_LPAREN] = ACTIONS(5335), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4910), - [sym_word] = ACTIONS(4910), - [anon_sym_SEMI] = ACTIONS(4910), - [anon_sym_LF] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4910), + [sym_word] = ACTIONS(5335), + [anon_sym_SEMI] = ACTIONS(5335), + [anon_sym_LF] = ACTIONS(5333), + [anon_sym_AMP] = ACTIONS(5335), }, [2023] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5452), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(4301), + [anon_sym_RPAREN] = ACTIONS(4303), + [anon_sym_PIPE_AMP] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4303), + [anon_sym_PIPE_PIPE] = ACTIONS(4303), + [anon_sym_BQUOTE] = ACTIONS(4303), + [sym_comment] = ACTIONS(53), }, [2024] = { - [sym__concat] = ACTIONS(4914), - [sym_variable_name] = ACTIONS(4914), - [anon_sym_PIPE] = ACTIONS(4916), - [anon_sym_RPAREN] = ACTIONS(4916), - [anon_sym_SEMI_SEMI] = ACTIONS(4916), - [anon_sym_PIPE_AMP] = ACTIONS(4916), - [anon_sym_AMP_AMP] = ACTIONS(4916), - [anon_sym_PIPE_PIPE] = ACTIONS(4916), - [sym__special_characters] = ACTIONS(4916), - [anon_sym_DQUOTE] = ACTIONS(4916), - [anon_sym_DOLLAR] = ACTIONS(4916), - [sym_raw_string] = ACTIONS(4916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4916), - [anon_sym_BQUOTE] = ACTIONS(4916), - [anon_sym_LT_LPAREN] = ACTIONS(4916), - [anon_sym_GT_LPAREN] = ACTIONS(4916), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4916), - [sym_word] = ACTIONS(4916), - [anon_sym_SEMI] = ACTIONS(4916), - [anon_sym_LF] = ACTIONS(4914), - [anon_sym_AMP] = ACTIONS(4916), + [anon_sym_PIPE] = ACTIONS(3440), + [anon_sym_RPAREN] = ACTIONS(3438), + [anon_sym_PIPE_AMP] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BQUOTE] = ACTIONS(3438), + [sym_comment] = ACTIONS(53), }, [2025] = { - [sym__concat] = ACTIONS(4918), - [sym_variable_name] = ACTIONS(4918), - [anon_sym_PIPE] = ACTIONS(4920), - [anon_sym_RPAREN] = ACTIONS(4920), - [anon_sym_SEMI_SEMI] = ACTIONS(4920), - [anon_sym_PIPE_AMP] = ACTIONS(4920), - [anon_sym_AMP_AMP] = ACTIONS(4920), - [anon_sym_PIPE_PIPE] = ACTIONS(4920), - [sym__special_characters] = ACTIONS(4920), - [anon_sym_DQUOTE] = ACTIONS(4920), - [anon_sym_DOLLAR] = ACTIONS(4920), - [sym_raw_string] = ACTIONS(4920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4920), - [anon_sym_BQUOTE] = ACTIONS(4920), - [anon_sym_LT_LPAREN] = ACTIONS(4920), - [anon_sym_GT_LPAREN] = ACTIONS(4920), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4920), - [sym_word] = ACTIONS(4920), - [anon_sym_SEMI] = ACTIONS(4920), - [anon_sym_LF] = ACTIONS(4918), - [anon_sym_AMP] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4307), + [anon_sym_RPAREN] = ACTIONS(4309), + [anon_sym_PIPE_AMP] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_BQUOTE] = ACTIONS(4309), + [sym_comment] = ACTIONS(53), }, [2026] = { - [sym__concat] = ACTIONS(4884), - [anon_sym_PIPE] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4886), - [anon_sym_SEMI_SEMI] = ACTIONS(4886), - [anon_sym_PIPE_AMP] = ACTIONS(4886), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [sym__special_characters] = ACTIONS(4886), - [anon_sym_DQUOTE] = ACTIONS(4886), - [anon_sym_DOLLAR] = ACTIONS(4886), - [sym_raw_string] = ACTIONS(4886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4886), - [anon_sym_BQUOTE] = ACTIONS(4886), - [anon_sym_LT_LPAREN] = ACTIONS(4886), - [anon_sym_GT_LPAREN] = ACTIONS(4886), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4886), - [sym_word] = ACTIONS(4886), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym_LF] = ACTIONS(4884), - [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_fi] = ACTIONS(5337), + [sym_comment] = ACTIONS(53), }, [2027] = { - [sym__concat] = ACTIONS(4888), - [anon_sym_PIPE] = ACTIONS(4890), - [anon_sym_RPAREN] = ACTIONS(4890), - [anon_sym_SEMI_SEMI] = ACTIONS(4890), - [anon_sym_PIPE_AMP] = ACTIONS(4890), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [sym__special_characters] = ACTIONS(4890), - [anon_sym_DQUOTE] = ACTIONS(4890), - [anon_sym_DOLLAR] = ACTIONS(4890), - [sym_raw_string] = ACTIONS(4890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4890), - [anon_sym_BQUOTE] = ACTIONS(4890), - [anon_sym_LT_LPAREN] = ACTIONS(4890), - [anon_sym_GT_LPAREN] = ACTIONS(4890), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4890), - [sym_word] = ACTIONS(4890), - [anon_sym_SEMI] = ACTIONS(4890), - [anon_sym_LF] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4890), + [anon_sym_PIPE] = ACTIONS(4351), + [anon_sym_RPAREN] = ACTIONS(4353), + [anon_sym_PIPE_AMP] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4353), + [anon_sym_PIPE_PIPE] = ACTIONS(4353), + [anon_sym_BQUOTE] = ACTIONS(4353), + [sym_comment] = ACTIONS(53), }, [2028] = { - [sym__concat] = ACTIONS(4892), - [anon_sym_PIPE] = ACTIONS(4894), - [anon_sym_RPAREN] = ACTIONS(4894), - [anon_sym_SEMI_SEMI] = ACTIONS(4894), - [anon_sym_PIPE_AMP] = ACTIONS(4894), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE_PIPE] = ACTIONS(4894), - [sym__special_characters] = ACTIONS(4894), - [anon_sym_DQUOTE] = ACTIONS(4894), - [anon_sym_DOLLAR] = ACTIONS(4894), - [sym_raw_string] = ACTIONS(4894), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4894), - [anon_sym_BQUOTE] = ACTIONS(4894), - [anon_sym_LT_LPAREN] = ACTIONS(4894), - [anon_sym_GT_LPAREN] = ACTIONS(4894), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4894), - [sym_word] = ACTIONS(4894), - [anon_sym_SEMI] = ACTIONS(4894), - [anon_sym_LF] = ACTIONS(4892), - [anon_sym_AMP] = ACTIONS(4894), + [anon_sym_esac] = ACTIONS(5339), + [sym_comment] = ACTIONS(53), }, [2029] = { - [sym__concat] = ACTIONS(4896), - [anon_sym_PIPE] = ACTIONS(4898), - [anon_sym_RPAREN] = ACTIONS(4898), - [anon_sym_SEMI_SEMI] = ACTIONS(4898), - [anon_sym_PIPE_AMP] = ACTIONS(4898), - [anon_sym_AMP_AMP] = ACTIONS(4898), - [anon_sym_PIPE_PIPE] = ACTIONS(4898), - [sym__special_characters] = ACTIONS(4898), - [anon_sym_DQUOTE] = ACTIONS(4898), - [anon_sym_DOLLAR] = ACTIONS(4898), - [sym_raw_string] = ACTIONS(4898), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4898), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4898), - [anon_sym_BQUOTE] = ACTIONS(4898), - [anon_sym_LT_LPAREN] = ACTIONS(4898), - [anon_sym_GT_LPAREN] = ACTIONS(4898), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4898), - [sym_word] = ACTIONS(4898), - [anon_sym_SEMI] = ACTIONS(4898), - [anon_sym_LF] = ACTIONS(4896), - [anon_sym_AMP] = ACTIONS(4898), + [anon_sym_PIPE] = ACTIONS(4381), + [anon_sym_RPAREN] = ACTIONS(4383), + [anon_sym_PIPE_AMP] = ACTIONS(4383), + [anon_sym_AMP_AMP] = ACTIONS(4383), + [anon_sym_PIPE_PIPE] = ACTIONS(4383), + [anon_sym_BQUOTE] = ACTIONS(4383), + [sym_comment] = ACTIONS(53), }, [2030] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5454), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_case_item] = STATE(1472), + [sym_last_case_item] = STATE(2281), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(1046), + [sym_simple_expansion] = STATE(1046), + [sym_string_expansion] = STATE(1046), + [sym_expansion] = STATE(1046), + [sym_command_substitution] = STATE(1046), + [sym_process_substitution] = STATE(1046), + [aux_sym_case_statement_repeat1] = STATE(1472), + [sym__special_characters] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [sym_raw_string] = ACTIONS(2259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_LT_LPAREN] = ACTIONS(151), + [anon_sym_GT_LPAREN] = ACTIONS(151), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2259), }, [2031] = { - [sym__concat] = ACTIONS(4902), - [anon_sym_PIPE] = ACTIONS(4904), - [anon_sym_RPAREN] = ACTIONS(4904), - [anon_sym_SEMI_SEMI] = ACTIONS(4904), - [anon_sym_PIPE_AMP] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4904), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [sym__special_characters] = ACTIONS(4904), - [anon_sym_DQUOTE] = ACTIONS(4904), - [anon_sym_DOLLAR] = ACTIONS(4904), - [sym_raw_string] = ACTIONS(4904), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4904), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4904), - [anon_sym_BQUOTE] = ACTIONS(4904), - [anon_sym_LT_LPAREN] = ACTIONS(4904), - [anon_sym_GT_LPAREN] = ACTIONS(4904), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4904), - [sym_word] = ACTIONS(4904), - [anon_sym_SEMI] = ACTIONS(4904), - [anon_sym_LF] = ACTIONS(4902), - [anon_sym_AMP] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4385), + [anon_sym_RPAREN] = ACTIONS(4387), + [anon_sym_PIPE_AMP] = ACTIONS(4387), + [anon_sym_AMP_AMP] = ACTIONS(4387), + [anon_sym_PIPE_PIPE] = ACTIONS(4387), + [anon_sym_BQUOTE] = ACTIONS(4387), + [sym_comment] = ACTIONS(53), }, [2032] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5456), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_esac] = ACTIONS(5341), + [sym_comment] = ACTIONS(53), }, [2033] = { - [sym__concat] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4910), - [anon_sym_RPAREN] = ACTIONS(4910), - [anon_sym_SEMI_SEMI] = ACTIONS(4910), - [anon_sym_PIPE_AMP] = ACTIONS(4910), - [anon_sym_AMP_AMP] = ACTIONS(4910), - [anon_sym_PIPE_PIPE] = ACTIONS(4910), - [sym__special_characters] = ACTIONS(4910), - [anon_sym_DQUOTE] = ACTIONS(4910), - [anon_sym_DOLLAR] = ACTIONS(4910), - [sym_raw_string] = ACTIONS(4910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4910), - [anon_sym_BQUOTE] = ACTIONS(4910), - [anon_sym_LT_LPAREN] = ACTIONS(4910), - [anon_sym_GT_LPAREN] = ACTIONS(4910), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4910), - [sym_word] = ACTIONS(4910), - [anon_sym_SEMI] = ACTIONS(4910), - [anon_sym_LF] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4910), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4393), + [anon_sym_PIPE_AMP] = ACTIONS(4393), + [anon_sym_AMP_AMP] = ACTIONS(4393), + [anon_sym_PIPE_PIPE] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(4393), + [sym_comment] = ACTIONS(53), }, [2034] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5458), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_case_item] = STATE(1472), + [sym_last_case_item] = STATE(2283), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(1046), + [sym_simple_expansion] = STATE(1046), + [sym_string_expansion] = STATE(1046), + [sym_expansion] = STATE(1046), + [sym_command_substitution] = STATE(1046), + [sym_process_substitution] = STATE(1046), + [aux_sym_case_statement_repeat1] = STATE(1472), + [sym__special_characters] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [sym_raw_string] = ACTIONS(2259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_LT_LPAREN] = ACTIONS(151), + [anon_sym_GT_LPAREN] = ACTIONS(151), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2259), }, [2035] = { - [sym__concat] = ACTIONS(4914), - [anon_sym_PIPE] = ACTIONS(4916), - [anon_sym_RPAREN] = ACTIONS(4916), - [anon_sym_SEMI_SEMI] = ACTIONS(4916), - [anon_sym_PIPE_AMP] = ACTIONS(4916), - [anon_sym_AMP_AMP] = ACTIONS(4916), - [anon_sym_PIPE_PIPE] = ACTIONS(4916), - [sym__special_characters] = ACTIONS(4916), - [anon_sym_DQUOTE] = ACTIONS(4916), - [anon_sym_DOLLAR] = ACTIONS(4916), - [sym_raw_string] = ACTIONS(4916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4916), - [anon_sym_BQUOTE] = ACTIONS(4916), - [anon_sym_LT_LPAREN] = ACTIONS(4916), - [anon_sym_GT_LPAREN] = ACTIONS(4916), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4916), - [sym_word] = ACTIONS(4916), - [anon_sym_SEMI] = ACTIONS(4916), - [anon_sym_LF] = ACTIONS(4914), - [anon_sym_AMP] = ACTIONS(4916), + [anon_sym_PIPE] = ACTIONS(4423), + [anon_sym_RPAREN] = ACTIONS(4425), + [anon_sym_PIPE_AMP] = ACTIONS(4425), + [anon_sym_AMP_AMP] = ACTIONS(4425), + [anon_sym_PIPE_PIPE] = ACTIONS(4425), + [anon_sym_BQUOTE] = ACTIONS(4425), + [sym_comment] = ACTIONS(53), }, [2036] = { - [sym__concat] = ACTIONS(4918), - [anon_sym_PIPE] = ACTIONS(4920), - [anon_sym_RPAREN] = ACTIONS(4920), - [anon_sym_SEMI_SEMI] = ACTIONS(4920), - [anon_sym_PIPE_AMP] = ACTIONS(4920), - [anon_sym_AMP_AMP] = ACTIONS(4920), - [anon_sym_PIPE_PIPE] = ACTIONS(4920), - [sym__special_characters] = ACTIONS(4920), - [anon_sym_DQUOTE] = ACTIONS(4920), - [anon_sym_DOLLAR] = ACTIONS(4920), - [sym_raw_string] = ACTIONS(4920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4920), - [anon_sym_BQUOTE] = ACTIONS(4920), - [anon_sym_LT_LPAREN] = ACTIONS(4920), - [anon_sym_GT_LPAREN] = ACTIONS(4920), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4920), - [sym_word] = ACTIONS(4920), - [anon_sym_SEMI] = ACTIONS(4920), - [anon_sym_LF] = ACTIONS(4918), - [anon_sym_AMP] = ACTIONS(4920), - }, - [2037] = { - [sym_file_descriptor] = ACTIONS(4884), - [sym__concat] = ACTIONS(4884), - [sym_variable_name] = ACTIONS(4884), - [anon_sym_PIPE] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4884), - [anon_sym_PIPE_AMP] = ACTIONS(4884), - [anon_sym_AMP_AMP] = ACTIONS(4884), - [anon_sym_PIPE_PIPE] = ACTIONS(4884), - [anon_sym_LT] = ACTIONS(4886), - [anon_sym_GT] = ACTIONS(4886), - [anon_sym_GT_GT] = ACTIONS(4884), - [anon_sym_AMP_GT] = ACTIONS(4886), - [anon_sym_AMP_GT_GT] = ACTIONS(4884), - [anon_sym_LT_AMP] = ACTIONS(4884), - [anon_sym_GT_AMP] = ACTIONS(4884), - [sym__special_characters] = ACTIONS(4884), - [anon_sym_DQUOTE] = ACTIONS(4884), - [anon_sym_DOLLAR] = ACTIONS(4886), - [sym_raw_string] = ACTIONS(4884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4884), - [anon_sym_BQUOTE] = ACTIONS(4884), - [anon_sym_LT_LPAREN] = ACTIONS(4884), - [anon_sym_GT_LPAREN] = ACTIONS(4884), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4884), - }, - [2038] = { - [sym_file_descriptor] = ACTIONS(4888), - [sym__concat] = ACTIONS(4888), - [sym_variable_name] = ACTIONS(4888), - [anon_sym_PIPE] = ACTIONS(4890), - [anon_sym_RPAREN] = ACTIONS(4888), - [anon_sym_PIPE_AMP] = ACTIONS(4888), - [anon_sym_AMP_AMP] = ACTIONS(4888), - [anon_sym_PIPE_PIPE] = ACTIONS(4888), - [anon_sym_LT] = ACTIONS(4890), - [anon_sym_GT] = ACTIONS(4890), - [anon_sym_GT_GT] = ACTIONS(4888), - [anon_sym_AMP_GT] = ACTIONS(4890), - [anon_sym_AMP_GT_GT] = ACTIONS(4888), - [anon_sym_LT_AMP] = ACTIONS(4888), - [anon_sym_GT_AMP] = ACTIONS(4888), - [sym__special_characters] = ACTIONS(4888), - [anon_sym_DQUOTE] = ACTIONS(4888), - [anon_sym_DOLLAR] = ACTIONS(4890), - [sym_raw_string] = ACTIONS(4888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4888), - [anon_sym_BQUOTE] = ACTIONS(4888), - [anon_sym_LT_LPAREN] = ACTIONS(4888), - [anon_sym_GT_LPAREN] = ACTIONS(4888), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4888), - }, - [2039] = { - [sym_file_descriptor] = ACTIONS(4892), - [sym__concat] = ACTIONS(4892), - [sym_variable_name] = ACTIONS(4892), - [anon_sym_PIPE] = ACTIONS(4894), - [anon_sym_RPAREN] = ACTIONS(4892), - [anon_sym_PIPE_AMP] = ACTIONS(4892), - [anon_sym_AMP_AMP] = ACTIONS(4892), - [anon_sym_PIPE_PIPE] = ACTIONS(4892), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_GT_GT] = ACTIONS(4892), - [anon_sym_AMP_GT] = ACTIONS(4894), - [anon_sym_AMP_GT_GT] = ACTIONS(4892), - [anon_sym_LT_AMP] = ACTIONS(4892), - [anon_sym_GT_AMP] = ACTIONS(4892), - [sym__special_characters] = ACTIONS(4892), - [anon_sym_DQUOTE] = ACTIONS(4892), - [anon_sym_DOLLAR] = ACTIONS(4894), - [sym_raw_string] = ACTIONS(4892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4892), - [anon_sym_BQUOTE] = ACTIONS(4892), - [anon_sym_LT_LPAREN] = ACTIONS(4892), - [anon_sym_GT_LPAREN] = ACTIONS(4892), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4892), - }, - [2040] = { - [sym_file_descriptor] = ACTIONS(4896), - [sym__concat] = ACTIONS(4896), - [sym_variable_name] = ACTIONS(4896), - [anon_sym_PIPE] = ACTIONS(4898), - [anon_sym_RPAREN] = ACTIONS(4896), - [anon_sym_PIPE_AMP] = ACTIONS(4896), - [anon_sym_AMP_AMP] = ACTIONS(4896), - [anon_sym_PIPE_PIPE] = ACTIONS(4896), - [anon_sym_LT] = ACTIONS(4898), - [anon_sym_GT] = ACTIONS(4898), - [anon_sym_GT_GT] = ACTIONS(4896), - [anon_sym_AMP_GT] = ACTIONS(4898), - [anon_sym_AMP_GT_GT] = ACTIONS(4896), - [anon_sym_LT_AMP] = ACTIONS(4896), - [anon_sym_GT_AMP] = ACTIONS(4896), - [sym__special_characters] = ACTIONS(4896), - [anon_sym_DQUOTE] = ACTIONS(4896), - [anon_sym_DOLLAR] = ACTIONS(4898), - [sym_raw_string] = ACTIONS(4896), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4896), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4896), - [anon_sym_BQUOTE] = ACTIONS(4896), - [anon_sym_LT_LPAREN] = ACTIONS(4896), - [anon_sym_GT_LPAREN] = ACTIONS(4896), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4896), - }, - [2041] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5460), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2042] = { - [sym_file_descriptor] = ACTIONS(4902), - [sym__concat] = ACTIONS(4902), - [sym_variable_name] = ACTIONS(4902), - [anon_sym_PIPE] = ACTIONS(4904), - [anon_sym_RPAREN] = ACTIONS(4902), - [anon_sym_PIPE_AMP] = ACTIONS(4902), - [anon_sym_AMP_AMP] = ACTIONS(4902), - [anon_sym_PIPE_PIPE] = ACTIONS(4902), - [anon_sym_LT] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4904), - [anon_sym_GT_GT] = ACTIONS(4902), - [anon_sym_AMP_GT] = ACTIONS(4904), - [anon_sym_AMP_GT_GT] = ACTIONS(4902), - [anon_sym_LT_AMP] = ACTIONS(4902), - [anon_sym_GT_AMP] = ACTIONS(4902), - [sym__special_characters] = ACTIONS(4902), - [anon_sym_DQUOTE] = ACTIONS(4902), - [anon_sym_DOLLAR] = ACTIONS(4904), - [sym_raw_string] = ACTIONS(4902), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4902), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4902), - [anon_sym_BQUOTE] = ACTIONS(4902), - [anon_sym_LT_LPAREN] = ACTIONS(4902), - [anon_sym_GT_LPAREN] = ACTIONS(4902), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4902), - }, - [2043] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5462), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2044] = { - [sym_file_descriptor] = ACTIONS(4908), - [sym__concat] = ACTIONS(4908), - [sym_variable_name] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4910), - [anon_sym_RPAREN] = ACTIONS(4908), - [anon_sym_PIPE_AMP] = ACTIONS(4908), - [anon_sym_AMP_AMP] = ACTIONS(4908), - [anon_sym_PIPE_PIPE] = ACTIONS(4908), - [anon_sym_LT] = ACTIONS(4910), - [anon_sym_GT] = ACTIONS(4910), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_AMP_GT] = ACTIONS(4910), - [anon_sym_AMP_GT_GT] = ACTIONS(4908), - [anon_sym_LT_AMP] = ACTIONS(4908), - [anon_sym_GT_AMP] = ACTIONS(4908), - [sym__special_characters] = ACTIONS(4908), - [anon_sym_DQUOTE] = ACTIONS(4908), - [anon_sym_DOLLAR] = ACTIONS(4910), - [sym_raw_string] = ACTIONS(4908), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4908), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4908), - [anon_sym_BQUOTE] = ACTIONS(4908), - [anon_sym_LT_LPAREN] = ACTIONS(4908), - [anon_sym_GT_LPAREN] = ACTIONS(4908), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4908), - }, - [2045] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5464), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2046] = { - [sym_file_descriptor] = ACTIONS(4914), - [sym__concat] = ACTIONS(4914), - [sym_variable_name] = ACTIONS(4914), - [anon_sym_PIPE] = ACTIONS(4916), - [anon_sym_RPAREN] = ACTIONS(4914), - [anon_sym_PIPE_AMP] = ACTIONS(4914), - [anon_sym_AMP_AMP] = ACTIONS(4914), - [anon_sym_PIPE_PIPE] = ACTIONS(4914), - [anon_sym_LT] = ACTIONS(4916), - [anon_sym_GT] = ACTIONS(4916), - [anon_sym_GT_GT] = ACTIONS(4914), - [anon_sym_AMP_GT] = ACTIONS(4916), - [anon_sym_AMP_GT_GT] = ACTIONS(4914), - [anon_sym_LT_AMP] = ACTIONS(4914), - [anon_sym_GT_AMP] = ACTIONS(4914), - [sym__special_characters] = ACTIONS(4914), - [anon_sym_DQUOTE] = ACTIONS(4914), - [anon_sym_DOLLAR] = ACTIONS(4916), - [sym_raw_string] = ACTIONS(4914), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4914), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4914), - [anon_sym_BQUOTE] = ACTIONS(4914), - [anon_sym_LT_LPAREN] = ACTIONS(4914), - [anon_sym_GT_LPAREN] = ACTIONS(4914), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4914), - }, - [2047] = { - [sym_file_descriptor] = ACTIONS(4918), - [sym__concat] = ACTIONS(4918), - [sym_variable_name] = ACTIONS(4918), - [anon_sym_PIPE] = ACTIONS(4920), - [anon_sym_RPAREN] = ACTIONS(4918), - [anon_sym_PIPE_AMP] = ACTIONS(4918), - [anon_sym_AMP_AMP] = ACTIONS(4918), - [anon_sym_PIPE_PIPE] = ACTIONS(4918), - [anon_sym_LT] = ACTIONS(4920), - [anon_sym_GT] = ACTIONS(4920), - [anon_sym_GT_GT] = ACTIONS(4918), - [anon_sym_AMP_GT] = ACTIONS(4920), - [anon_sym_AMP_GT_GT] = ACTIONS(4918), - [anon_sym_LT_AMP] = ACTIONS(4918), - [anon_sym_GT_AMP] = ACTIONS(4918), - [sym__special_characters] = ACTIONS(4918), - [anon_sym_DQUOTE] = ACTIONS(4918), - [anon_sym_DOLLAR] = ACTIONS(4920), - [sym_raw_string] = ACTIONS(4918), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4918), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4918), - [anon_sym_BQUOTE] = ACTIONS(4918), - [anon_sym_LT_LPAREN] = ACTIONS(4918), - [anon_sym_GT_LPAREN] = ACTIONS(4918), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4918), - }, - [2048] = { - [sym__concat] = ACTIONS(4884), - [anon_sym_DQUOTE] = ACTIONS(4886), - [anon_sym_DOLLAR] = ACTIONS(4886), - [sym__string_content] = ACTIONS(4884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4886), - [anon_sym_BQUOTE] = ACTIONS(4886), - [sym_comment] = ACTIONS(177), - }, - [2049] = { - [sym__concat] = ACTIONS(4888), - [anon_sym_DQUOTE] = ACTIONS(4890), - [anon_sym_DOLLAR] = ACTIONS(4890), - [sym__string_content] = ACTIONS(4888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4890), - [anon_sym_BQUOTE] = ACTIONS(4890), - [sym_comment] = ACTIONS(177), - }, - [2050] = { - [sym__concat] = ACTIONS(4892), - [anon_sym_DQUOTE] = ACTIONS(4894), - [anon_sym_DOLLAR] = ACTIONS(4894), - [sym__string_content] = ACTIONS(4892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4894), - [anon_sym_BQUOTE] = ACTIONS(4894), - [sym_comment] = ACTIONS(177), - }, - [2051] = { - [sym__concat] = ACTIONS(4896), - [anon_sym_DQUOTE] = ACTIONS(4898), - [anon_sym_DOLLAR] = ACTIONS(4898), - [sym__string_content] = ACTIONS(4896), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4898), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4898), - [anon_sym_BQUOTE] = ACTIONS(4898), - [sym_comment] = ACTIONS(177), - }, - [2052] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5466), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2053] = { - [sym__concat] = ACTIONS(4902), - [anon_sym_DQUOTE] = ACTIONS(4904), - [anon_sym_DOLLAR] = ACTIONS(4904), - [sym__string_content] = ACTIONS(4902), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4904), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4904), - [anon_sym_BQUOTE] = ACTIONS(4904), - [sym_comment] = ACTIONS(177), - }, - [2054] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5468), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2055] = { - [sym__concat] = ACTIONS(4908), - [anon_sym_DQUOTE] = ACTIONS(4910), - [anon_sym_DOLLAR] = ACTIONS(4910), - [sym__string_content] = ACTIONS(4908), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4910), - [anon_sym_BQUOTE] = ACTIONS(4910), - [sym_comment] = ACTIONS(177), - }, - [2056] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5470), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2057] = { - [sym__concat] = ACTIONS(4914), - [anon_sym_DQUOTE] = ACTIONS(4916), - [anon_sym_DOLLAR] = ACTIONS(4916), - [sym__string_content] = ACTIONS(4914), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4916), - [anon_sym_BQUOTE] = ACTIONS(4916), - [sym_comment] = ACTIONS(177), - }, - [2058] = { - [sym__concat] = ACTIONS(4918), - [anon_sym_DQUOTE] = ACTIONS(4920), - [anon_sym_DOLLAR] = ACTIONS(4920), - [sym__string_content] = ACTIONS(4918), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4920), - [anon_sym_BQUOTE] = ACTIONS(4920), - [sym_comment] = ACTIONS(177), - }, - [2059] = { - [anon_sym_RBRACE] = ACTIONS(4306), - [anon_sym_EQ] = ACTIONS(5472), - [sym__special_characters] = ACTIONS(5472), - [anon_sym_DQUOTE] = ACTIONS(4306), - [anon_sym_DOLLAR] = ACTIONS(5472), - [sym_raw_string] = ACTIONS(4306), - [anon_sym_POUND] = ACTIONS(4306), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4306), - [aux_sym_SLASH] = ACTIONS(4306), - [anon_sym_COLON] = ACTIONS(5472), - [anon_sym_COLON_QMARK] = ACTIONS(5472), - [anon_sym_COLON_DASH] = ACTIONS(5472), - [anon_sym_PERCENT] = ACTIONS(5472), - [anon_sym_DASH] = ACTIONS(5472), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4306), - [anon_sym_BQUOTE] = ACTIONS(4306), - [anon_sym_LT_LPAREN] = ACTIONS(4306), - [anon_sym_GT_LPAREN] = ACTIONS(4306), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5472), - }, - [2060] = { - [anon_sym_RBRACE] = ACTIONS(4308), - [anon_sym_EQ] = ACTIONS(5474), - [sym__special_characters] = ACTIONS(5474), - [anon_sym_DQUOTE] = ACTIONS(4308), - [anon_sym_DOLLAR] = ACTIONS(5474), - [sym_raw_string] = ACTIONS(4308), - [anon_sym_POUND] = ACTIONS(4308), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4308), - [aux_sym_SLASH] = ACTIONS(4308), - [anon_sym_COLON] = ACTIONS(5474), - [anon_sym_COLON_QMARK] = ACTIONS(5474), - [anon_sym_COLON_DASH] = ACTIONS(5474), - [anon_sym_PERCENT] = ACTIONS(5474), - [anon_sym_DASH] = ACTIONS(5474), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4308), - [anon_sym_BQUOTE] = ACTIONS(4308), - [anon_sym_LT_LPAREN] = ACTIONS(4308), - [anon_sym_GT_LPAREN] = ACTIONS(4308), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5474), - }, - [2061] = { - [sym__concat] = ACTIONS(2752), - [anon_sym_RBRACE] = ACTIONS(2752), - [sym_comment] = ACTIONS(53), - }, - [2062] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5476), - [sym_comment] = ACTIONS(53), - }, - [2063] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5478), - [sym_comment] = ACTIONS(53), - }, - [2064] = { - [anon_sym_RBRACE] = ACTIONS(5478), - [sym_comment] = ACTIONS(53), - }, - [2065] = { - [sym_concatenation] = STATE(2364), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2364), - [anon_sym_RBRACE] = ACTIONS(5480), - [anon_sym_EQ] = ACTIONS(5482), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5484), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5482), - [anon_sym_COLON_QMARK] = ACTIONS(5482), - [anon_sym_COLON_DASH] = ACTIONS(5482), - [anon_sym_PERCENT] = ACTIONS(5482), - [anon_sym_DASH] = ACTIONS(5482), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2066] = { - [sym__concat] = ACTIONS(2830), - [anon_sym_RBRACE] = ACTIONS(2830), - [sym_comment] = ACTIONS(53), - }, - [2067] = { - [sym_concatenation] = STATE(2367), - [sym_string] = STATE(2366), - [sym_simple_expansion] = STATE(2366), - [sym_string_expansion] = STATE(2366), - [sym_expansion] = STATE(2366), - [sym_command_substitution] = STATE(2366), - [sym_process_substitution] = STATE(2366), - [anon_sym_RBRACE] = ACTIONS(5478), - [sym__special_characters] = ACTIONS(5486), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(5488), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5488), - }, - [2068] = { - [sym__concat] = ACTIONS(2873), - [anon_sym_RBRACE] = ACTIONS(2873), - [sym_comment] = ACTIONS(53), - }, - [2069] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5490), - }, - [2070] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5492), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2071] = { - [sym__concat] = ACTIONS(2881), - [anon_sym_RBRACE] = ACTIONS(2881), - [sym_comment] = ACTIONS(53), - }, - [2072] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5494), - }, - [2073] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5496), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2074] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5498), - }, - [2075] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5478), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2076] = { - [sym_concatenation] = STATE(2374), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2374), - [anon_sym_RBRACE] = ACTIONS(5500), - [anon_sym_EQ] = ACTIONS(5502), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5504), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5502), - [anon_sym_COLON_QMARK] = ACTIONS(5502), - [anon_sym_COLON_DASH] = ACTIONS(5502), - [anon_sym_PERCENT] = ACTIONS(5502), - [anon_sym_DASH] = ACTIONS(5502), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2077] = { - [sym__concat] = ACTIONS(2897), - [anon_sym_RBRACE] = ACTIONS(2897), - [sym_comment] = ACTIONS(53), - }, - [2078] = { - [sym_concatenation] = STATE(2376), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2376), - [anon_sym_RBRACE] = ACTIONS(5506), - [anon_sym_EQ] = ACTIONS(5508), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5510), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5508), - [anon_sym_COLON_QMARK] = ACTIONS(5508), - [anon_sym_COLON_DASH] = ACTIONS(5508), - [anon_sym_PERCENT] = ACTIONS(5508), - [anon_sym_DASH] = ACTIONS(5508), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2079] = { - [sym__concat] = ACTIONS(3917), - [anon_sym_RBRACE] = ACTIONS(3917), - [anon_sym_EQ] = ACTIONS(3919), - [sym__special_characters] = ACTIONS(3919), - [anon_sym_DQUOTE] = ACTIONS(3917), - [anon_sym_DOLLAR] = ACTIONS(3919), - [sym_raw_string] = ACTIONS(3917), - [anon_sym_POUND] = ACTIONS(3917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3917), - [anon_sym_COLON] = ACTIONS(3919), - [anon_sym_COLON_QMARK] = ACTIONS(3919), - [anon_sym_COLON_DASH] = ACTIONS(3919), - [anon_sym_PERCENT] = ACTIONS(3919), - [anon_sym_DASH] = ACTIONS(3919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3917), - [anon_sym_BQUOTE] = ACTIONS(3917), - [anon_sym_LT_LPAREN] = ACTIONS(3917), - [anon_sym_GT_LPAREN] = ACTIONS(3917), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3919), - }, - [2080] = { - [sym__concat] = ACTIONS(3923), - [anon_sym_RBRACE] = ACTIONS(3923), - [anon_sym_EQ] = ACTIONS(3925), - [sym__special_characters] = ACTIONS(3925), - [anon_sym_DQUOTE] = ACTIONS(3923), - [anon_sym_DOLLAR] = ACTIONS(3925), - [sym_raw_string] = ACTIONS(3923), - [anon_sym_POUND] = ACTIONS(3923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3923), - [anon_sym_COLON] = ACTIONS(3925), - [anon_sym_COLON_QMARK] = ACTIONS(3925), - [anon_sym_COLON_DASH] = ACTIONS(3925), - [anon_sym_PERCENT] = ACTIONS(3925), - [anon_sym_DASH] = ACTIONS(3925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3923), - [anon_sym_BQUOTE] = ACTIONS(3923), - [anon_sym_LT_LPAREN] = ACTIONS(3923), - [anon_sym_GT_LPAREN] = ACTIONS(3923), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3925), - }, - [2081] = { - [sym__concat] = ACTIONS(4008), - [anon_sym_RBRACE] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4010), - [sym__special_characters] = ACTIONS(4010), - [anon_sym_DQUOTE] = ACTIONS(4008), - [anon_sym_DOLLAR] = ACTIONS(4010), - [sym_raw_string] = ACTIONS(4008), - [anon_sym_POUND] = ACTIONS(4008), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4008), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_COLON_QMARK] = ACTIONS(4010), - [anon_sym_COLON_DASH] = ACTIONS(4010), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4008), - [anon_sym_BQUOTE] = ACTIONS(4008), - [anon_sym_LT_LPAREN] = ACTIONS(4008), - [anon_sym_GT_LPAREN] = ACTIONS(4008), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4010), - }, - [2082] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5512), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2083] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5514), - [sym_comment] = ACTIONS(53), - }, - [2084] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5516), - [sym_comment] = ACTIONS(53), - }, - [2085] = { - [anon_sym_RBRACE] = ACTIONS(5516), - [sym_comment] = ACTIONS(53), - }, - [2086] = { - [sym_concatenation] = STATE(2381), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2381), - [anon_sym_RBRACE] = ACTIONS(5518), - [anon_sym_EQ] = ACTIONS(5520), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5522), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5520), - [anon_sym_COLON_QMARK] = ACTIONS(5520), - [anon_sym_COLON_DASH] = ACTIONS(5520), - [anon_sym_PERCENT] = ACTIONS(5520), - [anon_sym_DASH] = ACTIONS(5520), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2087] = { - [sym__concat] = ACTIONS(4024), - [anon_sym_RBRACE] = ACTIONS(4024), - [anon_sym_EQ] = ACTIONS(4026), - [sym__special_characters] = ACTIONS(4026), - [anon_sym_DQUOTE] = ACTIONS(4024), - [anon_sym_DOLLAR] = ACTIONS(4026), - [sym_raw_string] = ACTIONS(4024), - [anon_sym_POUND] = ACTIONS(4024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4024), - [anon_sym_COLON] = ACTIONS(4026), - [anon_sym_COLON_QMARK] = ACTIONS(4026), - [anon_sym_COLON_DASH] = ACTIONS(4026), - [anon_sym_PERCENT] = ACTIONS(4026), - [anon_sym_DASH] = ACTIONS(4026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4024), - [anon_sym_BQUOTE] = ACTIONS(4024), - [anon_sym_LT_LPAREN] = ACTIONS(4024), - [anon_sym_GT_LPAREN] = ACTIONS(4024), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4026), - }, - [2088] = { - [sym_concatenation] = STATE(2383), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2383), - [anon_sym_RBRACE] = ACTIONS(5524), - [anon_sym_EQ] = ACTIONS(5526), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5528), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5526), - [anon_sym_COLON_QMARK] = ACTIONS(5526), - [anon_sym_COLON_DASH] = ACTIONS(5526), - [anon_sym_PERCENT] = ACTIONS(5526), - [anon_sym_DASH] = ACTIONS(5526), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2089] = { - [sym__concat] = ACTIONS(4034), - [anon_sym_RBRACE] = ACTIONS(4034), - [anon_sym_EQ] = ACTIONS(4036), - [sym__special_characters] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(4034), - [anon_sym_DOLLAR] = ACTIONS(4036), - [sym_raw_string] = ACTIONS(4034), - [anon_sym_POUND] = ACTIONS(4034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4034), - [anon_sym_COLON] = ACTIONS(4036), - [anon_sym_COLON_QMARK] = ACTIONS(4036), - [anon_sym_COLON_DASH] = ACTIONS(4036), - [anon_sym_PERCENT] = ACTIONS(4036), - [anon_sym_DASH] = ACTIONS(4036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4034), - [anon_sym_BQUOTE] = ACTIONS(4034), - [anon_sym_LT_LPAREN] = ACTIONS(4034), - [anon_sym_GT_LPAREN] = ACTIONS(4034), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4036), - }, - [2090] = { - [sym_concatenation] = STATE(2385), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2385), - [anon_sym_RBRACE] = ACTIONS(5530), - [anon_sym_EQ] = ACTIONS(5532), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5534), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5532), - [anon_sym_COLON_QMARK] = ACTIONS(5532), - [anon_sym_COLON_DASH] = ACTIONS(5532), - [anon_sym_PERCENT] = ACTIONS(5532), - [anon_sym_DASH] = ACTIONS(5532), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2091] = { - [sym__concat] = ACTIONS(4044), - [anon_sym_RBRACE] = ACTIONS(4044), - [anon_sym_EQ] = ACTIONS(4046), - [sym__special_characters] = ACTIONS(4046), - [anon_sym_DQUOTE] = ACTIONS(4044), - [anon_sym_DOLLAR] = ACTIONS(4046), - [sym_raw_string] = ACTIONS(4044), - [anon_sym_POUND] = ACTIONS(4044), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4044), - [anon_sym_COLON] = ACTIONS(4046), - [anon_sym_COLON_QMARK] = ACTIONS(4046), - [anon_sym_COLON_DASH] = ACTIONS(4046), - [anon_sym_PERCENT] = ACTIONS(4046), - [anon_sym_DASH] = ACTIONS(4046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4044), - [anon_sym_BQUOTE] = ACTIONS(4044), - [anon_sym_LT_LPAREN] = ACTIONS(4044), - [anon_sym_GT_LPAREN] = ACTIONS(4044), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4046), - }, - [2092] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5536), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2093] = { - [sym__concat] = ACTIONS(4050), - [anon_sym_RBRACE] = ACTIONS(4050), - [anon_sym_EQ] = ACTIONS(4052), - [sym__special_characters] = ACTIONS(4052), - [anon_sym_DQUOTE] = ACTIONS(4050), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4050), - [anon_sym_POUND] = ACTIONS(4050), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4050), - [anon_sym_COLON] = ACTIONS(4052), - [anon_sym_COLON_QMARK] = ACTIONS(4052), - [anon_sym_COLON_DASH] = ACTIONS(4052), - [anon_sym_PERCENT] = ACTIONS(4052), - [anon_sym_DASH] = ACTIONS(4052), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4050), - [anon_sym_BQUOTE] = ACTIONS(4050), - [anon_sym_LT_LPAREN] = ACTIONS(4050), - [anon_sym_GT_LPAREN] = ACTIONS(4050), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4052), - }, - [2094] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5538), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2095] = { - [sym__simple_heredoc_body] = ACTIONS(5540), - [sym__heredoc_body_beginning] = ACTIONS(5540), - [sym_file_descriptor] = ACTIONS(5540), - [sym__concat] = ACTIONS(5540), - [anon_sym_PIPE] = ACTIONS(5542), - [anon_sym_RPAREN] = ACTIONS(5542), - [anon_sym_SEMI_SEMI] = ACTIONS(5542), - [anon_sym_PIPE_AMP] = ACTIONS(5542), - [anon_sym_AMP_AMP] = ACTIONS(5542), - [anon_sym_PIPE_PIPE] = ACTIONS(5542), - [anon_sym_EQ_TILDE] = ACTIONS(5542), - [anon_sym_EQ_EQ] = ACTIONS(5542), - [anon_sym_LT] = ACTIONS(5542), - [anon_sym_GT] = ACTIONS(5542), - [anon_sym_GT_GT] = ACTIONS(5542), - [anon_sym_AMP_GT] = ACTIONS(5542), - [anon_sym_AMP_GT_GT] = ACTIONS(5542), - [anon_sym_LT_AMP] = ACTIONS(5542), - [anon_sym_GT_AMP] = ACTIONS(5542), - [anon_sym_LT_LT] = ACTIONS(5542), - [anon_sym_LT_LT_DASH] = ACTIONS(5542), - [anon_sym_LT_LT_LT] = ACTIONS(5542), - [sym__special_characters] = ACTIONS(5542), - [anon_sym_DQUOTE] = ACTIONS(5542), - [anon_sym_DOLLAR] = ACTIONS(5542), - [sym_raw_string] = ACTIONS(5542), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5542), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5542), - [anon_sym_BQUOTE] = ACTIONS(5542), - [anon_sym_LT_LPAREN] = ACTIONS(5542), - [anon_sym_GT_LPAREN] = ACTIONS(5542), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5542), - [anon_sym_LF] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(5542), - }, - [2096] = { - [sym__simple_heredoc_body] = ACTIONS(5544), - [sym__heredoc_body_beginning] = ACTIONS(5544), - [sym_file_descriptor] = ACTIONS(5544), - [sym__concat] = ACTIONS(5544), - [anon_sym_PIPE] = ACTIONS(5546), - [anon_sym_RPAREN] = ACTIONS(5546), - [anon_sym_SEMI_SEMI] = ACTIONS(5546), - [anon_sym_PIPE_AMP] = ACTIONS(5546), - [anon_sym_AMP_AMP] = ACTIONS(5546), - [anon_sym_PIPE_PIPE] = ACTIONS(5546), - [anon_sym_EQ_TILDE] = ACTIONS(5546), - [anon_sym_EQ_EQ] = ACTIONS(5546), - [anon_sym_LT] = ACTIONS(5546), - [anon_sym_GT] = ACTIONS(5546), - [anon_sym_GT_GT] = ACTIONS(5546), - [anon_sym_AMP_GT] = ACTIONS(5546), - [anon_sym_AMP_GT_GT] = ACTIONS(5546), - [anon_sym_LT_AMP] = ACTIONS(5546), - [anon_sym_GT_AMP] = ACTIONS(5546), - [anon_sym_LT_LT] = ACTIONS(5546), - [anon_sym_LT_LT_DASH] = ACTIONS(5546), - [anon_sym_LT_LT_LT] = ACTIONS(5546), - [sym__special_characters] = ACTIONS(5546), - [anon_sym_DQUOTE] = ACTIONS(5546), - [anon_sym_DOLLAR] = ACTIONS(5546), - [sym_raw_string] = ACTIONS(5546), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5546), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5546), - [anon_sym_BQUOTE] = ACTIONS(5546), - [anon_sym_LT_LPAREN] = ACTIONS(5546), - [anon_sym_GT_LPAREN] = ACTIONS(5546), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5546), - [anon_sym_SEMI] = ACTIONS(5546), - [anon_sym_LF] = ACTIONS(5544), - [anon_sym_AMP] = ACTIONS(5546), - }, - [2097] = { - [sym__simple_heredoc_body] = ACTIONS(5548), - [sym__heredoc_body_beginning] = ACTIONS(5548), - [sym_file_descriptor] = ACTIONS(5548), - [sym__concat] = ACTIONS(5548), - [anon_sym_PIPE] = ACTIONS(5550), - [anon_sym_RPAREN] = ACTIONS(5550), - [anon_sym_SEMI_SEMI] = ACTIONS(5550), - [anon_sym_PIPE_AMP] = ACTIONS(5550), - [anon_sym_AMP_AMP] = ACTIONS(5550), - [anon_sym_PIPE_PIPE] = ACTIONS(5550), - [anon_sym_EQ_TILDE] = ACTIONS(5550), - [anon_sym_EQ_EQ] = ACTIONS(5550), - [anon_sym_LT] = ACTIONS(5550), - [anon_sym_GT] = ACTIONS(5550), - [anon_sym_GT_GT] = ACTIONS(5550), - [anon_sym_AMP_GT] = ACTIONS(5550), - [anon_sym_AMP_GT_GT] = ACTIONS(5550), - [anon_sym_LT_AMP] = ACTIONS(5550), - [anon_sym_GT_AMP] = ACTIONS(5550), - [anon_sym_LT_LT] = ACTIONS(5550), - [anon_sym_LT_LT_DASH] = ACTIONS(5550), - [anon_sym_LT_LT_LT] = ACTIONS(5550), - [sym__special_characters] = ACTIONS(5550), - [anon_sym_DQUOTE] = ACTIONS(5550), - [anon_sym_DOLLAR] = ACTIONS(5550), - [sym_raw_string] = ACTIONS(5550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5550), - [anon_sym_BQUOTE] = ACTIONS(5550), - [anon_sym_LT_LPAREN] = ACTIONS(5550), - [anon_sym_GT_LPAREN] = ACTIONS(5550), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5550), - [anon_sym_SEMI] = ACTIONS(5550), - [anon_sym_LF] = ACTIONS(5548), - [anon_sym_AMP] = ACTIONS(5550), - }, - [2098] = { - [anon_sym_PIPE] = ACTIONS(4432), - [anon_sym_RPAREN] = ACTIONS(4434), - [anon_sym_PIPE_AMP] = ACTIONS(4434), - [anon_sym_AMP_AMP] = ACTIONS(4434), - [anon_sym_PIPE_PIPE] = ACTIONS(4434), - [anon_sym_BQUOTE] = ACTIONS(4434), - [sym_comment] = ACTIONS(53), - }, - [2099] = { - [anon_sym_PIPE] = ACTIONS(3524), - [anon_sym_RPAREN] = ACTIONS(3522), - [anon_sym_PIPE_AMP] = ACTIONS(3522), - [anon_sym_AMP_AMP] = ACTIONS(3522), - [anon_sym_PIPE_PIPE] = ACTIONS(3522), - [anon_sym_BQUOTE] = ACTIONS(3522), - [sym_comment] = ACTIONS(53), - }, - [2100] = { - [anon_sym_PIPE] = ACTIONS(4438), - [anon_sym_RPAREN] = ACTIONS(4440), - [anon_sym_PIPE_AMP] = ACTIONS(4440), - [anon_sym_AMP_AMP] = ACTIONS(4440), - [anon_sym_PIPE_PIPE] = ACTIONS(4440), - [anon_sym_BQUOTE] = ACTIONS(4440), - [sym_comment] = ACTIONS(53), - }, - [2101] = { - [anon_sym_fi] = ACTIONS(5552), - [sym_comment] = ACTIONS(53), - }, - [2102] = { - [anon_sym_PIPE] = ACTIONS(4494), - [anon_sym_RPAREN] = ACTIONS(4496), - [anon_sym_PIPE_AMP] = ACTIONS(4496), - [anon_sym_AMP_AMP] = ACTIONS(4496), - [anon_sym_PIPE_PIPE] = ACTIONS(4496), - [anon_sym_BQUOTE] = ACTIONS(4496), - [sym_comment] = ACTIONS(53), - }, - [2103] = { - [anon_sym_esac] = ACTIONS(5554), - [sym_comment] = ACTIONS(53), - }, - [2104] = { - [anon_sym_PIPE] = ACTIONS(4524), - [anon_sym_RPAREN] = ACTIONS(4526), - [anon_sym_PIPE_AMP] = ACTIONS(4526), - [anon_sym_AMP_AMP] = ACTIONS(4526), - [anon_sym_PIPE_PIPE] = ACTIONS(4526), - [anon_sym_BQUOTE] = ACTIONS(4526), - [sym_comment] = ACTIONS(53), - }, - [2105] = { - [sym_case_item] = STATE(1522), - [sym_last_case_item] = STATE(2390), - [sym_concatenation] = STATE(1079), - [sym_string] = STATE(1077), - [sym_simple_expansion] = STATE(1077), - [sym_string_expansion] = STATE(1077), - [sym_expansion] = STATE(1077), - [sym_command_substitution] = STATE(1077), - [sym_process_substitution] = STATE(1077), - [aux_sym_case_statement_repeat1] = STATE(1522), - [sym__special_characters] = ACTIONS(2299), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2301), - }, - [2106] = { - [anon_sym_PIPE] = ACTIONS(4528), - [anon_sym_RPAREN] = ACTIONS(4530), - [anon_sym_PIPE_AMP] = ACTIONS(4530), - [anon_sym_AMP_AMP] = ACTIONS(4530), - [anon_sym_PIPE_PIPE] = ACTIONS(4530), - [anon_sym_BQUOTE] = ACTIONS(4530), - [sym_comment] = ACTIONS(53), - }, - [2107] = { - [anon_sym_esac] = ACTIONS(5556), - [sym_comment] = ACTIONS(53), - }, - [2108] = { - [anon_sym_PIPE] = ACTIONS(4534), - [anon_sym_RPAREN] = ACTIONS(4536), - [anon_sym_PIPE_AMP] = ACTIONS(4536), - [anon_sym_AMP_AMP] = ACTIONS(4536), - [anon_sym_PIPE_PIPE] = ACTIONS(4536), - [anon_sym_BQUOTE] = ACTIONS(4536), - [sym_comment] = ACTIONS(53), - }, - [2109] = { - [sym_case_item] = STATE(1522), - [sym_last_case_item] = STATE(2392), - [sym_concatenation] = STATE(1079), - [sym_string] = STATE(1077), - [sym_simple_expansion] = STATE(1077), - [sym_string_expansion] = STATE(1077), - [sym_expansion] = STATE(1077), - [sym_command_substitution] = STATE(1077), - [sym_process_substitution] = STATE(1077), - [aux_sym_case_statement_repeat1] = STATE(1522), - [sym__special_characters] = ACTIONS(2299), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2301), - }, - [2110] = { - [anon_sym_PIPE] = ACTIONS(4566), - [anon_sym_RPAREN] = ACTIONS(4568), - [anon_sym_PIPE_AMP] = ACTIONS(4568), - [anon_sym_AMP_AMP] = ACTIONS(4568), - [anon_sym_PIPE_PIPE] = ACTIONS(4568), - [anon_sym_BQUOTE] = ACTIONS(4568), - [sym_comment] = ACTIONS(53), - }, - [2111] = { - [aux_sym_concatenation_repeat1] = STATE(2114), - [sym__concat] = ACTIONS(1886), + [aux_sym_concatenation_repeat1] = STATE(2039), + [sym__concat] = ACTIONS(1874), [anon_sym_PIPE] = ACTIONS(1091), [anon_sym_RPAREN] = ACTIONS(1089), [anon_sym_PIPE_AMP] = ACTIONS(1089), @@ -58167,9 +53343,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(1089), [sym_comment] = ACTIONS(53), }, - [2112] = { - [aux_sym_concatenation_repeat1] = STATE(2114), - [sym__concat] = ACTIONS(1886), + [2037] = { + [aux_sym_concatenation_repeat1] = STATE(2039), + [sym__concat] = ACTIONS(1874), [anon_sym_PIPE] = ACTIONS(1095), [anon_sym_RPAREN] = ACTIONS(1093), [anon_sym_PIPE_AMP] = ACTIONS(1093), @@ -58177,7 +53353,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(1093), [sym_comment] = ACTIONS(53), }, - [2113] = { + [2038] = { [anon_sym_PIPE] = ACTIONS(1095), [anon_sym_RPAREN] = ACTIONS(1093), [anon_sym_PIPE_AMP] = ACTIONS(1093), @@ -58186,9 +53362,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1093), [sym_comment] = ACTIONS(53), }, - [2114] = { - [aux_sym_concatenation_repeat1] = STATE(2393), - [sym__concat] = ACTIONS(1886), + [2039] = { + [aux_sym_concatenation_repeat1] = STATE(2284), + [sym__concat] = ACTIONS(1874), [anon_sym_PIPE] = ACTIONS(695), [anon_sym_RPAREN] = ACTIONS(693), [anon_sym_PIPE_AMP] = ACTIONS(693), @@ -58196,10 +53372,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(693), [sym_comment] = ACTIONS(53), }, - [2115] = { - [aux_sym_concatenation_repeat1] = STATE(2119), + [2040] = { + [aux_sym_concatenation_repeat1] = STATE(2044), [sym_file_descriptor] = ACTIONS(1089), - [sym__concat] = ACTIONS(4942), + [sym__concat] = ACTIONS(4799), [anon_sym_PIPE] = ACTIONS(1091), [anon_sym_RPAREN] = ACTIONS(1089), [anon_sym_PIPE_AMP] = ACTIONS(1089), @@ -58217,10 +53393,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(1089), [sym_comment] = ACTIONS(53), }, - [2116] = { - [aux_sym_concatenation_repeat1] = STATE(2119), + [2041] = { + [aux_sym_concatenation_repeat1] = STATE(2044), [sym_file_descriptor] = ACTIONS(1093), - [sym__concat] = ACTIONS(4942), + [sym__concat] = ACTIONS(4799), [anon_sym_PIPE] = ACTIONS(1095), [anon_sym_RPAREN] = ACTIONS(1093), [anon_sym_PIPE_AMP] = ACTIONS(1093), @@ -58238,7 +53414,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(1093), [sym_comment] = ACTIONS(53), }, - [2117] = { + [2042] = { [sym_file_descriptor] = ACTIONS(1093), [anon_sym_PIPE] = ACTIONS(1095), [anon_sym_RPAREN] = ACTIONS(1093), @@ -58258,29 +53434,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1093), [sym_comment] = ACTIONS(53), }, - [2118] = { - [sym_string] = STATE(2394), - [sym_simple_expansion] = STATE(2394), - [sym_string_expansion] = STATE(2394), - [sym_expansion] = STATE(2394), - [sym_command_substitution] = STATE(2394), - [sym_process_substitution] = STATE(2394), - [sym__special_characters] = ACTIONS(5558), - [anon_sym_DQUOTE] = ACTIONS(4098), - [anon_sym_DOLLAR] = ACTIONS(4100), - [sym_raw_string] = ACTIONS(5558), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4106), - [anon_sym_BQUOTE] = ACTIONS(4108), - [anon_sym_LT_LPAREN] = ACTIONS(4110), - [anon_sym_GT_LPAREN] = ACTIONS(4110), + [2043] = { + [sym_string] = STATE(2285), + [sym_simple_expansion] = STATE(2285), + [sym_string_expansion] = STATE(2285), + [sym_expansion] = STATE(2285), + [sym_command_substitution] = STATE(2285), + [sym_process_substitution] = STATE(2285), + [sym__special_characters] = ACTIONS(5343), + [anon_sym_DQUOTE] = ACTIONS(4010), + [anon_sym_DOLLAR] = ACTIONS(4012), + [sym_raw_string] = ACTIONS(5343), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4016), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4018), + [anon_sym_BQUOTE] = ACTIONS(4020), + [anon_sym_LT_LPAREN] = ACTIONS(4022), + [anon_sym_GT_LPAREN] = ACTIONS(4022), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5558), + [sym_word] = ACTIONS(5343), }, - [2119] = { - [aux_sym_concatenation_repeat1] = STATE(2395), + [2044] = { + [aux_sym_concatenation_repeat1] = STATE(2286), [sym_file_descriptor] = ACTIONS(693), - [sym__concat] = ACTIONS(4942), + [sym__concat] = ACTIONS(4799), [anon_sym_PIPE] = ACTIONS(695), [anon_sym_RPAREN] = ACTIONS(693), [anon_sym_PIPE_AMP] = ACTIONS(693), @@ -58298,7 +53474,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(693), [sym_comment] = ACTIONS(53), }, - [2120] = { + [2045] = { [sym_file_descriptor] = ACTIONS(697), [sym__concat] = ACTIONS(697), [anon_sym_PIPE] = ACTIONS(699), @@ -58319,12 +53495,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(697), [sym_comment] = ACTIONS(53), }, - [2121] = { + [2046] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(5560), + [anon_sym_DQUOTE] = ACTIONS(5345), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -58332,7 +53508,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(237), [sym_comment] = ACTIONS(177), }, - [2122] = { + [2047] = { [sym_file_descriptor] = ACTIONS(727), [sym__concat] = ACTIONS(727), [anon_sym_PIPE] = ACTIONS(729), @@ -58353,7 +53529,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(727), [sym_comment] = ACTIONS(53), }, - [2123] = { + [2048] = { [sym_file_descriptor] = ACTIONS(731), [sym__concat] = ACTIONS(731), [anon_sym_PIPE] = ACTIONS(733), @@ -58374,7 +53550,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(731), [sym_comment] = ACTIONS(53), }, - [2124] = { + [2049] = { [sym_file_descriptor] = ACTIONS(735), [sym__concat] = ACTIONS(735), [anon_sym_PIPE] = ACTIONS(737), @@ -58395,34 +53571,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(735), [sym_comment] = ACTIONS(53), }, - [2125] = { + [2050] = { [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(5562), + [anon_sym_EQ] = ACTIONS(5347), [sym_comment] = ACTIONS(53), }, - [2126] = { - [sym_concatenation] = STATE(2400), + [2051] = { + [sym_concatenation] = STATE(2291), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2400), - [anon_sym_RBRACE] = ACTIONS(5564), - [anon_sym_EQ] = ACTIONS(5566), + [aux_sym_expansion_repeat1] = STATE(2291), + [anon_sym_RBRACE] = ACTIONS(5349), + [anon_sym_EQ] = ACTIONS(5351), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5568), + [anon_sym_POUND] = ACTIONS(5353), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(5570), - [anon_sym_COLON] = ACTIONS(5566), - [anon_sym_COLON_QMARK] = ACTIONS(5566), - [anon_sym_COLON_DASH] = ACTIONS(5566), - [anon_sym_PERCENT] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), + [aux_sym_SLASH] = ACTIONS(5355), + [anon_sym_COLON] = ACTIONS(5351), + [anon_sym_COLON_QMARK] = ACTIONS(5351), + [anon_sym_COLON_DASH] = ACTIONS(5351), + [anon_sym_PERCENT] = ACTIONS(5351), + [anon_sym_DASH] = ACTIONS(5351), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -58430,42 +53606,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2127] = { - [sym_subscript] = STATE(2404), - [sym_variable_name] = ACTIONS(5572), - [anon_sym_DOLLAR] = ACTIONS(5574), - [anon_sym_DASH] = ACTIONS(5574), + [2052] = { + [sym_subscript] = STATE(2295), + [sym_variable_name] = ACTIONS(5357), + [anon_sym_DOLLAR] = ACTIONS(5359), + [anon_sym_DASH] = ACTIONS(5359), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5576), - [anon_sym_STAR] = ACTIONS(5574), - [anon_sym_AT] = ACTIONS(5574), - [anon_sym_QMARK] = ACTIONS(5574), - [anon_sym_0] = ACTIONS(5578), - [anon_sym__] = ACTIONS(5578), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5361), + [anon_sym_STAR] = ACTIONS(5359), + [anon_sym_AT] = ACTIONS(5359), + [anon_sym_QMARK] = ACTIONS(5359), + [anon_sym_0] = ACTIONS(5363), + [anon_sym__] = ACTIONS(5363), }, - [2128] = { - [sym_concatenation] = STATE(2407), + [2053] = { + [sym_concatenation] = STATE(2298), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2407), - [anon_sym_RBRACE] = ACTIONS(5580), - [anon_sym_EQ] = ACTIONS(5582), + [aux_sym_expansion_repeat1] = STATE(2298), + [anon_sym_RBRACE] = ACTIONS(5365), + [anon_sym_EQ] = ACTIONS(5367), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5584), + [anon_sym_POUND] = ACTIONS(5369), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(5586), - [anon_sym_COLON] = ACTIONS(5582), - [anon_sym_COLON_QMARK] = ACTIONS(5582), - [anon_sym_COLON_DASH] = ACTIONS(5582), - [anon_sym_PERCENT] = ACTIONS(5582), - [anon_sym_DASH] = ACTIONS(5582), + [aux_sym_SLASH] = ACTIONS(5371), + [anon_sym_COLON] = ACTIONS(5367), + [anon_sym_COLON_QMARK] = ACTIONS(5367), + [anon_sym_COLON_DASH] = ACTIONS(5367), + [anon_sym_PERCENT] = ACTIONS(5367), + [anon_sym_DASH] = ACTIONS(5367), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -58473,29 +53649,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2129] = { - [sym_concatenation] = STATE(2410), + [2054] = { + [sym_concatenation] = STATE(2301), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2410), - [anon_sym_RBRACE] = ACTIONS(5588), - [anon_sym_EQ] = ACTIONS(5590), + [aux_sym_expansion_repeat1] = STATE(2301), + [anon_sym_RBRACE] = ACTIONS(5373), + [anon_sym_EQ] = ACTIONS(5375), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5592), + [anon_sym_POUND] = ACTIONS(5377), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(5594), - [anon_sym_COLON] = ACTIONS(5590), - [anon_sym_COLON_QMARK] = ACTIONS(5590), - [anon_sym_COLON_DASH] = ACTIONS(5590), - [anon_sym_PERCENT] = ACTIONS(5590), - [anon_sym_DASH] = ACTIONS(5590), + [aux_sym_SLASH] = ACTIONS(5379), + [anon_sym_COLON] = ACTIONS(5375), + [anon_sym_COLON_QMARK] = ACTIONS(5375), + [anon_sym_COLON_DASH] = ACTIONS(5375), + [anon_sym_PERCENT] = ACTIONS(5375), + [anon_sym_DASH] = ACTIONS(5375), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -58503,19 +53679,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2130] = { + [2055] = { [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(5596), + [anon_sym_RPAREN] = ACTIONS(5381), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), [sym_comment] = ACTIONS(53), }, - [2131] = { + [2056] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(5596), + [anon_sym_RPAREN] = ACTIONS(5381), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -58538,15 +53714,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(369), }, - [2132] = { + [2057] = { [anon_sym_PIPE] = ACTIONS(923), [anon_sym_PIPE_AMP] = ACTIONS(925), [anon_sym_AMP_AMP] = ACTIONS(927), [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_BQUOTE] = ACTIONS(5596), + [anon_sym_BQUOTE] = ACTIONS(5381), [sym_comment] = ACTIONS(53), }, - [2133] = { + [2058] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(923), @@ -58566,25 +53742,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(369), [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(5596), + [anon_sym_BQUOTE] = ACTIONS(5381), [anon_sym_LT_LPAREN] = ACTIONS(369), [anon_sym_GT_LPAREN] = ACTIONS(369), [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(369), }, - [2134] = { + [2059] = { [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(5598), + [anon_sym_RPAREN] = ACTIONS(5383), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), [sym_comment] = ACTIONS(53), }, - [2135] = { + [2060] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(5598), + [anon_sym_RPAREN] = ACTIONS(5383), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -58607,111 +53783,111 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(369), }, - [2136] = { - [sym_variable_name] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3381), - [anon_sym_RPAREN] = ACTIONS(3379), - [anon_sym_PIPE_AMP] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3379), - [anon_sym_PIPE_PIPE] = ACTIONS(3379), - [sym__special_characters] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [anon_sym_DOLLAR] = ACTIONS(3381), - [sym_raw_string] = ACTIONS(3379), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3379), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3379), - [anon_sym_BQUOTE] = ACTIONS(3379), - [anon_sym_LT_LPAREN] = ACTIONS(3379), - [anon_sym_GT_LPAREN] = ACTIONS(3379), + [2061] = { + [sym_variable_name] = ACTIONS(3337), + [anon_sym_PIPE] = ACTIONS(3339), + [anon_sym_RPAREN] = ACTIONS(3337), + [anon_sym_PIPE_AMP] = ACTIONS(3337), + [anon_sym_AMP_AMP] = ACTIONS(3337), + [anon_sym_PIPE_PIPE] = ACTIONS(3337), + [sym__special_characters] = ACTIONS(3337), + [anon_sym_DQUOTE] = ACTIONS(3337), + [anon_sym_DOLLAR] = ACTIONS(3339), + [sym_raw_string] = ACTIONS(3337), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3337), + [anon_sym_BQUOTE] = ACTIONS(3337), + [anon_sym_LT_LPAREN] = ACTIONS(3337), + [anon_sym_GT_LPAREN] = ACTIONS(3337), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3381), - [sym_word] = ACTIONS(3381), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3339), + [sym_word] = ACTIONS(3339), }, - [2137] = { - [sym__concat] = ACTIONS(3917), - [sym_variable_name] = ACTIONS(3917), - [anon_sym_PIPE] = ACTIONS(3919), - [anon_sym_RPAREN] = ACTIONS(3917), - [anon_sym_PIPE_AMP] = ACTIONS(3917), - [anon_sym_AMP_AMP] = ACTIONS(3917), - [anon_sym_PIPE_PIPE] = ACTIONS(3917), - [sym__special_characters] = ACTIONS(3917), - [anon_sym_DQUOTE] = ACTIONS(3917), - [anon_sym_DOLLAR] = ACTIONS(3919), - [sym_raw_string] = ACTIONS(3917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3917), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3917), - [anon_sym_BQUOTE] = ACTIONS(3917), - [anon_sym_LT_LPAREN] = ACTIONS(3917), - [anon_sym_GT_LPAREN] = ACTIONS(3917), + [2062] = { + [sym__concat] = ACTIONS(3829), + [sym_variable_name] = ACTIONS(3829), + [anon_sym_PIPE] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(3829), + [anon_sym_PIPE_AMP] = ACTIONS(3829), + [anon_sym_AMP_AMP] = ACTIONS(3829), + [anon_sym_PIPE_PIPE] = ACTIONS(3829), + [sym__special_characters] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(3829), + [anon_sym_DOLLAR] = ACTIONS(3831), + [sym_raw_string] = ACTIONS(3829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3829), + [anon_sym_BQUOTE] = ACTIONS(3829), + [anon_sym_LT_LPAREN] = ACTIONS(3829), + [anon_sym_GT_LPAREN] = ACTIONS(3829), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3919), - [sym_word] = ACTIONS(3919), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3831), + [sym_word] = ACTIONS(3831), }, - [2138] = { - [sym__concat] = ACTIONS(3923), - [sym_variable_name] = ACTIONS(3923), - [anon_sym_PIPE] = ACTIONS(3925), - [anon_sym_RPAREN] = ACTIONS(3923), - [anon_sym_PIPE_AMP] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3923), - [anon_sym_PIPE_PIPE] = ACTIONS(3923), - [sym__special_characters] = ACTIONS(3923), - [anon_sym_DQUOTE] = ACTIONS(3923), - [anon_sym_DOLLAR] = ACTIONS(3925), - [sym_raw_string] = ACTIONS(3923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3923), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3923), - [anon_sym_BQUOTE] = ACTIONS(3923), - [anon_sym_LT_LPAREN] = ACTIONS(3923), - [anon_sym_GT_LPAREN] = ACTIONS(3923), + [2063] = { + [sym__concat] = ACTIONS(3835), + [sym_variable_name] = ACTIONS(3835), + [anon_sym_PIPE] = ACTIONS(3837), + [anon_sym_RPAREN] = ACTIONS(3835), + [anon_sym_PIPE_AMP] = ACTIONS(3835), + [anon_sym_AMP_AMP] = ACTIONS(3835), + [anon_sym_PIPE_PIPE] = ACTIONS(3835), + [sym__special_characters] = ACTIONS(3835), + [anon_sym_DQUOTE] = ACTIONS(3835), + [anon_sym_DOLLAR] = ACTIONS(3837), + [sym_raw_string] = ACTIONS(3835), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3835), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3835), + [anon_sym_BQUOTE] = ACTIONS(3835), + [anon_sym_LT_LPAREN] = ACTIONS(3835), + [anon_sym_GT_LPAREN] = ACTIONS(3835), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3925), - [sym_word] = ACTIONS(3925), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3837), + [sym_word] = ACTIONS(3837), }, - [2139] = { - [sym__concat] = ACTIONS(4008), - [sym_variable_name] = ACTIONS(4008), - [anon_sym_PIPE] = ACTIONS(4010), - [anon_sym_RPAREN] = ACTIONS(4008), - [anon_sym_PIPE_AMP] = ACTIONS(4008), - [anon_sym_AMP_AMP] = ACTIONS(4008), - [anon_sym_PIPE_PIPE] = ACTIONS(4008), - [sym__special_characters] = ACTIONS(4008), - [anon_sym_DQUOTE] = ACTIONS(4008), - [anon_sym_DOLLAR] = ACTIONS(4010), - [sym_raw_string] = ACTIONS(4008), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4008), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4008), - [anon_sym_BQUOTE] = ACTIONS(4008), - [anon_sym_LT_LPAREN] = ACTIONS(4008), - [anon_sym_GT_LPAREN] = ACTIONS(4008), + [2064] = { + [sym__concat] = ACTIONS(3920), + [sym_variable_name] = ACTIONS(3920), + [anon_sym_PIPE] = ACTIONS(3922), + [anon_sym_RPAREN] = ACTIONS(3920), + [anon_sym_PIPE_AMP] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3920), + [anon_sym_PIPE_PIPE] = ACTIONS(3920), + [sym__special_characters] = ACTIONS(3920), + [anon_sym_DQUOTE] = ACTIONS(3920), + [anon_sym_DOLLAR] = ACTIONS(3922), + [sym_raw_string] = ACTIONS(3920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3920), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3920), + [anon_sym_BQUOTE] = ACTIONS(3920), + [anon_sym_LT_LPAREN] = ACTIONS(3920), + [anon_sym_GT_LPAREN] = ACTIONS(3920), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4010), - [sym_word] = ACTIONS(4010), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3922), + [sym_word] = ACTIONS(3922), }, - [2140] = { - [sym_concatenation] = STATE(839), + [2065] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5600), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5385), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -58719,44 +53895,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2141] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5602), + [2066] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(5387), [sym_comment] = ACTIONS(53), }, - [2142] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5604), + [2067] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(5389), [sym_comment] = ACTIONS(53), }, - [2143] = { - [anon_sym_RBRACE] = ACTIONS(5604), + [2068] = { + [anon_sym_RBRACE] = ACTIONS(5389), [sym_comment] = ACTIONS(53), }, - [2144] = { - [sym_concatenation] = STATE(2417), + [2069] = { + [sym_concatenation] = STATE(2308), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2417), - [anon_sym_RBRACE] = ACTIONS(5606), - [anon_sym_EQ] = ACTIONS(5608), + [aux_sym_expansion_repeat1] = STATE(2308), + [anon_sym_RBRACE] = ACTIONS(5391), + [anon_sym_EQ] = ACTIONS(5393), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5610), + [anon_sym_POUND] = ACTIONS(5395), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_COLON_QMARK] = ACTIONS(5608), - [anon_sym_COLON_DASH] = ACTIONS(5608), - [anon_sym_PERCENT] = ACTIONS(5608), - [anon_sym_DASH] = ACTIONS(5608), + [anon_sym_COLON] = ACTIONS(5393), + [anon_sym_COLON_QMARK] = ACTIONS(5393), + [anon_sym_COLON_DASH] = ACTIONS(5393), + [anon_sym_PERCENT] = ACTIONS(5393), + [anon_sym_DASH] = ACTIONS(5393), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -58764,49 +53940,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2145] = { - [sym__concat] = ACTIONS(4024), - [sym_variable_name] = ACTIONS(4024), - [anon_sym_PIPE] = ACTIONS(4026), - [anon_sym_RPAREN] = ACTIONS(4024), - [anon_sym_PIPE_AMP] = ACTIONS(4024), - [anon_sym_AMP_AMP] = ACTIONS(4024), - [anon_sym_PIPE_PIPE] = ACTIONS(4024), - [sym__special_characters] = ACTIONS(4024), - [anon_sym_DQUOTE] = ACTIONS(4024), - [anon_sym_DOLLAR] = ACTIONS(4026), - [sym_raw_string] = ACTIONS(4024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4024), - [anon_sym_BQUOTE] = ACTIONS(4024), - [anon_sym_LT_LPAREN] = ACTIONS(4024), - [anon_sym_GT_LPAREN] = ACTIONS(4024), + [2070] = { + [sym__concat] = ACTIONS(3936), + [sym_variable_name] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_RPAREN] = ACTIONS(3936), + [anon_sym_PIPE_AMP] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [sym__special_characters] = ACTIONS(3936), + [anon_sym_DQUOTE] = ACTIONS(3936), + [anon_sym_DOLLAR] = ACTIONS(3938), + [sym_raw_string] = ACTIONS(3936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(3936), + [anon_sym_LT_LPAREN] = ACTIONS(3936), + [anon_sym_GT_LPAREN] = ACTIONS(3936), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4026), - [sym_word] = ACTIONS(4026), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3938), + [sym_word] = ACTIONS(3938), }, - [2146] = { - [sym_concatenation] = STATE(2419), + [2071] = { + [sym_concatenation] = STATE(2310), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2419), - [anon_sym_RBRACE] = ACTIONS(5612), - [anon_sym_EQ] = ACTIONS(5614), + [aux_sym_expansion_repeat1] = STATE(2310), + [anon_sym_RBRACE] = ACTIONS(5397), + [anon_sym_EQ] = ACTIONS(5399), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5616), + [anon_sym_POUND] = ACTIONS(5401), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5614), - [anon_sym_COLON_QMARK] = ACTIONS(5614), - [anon_sym_COLON_DASH] = ACTIONS(5614), - [anon_sym_PERCENT] = ACTIONS(5614), - [anon_sym_DASH] = ACTIONS(5614), + [anon_sym_COLON] = ACTIONS(5399), + [anon_sym_COLON_QMARK] = ACTIONS(5399), + [anon_sym_COLON_DASH] = ACTIONS(5399), + [anon_sym_PERCENT] = ACTIONS(5399), + [anon_sym_DASH] = ACTIONS(5399), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -58814,49 +53990,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2147] = { - [sym__concat] = ACTIONS(4034), - [sym_variable_name] = ACTIONS(4034), - [anon_sym_PIPE] = ACTIONS(4036), - [anon_sym_RPAREN] = ACTIONS(4034), - [anon_sym_PIPE_AMP] = ACTIONS(4034), - [anon_sym_AMP_AMP] = ACTIONS(4034), - [anon_sym_PIPE_PIPE] = ACTIONS(4034), - [sym__special_characters] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4034), - [anon_sym_DOLLAR] = ACTIONS(4036), - [sym_raw_string] = ACTIONS(4034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4034), - [anon_sym_BQUOTE] = ACTIONS(4034), - [anon_sym_LT_LPAREN] = ACTIONS(4034), - [anon_sym_GT_LPAREN] = ACTIONS(4034), + [2072] = { + [sym__concat] = ACTIONS(3946), + [sym_variable_name] = ACTIONS(3946), + [anon_sym_PIPE] = ACTIONS(3948), + [anon_sym_RPAREN] = ACTIONS(3946), + [anon_sym_PIPE_AMP] = ACTIONS(3946), + [anon_sym_AMP_AMP] = ACTIONS(3946), + [anon_sym_PIPE_PIPE] = ACTIONS(3946), + [sym__special_characters] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(3946), + [anon_sym_DOLLAR] = ACTIONS(3948), + [sym_raw_string] = ACTIONS(3946), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3946), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3946), + [anon_sym_BQUOTE] = ACTIONS(3946), + [anon_sym_LT_LPAREN] = ACTIONS(3946), + [anon_sym_GT_LPAREN] = ACTIONS(3946), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4036), - [sym_word] = ACTIONS(4036), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3948), + [sym_word] = ACTIONS(3948), }, - [2148] = { - [sym_concatenation] = STATE(2421), + [2073] = { + [sym_concatenation] = STATE(2312), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2421), - [anon_sym_RBRACE] = ACTIONS(5618), - [anon_sym_EQ] = ACTIONS(5620), + [aux_sym_expansion_repeat1] = STATE(2312), + [anon_sym_RBRACE] = ACTIONS(5403), + [anon_sym_EQ] = ACTIONS(5405), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5622), + [anon_sym_POUND] = ACTIONS(5407), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5620), - [anon_sym_COLON_QMARK] = ACTIONS(5620), - [anon_sym_COLON_DASH] = ACTIONS(5620), - [anon_sym_PERCENT] = ACTIONS(5620), - [anon_sym_DASH] = ACTIONS(5620), + [anon_sym_COLON] = ACTIONS(5405), + [anon_sym_COLON_QMARK] = ACTIONS(5405), + [anon_sym_COLON_DASH] = ACTIONS(5405), + [anon_sym_PERCENT] = ACTIONS(5405), + [anon_sym_DASH] = ACTIONS(5405), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -58864,49 +54040,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2149] = { - [sym__concat] = ACTIONS(4044), - [sym_variable_name] = ACTIONS(4044), - [anon_sym_PIPE] = ACTIONS(4046), - [anon_sym_RPAREN] = ACTIONS(4044), - [anon_sym_PIPE_AMP] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_PIPE_PIPE] = ACTIONS(4044), - [sym__special_characters] = ACTIONS(4044), - [anon_sym_DQUOTE] = ACTIONS(4044), - [anon_sym_DOLLAR] = ACTIONS(4046), - [sym_raw_string] = ACTIONS(4044), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4044), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4044), - [anon_sym_BQUOTE] = ACTIONS(4044), - [anon_sym_LT_LPAREN] = ACTIONS(4044), - [anon_sym_GT_LPAREN] = ACTIONS(4044), + [2074] = { + [sym__concat] = ACTIONS(3956), + [sym_variable_name] = ACTIONS(3956), + [anon_sym_PIPE] = ACTIONS(3958), + [anon_sym_RPAREN] = ACTIONS(3956), + [anon_sym_PIPE_AMP] = ACTIONS(3956), + [anon_sym_AMP_AMP] = ACTIONS(3956), + [anon_sym_PIPE_PIPE] = ACTIONS(3956), + [sym__special_characters] = ACTIONS(3956), + [anon_sym_DQUOTE] = ACTIONS(3956), + [anon_sym_DOLLAR] = ACTIONS(3958), + [sym_raw_string] = ACTIONS(3956), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3956), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3956), + [anon_sym_BQUOTE] = ACTIONS(3956), + [anon_sym_LT_LPAREN] = ACTIONS(3956), + [anon_sym_GT_LPAREN] = ACTIONS(3956), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4046), - [sym_word] = ACTIONS(4046), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3958), + [sym_word] = ACTIONS(3958), }, - [2150] = { - [sym_concatenation] = STATE(839), + [2075] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5624), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5409), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -58914,49 +54090,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2151] = { - [sym__concat] = ACTIONS(4050), - [sym_variable_name] = ACTIONS(4050), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_RPAREN] = ACTIONS(4050), - [anon_sym_PIPE_AMP] = ACTIONS(4050), - [anon_sym_AMP_AMP] = ACTIONS(4050), - [anon_sym_PIPE_PIPE] = ACTIONS(4050), - [sym__special_characters] = ACTIONS(4050), - [anon_sym_DQUOTE] = ACTIONS(4050), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4050), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4050), - [anon_sym_BQUOTE] = ACTIONS(4050), - [anon_sym_LT_LPAREN] = ACTIONS(4050), - [anon_sym_GT_LPAREN] = ACTIONS(4050), + [2076] = { + [sym__concat] = ACTIONS(3962), + [sym_variable_name] = ACTIONS(3962), + [anon_sym_PIPE] = ACTIONS(3964), + [anon_sym_RPAREN] = ACTIONS(3962), + [anon_sym_PIPE_AMP] = ACTIONS(3962), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3962), + [sym__special_characters] = ACTIONS(3962), + [anon_sym_DQUOTE] = ACTIONS(3962), + [anon_sym_DOLLAR] = ACTIONS(3964), + [sym_raw_string] = ACTIONS(3962), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3962), + [anon_sym_BQUOTE] = ACTIONS(3962), + [anon_sym_LT_LPAREN] = ACTIONS(3962), + [anon_sym_GT_LPAREN] = ACTIONS(3962), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4052), - [sym_word] = ACTIONS(4052), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3964), + [sym_word] = ACTIONS(3964), }, - [2152] = { - [sym_concatenation] = STATE(839), + [2077] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5626), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5411), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -58964,88 +54140,88 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2153] = { - [sym__concat] = ACTIONS(3917), - [anon_sym_PIPE] = ACTIONS(3919), - [anon_sym_RPAREN] = ACTIONS(3917), - [anon_sym_PIPE_AMP] = ACTIONS(3917), - [anon_sym_AMP_AMP] = ACTIONS(3917), - [anon_sym_PIPE_PIPE] = ACTIONS(3917), - [sym__special_characters] = ACTIONS(3917), - [anon_sym_DQUOTE] = ACTIONS(3917), - [anon_sym_DOLLAR] = ACTIONS(3919), - [sym_raw_string] = ACTIONS(3917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3917), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3917), - [anon_sym_BQUOTE] = ACTIONS(3917), - [anon_sym_LT_LPAREN] = ACTIONS(3917), - [anon_sym_GT_LPAREN] = ACTIONS(3917), + [2078] = { + [sym__concat] = ACTIONS(3829), + [anon_sym_PIPE] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(3829), + [anon_sym_PIPE_AMP] = ACTIONS(3829), + [anon_sym_AMP_AMP] = ACTIONS(3829), + [anon_sym_PIPE_PIPE] = ACTIONS(3829), + [sym__special_characters] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(3829), + [anon_sym_DOLLAR] = ACTIONS(3831), + [sym_raw_string] = ACTIONS(3829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3829), + [anon_sym_BQUOTE] = ACTIONS(3829), + [anon_sym_LT_LPAREN] = ACTIONS(3829), + [anon_sym_GT_LPAREN] = ACTIONS(3829), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3919), - [sym_word] = ACTIONS(3919), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3831), + [sym_word] = ACTIONS(3831), }, - [2154] = { - [sym__concat] = ACTIONS(3923), - [anon_sym_PIPE] = ACTIONS(3925), - [anon_sym_RPAREN] = ACTIONS(3923), - [anon_sym_PIPE_AMP] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3923), - [anon_sym_PIPE_PIPE] = ACTIONS(3923), - [sym__special_characters] = ACTIONS(3923), - [anon_sym_DQUOTE] = ACTIONS(3923), - [anon_sym_DOLLAR] = ACTIONS(3925), - [sym_raw_string] = ACTIONS(3923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3923), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3923), - [anon_sym_BQUOTE] = ACTIONS(3923), - [anon_sym_LT_LPAREN] = ACTIONS(3923), - [anon_sym_GT_LPAREN] = ACTIONS(3923), + [2079] = { + [sym__concat] = ACTIONS(3835), + [anon_sym_PIPE] = ACTIONS(3837), + [anon_sym_RPAREN] = ACTIONS(3835), + [anon_sym_PIPE_AMP] = ACTIONS(3835), + [anon_sym_AMP_AMP] = ACTIONS(3835), + [anon_sym_PIPE_PIPE] = ACTIONS(3835), + [sym__special_characters] = ACTIONS(3835), + [anon_sym_DQUOTE] = ACTIONS(3835), + [anon_sym_DOLLAR] = ACTIONS(3837), + [sym_raw_string] = ACTIONS(3835), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3835), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3835), + [anon_sym_BQUOTE] = ACTIONS(3835), + [anon_sym_LT_LPAREN] = ACTIONS(3835), + [anon_sym_GT_LPAREN] = ACTIONS(3835), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3925), - [sym_word] = ACTIONS(3925), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3837), + [sym_word] = ACTIONS(3837), }, - [2155] = { - [sym__concat] = ACTIONS(4008), - [anon_sym_PIPE] = ACTIONS(4010), - [anon_sym_RPAREN] = ACTIONS(4008), - [anon_sym_PIPE_AMP] = ACTIONS(4008), - [anon_sym_AMP_AMP] = ACTIONS(4008), - [anon_sym_PIPE_PIPE] = ACTIONS(4008), - [sym__special_characters] = ACTIONS(4008), - [anon_sym_DQUOTE] = ACTIONS(4008), - [anon_sym_DOLLAR] = ACTIONS(4010), - [sym_raw_string] = ACTIONS(4008), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4008), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4008), - [anon_sym_BQUOTE] = ACTIONS(4008), - [anon_sym_LT_LPAREN] = ACTIONS(4008), - [anon_sym_GT_LPAREN] = ACTIONS(4008), + [2080] = { + [sym__concat] = ACTIONS(3920), + [anon_sym_PIPE] = ACTIONS(3922), + [anon_sym_RPAREN] = ACTIONS(3920), + [anon_sym_PIPE_AMP] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3920), + [anon_sym_PIPE_PIPE] = ACTIONS(3920), + [sym__special_characters] = ACTIONS(3920), + [anon_sym_DQUOTE] = ACTIONS(3920), + [anon_sym_DOLLAR] = ACTIONS(3922), + [sym_raw_string] = ACTIONS(3920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3920), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3920), + [anon_sym_BQUOTE] = ACTIONS(3920), + [anon_sym_LT_LPAREN] = ACTIONS(3920), + [anon_sym_GT_LPAREN] = ACTIONS(3920), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4010), - [sym_word] = ACTIONS(4010), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3922), + [sym_word] = ACTIONS(3922), }, - [2156] = { - [sym_concatenation] = STATE(839), + [2081] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5628), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5413), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -59053,44 +54229,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2157] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5630), + [2082] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(5415), [sym_comment] = ACTIONS(53), }, - [2158] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5632), + [2083] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(5417), [sym_comment] = ACTIONS(53), }, - [2159] = { - [anon_sym_RBRACE] = ACTIONS(5632), + [2084] = { + [anon_sym_RBRACE] = ACTIONS(5417), [sym_comment] = ACTIONS(53), }, - [2160] = { - [sym_concatenation] = STATE(2428), + [2085] = { + [sym_concatenation] = STATE(2319), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2428), - [anon_sym_RBRACE] = ACTIONS(5634), - [anon_sym_EQ] = ACTIONS(5636), + [aux_sym_expansion_repeat1] = STATE(2319), + [anon_sym_RBRACE] = ACTIONS(5419), + [anon_sym_EQ] = ACTIONS(5421), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5638), + [anon_sym_POUND] = ACTIONS(5423), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5636), - [anon_sym_COLON_QMARK] = ACTIONS(5636), - [anon_sym_COLON_DASH] = ACTIONS(5636), - [anon_sym_PERCENT] = ACTIONS(5636), - [anon_sym_DASH] = ACTIONS(5636), + [anon_sym_COLON] = ACTIONS(5421), + [anon_sym_COLON_QMARK] = ACTIONS(5421), + [anon_sym_COLON_DASH] = ACTIONS(5421), + [anon_sym_PERCENT] = ACTIONS(5421), + [anon_sym_DASH] = ACTIONS(5421), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -59098,48 +54274,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2161] = { - [sym__concat] = ACTIONS(4024), - [anon_sym_PIPE] = ACTIONS(4026), - [anon_sym_RPAREN] = ACTIONS(4024), - [anon_sym_PIPE_AMP] = ACTIONS(4024), - [anon_sym_AMP_AMP] = ACTIONS(4024), - [anon_sym_PIPE_PIPE] = ACTIONS(4024), - [sym__special_characters] = ACTIONS(4024), - [anon_sym_DQUOTE] = ACTIONS(4024), - [anon_sym_DOLLAR] = ACTIONS(4026), - [sym_raw_string] = ACTIONS(4024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4024), - [anon_sym_BQUOTE] = ACTIONS(4024), - [anon_sym_LT_LPAREN] = ACTIONS(4024), - [anon_sym_GT_LPAREN] = ACTIONS(4024), + [2086] = { + [sym__concat] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_RPAREN] = ACTIONS(3936), + [anon_sym_PIPE_AMP] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [sym__special_characters] = ACTIONS(3936), + [anon_sym_DQUOTE] = ACTIONS(3936), + [anon_sym_DOLLAR] = ACTIONS(3938), + [sym_raw_string] = ACTIONS(3936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(3936), + [anon_sym_LT_LPAREN] = ACTIONS(3936), + [anon_sym_GT_LPAREN] = ACTIONS(3936), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4026), - [sym_word] = ACTIONS(4026), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3938), + [sym_word] = ACTIONS(3938), }, - [2162] = { - [sym_concatenation] = STATE(2430), + [2087] = { + [sym_concatenation] = STATE(2321), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2430), - [anon_sym_RBRACE] = ACTIONS(5640), - [anon_sym_EQ] = ACTIONS(5642), + [aux_sym_expansion_repeat1] = STATE(2321), + [anon_sym_RBRACE] = ACTIONS(5425), + [anon_sym_EQ] = ACTIONS(5427), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5644), + [anon_sym_POUND] = ACTIONS(5429), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5642), - [anon_sym_COLON_QMARK] = ACTIONS(5642), - [anon_sym_COLON_DASH] = ACTIONS(5642), - [anon_sym_PERCENT] = ACTIONS(5642), - [anon_sym_DASH] = ACTIONS(5642), + [anon_sym_COLON] = ACTIONS(5427), + [anon_sym_COLON_QMARK] = ACTIONS(5427), + [anon_sym_COLON_DASH] = ACTIONS(5427), + [anon_sym_PERCENT] = ACTIONS(5427), + [anon_sym_DASH] = ACTIONS(5427), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -59147,48 +54323,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2163] = { - [sym__concat] = ACTIONS(4034), - [anon_sym_PIPE] = ACTIONS(4036), - [anon_sym_RPAREN] = ACTIONS(4034), - [anon_sym_PIPE_AMP] = ACTIONS(4034), - [anon_sym_AMP_AMP] = ACTIONS(4034), - [anon_sym_PIPE_PIPE] = ACTIONS(4034), - [sym__special_characters] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4034), - [anon_sym_DOLLAR] = ACTIONS(4036), - [sym_raw_string] = ACTIONS(4034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4034), - [anon_sym_BQUOTE] = ACTIONS(4034), - [anon_sym_LT_LPAREN] = ACTIONS(4034), - [anon_sym_GT_LPAREN] = ACTIONS(4034), + [2088] = { + [sym__concat] = ACTIONS(3946), + [anon_sym_PIPE] = ACTIONS(3948), + [anon_sym_RPAREN] = ACTIONS(3946), + [anon_sym_PIPE_AMP] = ACTIONS(3946), + [anon_sym_AMP_AMP] = ACTIONS(3946), + [anon_sym_PIPE_PIPE] = ACTIONS(3946), + [sym__special_characters] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(3946), + [anon_sym_DOLLAR] = ACTIONS(3948), + [sym_raw_string] = ACTIONS(3946), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3946), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3946), + [anon_sym_BQUOTE] = ACTIONS(3946), + [anon_sym_LT_LPAREN] = ACTIONS(3946), + [anon_sym_GT_LPAREN] = ACTIONS(3946), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4036), - [sym_word] = ACTIONS(4036), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3948), + [sym_word] = ACTIONS(3948), }, - [2164] = { - [sym_concatenation] = STATE(2432), + [2089] = { + [sym_concatenation] = STATE(2323), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2432), - [anon_sym_RBRACE] = ACTIONS(5646), - [anon_sym_EQ] = ACTIONS(5648), + [aux_sym_expansion_repeat1] = STATE(2323), + [anon_sym_RBRACE] = ACTIONS(5431), + [anon_sym_EQ] = ACTIONS(5433), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5650), + [anon_sym_POUND] = ACTIONS(5435), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5648), - [anon_sym_COLON_QMARK] = ACTIONS(5648), - [anon_sym_COLON_DASH] = ACTIONS(5648), - [anon_sym_PERCENT] = ACTIONS(5648), - [anon_sym_DASH] = ACTIONS(5648), + [anon_sym_COLON] = ACTIONS(5433), + [anon_sym_COLON_QMARK] = ACTIONS(5433), + [anon_sym_COLON_DASH] = ACTIONS(5433), + [anon_sym_PERCENT] = ACTIONS(5433), + [anon_sym_DASH] = ACTIONS(5433), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -59196,48 +54372,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2165] = { - [sym__concat] = ACTIONS(4044), - [anon_sym_PIPE] = ACTIONS(4046), - [anon_sym_RPAREN] = ACTIONS(4044), - [anon_sym_PIPE_AMP] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_PIPE_PIPE] = ACTIONS(4044), - [sym__special_characters] = ACTIONS(4044), - [anon_sym_DQUOTE] = ACTIONS(4044), - [anon_sym_DOLLAR] = ACTIONS(4046), - [sym_raw_string] = ACTIONS(4044), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4044), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4044), - [anon_sym_BQUOTE] = ACTIONS(4044), - [anon_sym_LT_LPAREN] = ACTIONS(4044), - [anon_sym_GT_LPAREN] = ACTIONS(4044), + [2090] = { + [sym__concat] = ACTIONS(3956), + [anon_sym_PIPE] = ACTIONS(3958), + [anon_sym_RPAREN] = ACTIONS(3956), + [anon_sym_PIPE_AMP] = ACTIONS(3956), + [anon_sym_AMP_AMP] = ACTIONS(3956), + [anon_sym_PIPE_PIPE] = ACTIONS(3956), + [sym__special_characters] = ACTIONS(3956), + [anon_sym_DQUOTE] = ACTIONS(3956), + [anon_sym_DOLLAR] = ACTIONS(3958), + [sym_raw_string] = ACTIONS(3956), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3956), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3956), + [anon_sym_BQUOTE] = ACTIONS(3956), + [anon_sym_LT_LPAREN] = ACTIONS(3956), + [anon_sym_GT_LPAREN] = ACTIONS(3956), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4046), - [sym_word] = ACTIONS(4046), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3958), + [sym_word] = ACTIONS(3958), }, - [2166] = { - [sym_concatenation] = STATE(839), + [2091] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5652), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5437), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -59245,48 +54421,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2167] = { - [sym__concat] = ACTIONS(4050), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_RPAREN] = ACTIONS(4050), - [anon_sym_PIPE_AMP] = ACTIONS(4050), - [anon_sym_AMP_AMP] = ACTIONS(4050), - [anon_sym_PIPE_PIPE] = ACTIONS(4050), - [sym__special_characters] = ACTIONS(4050), - [anon_sym_DQUOTE] = ACTIONS(4050), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4050), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4050), - [anon_sym_BQUOTE] = ACTIONS(4050), - [anon_sym_LT_LPAREN] = ACTIONS(4050), - [anon_sym_GT_LPAREN] = ACTIONS(4050), + [2092] = { + [sym__concat] = ACTIONS(3962), + [anon_sym_PIPE] = ACTIONS(3964), + [anon_sym_RPAREN] = ACTIONS(3962), + [anon_sym_PIPE_AMP] = ACTIONS(3962), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3962), + [sym__special_characters] = ACTIONS(3962), + [anon_sym_DQUOTE] = ACTIONS(3962), + [anon_sym_DOLLAR] = ACTIONS(3964), + [sym_raw_string] = ACTIONS(3962), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3962), + [anon_sym_BQUOTE] = ACTIONS(3962), + [anon_sym_LT_LPAREN] = ACTIONS(3962), + [anon_sym_GT_LPAREN] = ACTIONS(3962), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4052), - [sym_word] = ACTIONS(4052), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3964), + [sym_word] = ACTIONS(3964), }, - [2168] = { - [sym_concatenation] = STATE(839), + [2093] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5654), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5439), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -59294,164 +54470,164 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2169] = { - [sym__simple_heredoc_body] = ACTIONS(4884), - [sym__heredoc_body_beginning] = ACTIONS(4884), - [sym_file_descriptor] = ACTIONS(4884), - [sym__concat] = ACTIONS(4884), - [anon_sym_PIPE] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4884), - [anon_sym_PIPE_AMP] = ACTIONS(4884), - [anon_sym_AMP_AMP] = ACTIONS(4884), - [anon_sym_PIPE_PIPE] = ACTIONS(4884), - [anon_sym_EQ_TILDE] = ACTIONS(4886), - [anon_sym_EQ_EQ] = ACTIONS(4886), - [anon_sym_LT] = ACTIONS(4886), - [anon_sym_GT] = ACTIONS(4886), - [anon_sym_GT_GT] = ACTIONS(4884), - [anon_sym_AMP_GT] = ACTIONS(4886), - [anon_sym_AMP_GT_GT] = ACTIONS(4884), - [anon_sym_LT_AMP] = ACTIONS(4884), - [anon_sym_GT_AMP] = ACTIONS(4884), - [anon_sym_LT_LT] = ACTIONS(4886), - [anon_sym_LT_LT_DASH] = ACTIONS(4884), - [anon_sym_LT_LT_LT] = ACTIONS(4884), - [sym__special_characters] = ACTIONS(4884), - [anon_sym_DQUOTE] = ACTIONS(4884), - [anon_sym_DOLLAR] = ACTIONS(4886), - [sym_raw_string] = ACTIONS(4884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4884), - [anon_sym_BQUOTE] = ACTIONS(4884), - [anon_sym_LT_LPAREN] = ACTIONS(4884), - [anon_sym_GT_LPAREN] = ACTIONS(4884), + [2094] = { + [sym__simple_heredoc_body] = ACTIONS(4741), + [sym__heredoc_body_beginning] = ACTIONS(4741), + [sym_file_descriptor] = ACTIONS(4741), + [sym__concat] = ACTIONS(4741), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4741), + [anon_sym_PIPE_AMP] = ACTIONS(4741), + [anon_sym_AMP_AMP] = ACTIONS(4741), + [anon_sym_PIPE_PIPE] = ACTIONS(4741), + [anon_sym_EQ_TILDE] = ACTIONS(4743), + [anon_sym_EQ_EQ] = ACTIONS(4743), + [anon_sym_LT] = ACTIONS(4743), + [anon_sym_GT] = ACTIONS(4743), + [anon_sym_GT_GT] = ACTIONS(4741), + [anon_sym_AMP_GT] = ACTIONS(4743), + [anon_sym_AMP_GT_GT] = ACTIONS(4741), + [anon_sym_LT_AMP] = ACTIONS(4741), + [anon_sym_GT_AMP] = ACTIONS(4741), + [anon_sym_LT_LT] = ACTIONS(4743), + [anon_sym_LT_LT_DASH] = ACTIONS(4741), + [anon_sym_LT_LT_LT] = ACTIONS(4741), + [sym__special_characters] = ACTIONS(4741), + [anon_sym_DQUOTE] = ACTIONS(4741), + [anon_sym_DOLLAR] = ACTIONS(4743), + [sym_raw_string] = ACTIONS(4741), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4741), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4741), + [anon_sym_BQUOTE] = ACTIONS(4741), + [anon_sym_LT_LPAREN] = ACTIONS(4741), + [anon_sym_GT_LPAREN] = ACTIONS(4741), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4886), + [sym_word] = ACTIONS(4743), }, - [2170] = { - [sym__simple_heredoc_body] = ACTIONS(4888), - [sym__heredoc_body_beginning] = ACTIONS(4888), - [sym_file_descriptor] = ACTIONS(4888), - [sym__concat] = ACTIONS(4888), - [anon_sym_PIPE] = ACTIONS(4890), - [anon_sym_RPAREN] = ACTIONS(4888), - [anon_sym_PIPE_AMP] = ACTIONS(4888), - [anon_sym_AMP_AMP] = ACTIONS(4888), - [anon_sym_PIPE_PIPE] = ACTIONS(4888), - [anon_sym_EQ_TILDE] = ACTIONS(4890), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_LT] = ACTIONS(4890), - [anon_sym_GT] = ACTIONS(4890), - [anon_sym_GT_GT] = ACTIONS(4888), - [anon_sym_AMP_GT] = ACTIONS(4890), - [anon_sym_AMP_GT_GT] = ACTIONS(4888), - [anon_sym_LT_AMP] = ACTIONS(4888), - [anon_sym_GT_AMP] = ACTIONS(4888), - [anon_sym_LT_LT] = ACTIONS(4890), - [anon_sym_LT_LT_DASH] = ACTIONS(4888), - [anon_sym_LT_LT_LT] = ACTIONS(4888), - [sym__special_characters] = ACTIONS(4888), - [anon_sym_DQUOTE] = ACTIONS(4888), - [anon_sym_DOLLAR] = ACTIONS(4890), - [sym_raw_string] = ACTIONS(4888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4888), - [anon_sym_BQUOTE] = ACTIONS(4888), - [anon_sym_LT_LPAREN] = ACTIONS(4888), - [anon_sym_GT_LPAREN] = ACTIONS(4888), + [2095] = { + [sym__simple_heredoc_body] = ACTIONS(4745), + [sym__heredoc_body_beginning] = ACTIONS(4745), + [sym_file_descriptor] = ACTIONS(4745), + [sym__concat] = ACTIONS(4745), + [anon_sym_PIPE] = ACTIONS(4747), + [anon_sym_RPAREN] = ACTIONS(4745), + [anon_sym_PIPE_AMP] = ACTIONS(4745), + [anon_sym_AMP_AMP] = ACTIONS(4745), + [anon_sym_PIPE_PIPE] = ACTIONS(4745), + [anon_sym_EQ_TILDE] = ACTIONS(4747), + [anon_sym_EQ_EQ] = ACTIONS(4747), + [anon_sym_LT] = ACTIONS(4747), + [anon_sym_GT] = ACTIONS(4747), + [anon_sym_GT_GT] = ACTIONS(4745), + [anon_sym_AMP_GT] = ACTIONS(4747), + [anon_sym_AMP_GT_GT] = ACTIONS(4745), + [anon_sym_LT_AMP] = ACTIONS(4745), + [anon_sym_GT_AMP] = ACTIONS(4745), + [anon_sym_LT_LT] = ACTIONS(4747), + [anon_sym_LT_LT_DASH] = ACTIONS(4745), + [anon_sym_LT_LT_LT] = ACTIONS(4745), + [sym__special_characters] = ACTIONS(4745), + [anon_sym_DQUOTE] = ACTIONS(4745), + [anon_sym_DOLLAR] = ACTIONS(4747), + [sym_raw_string] = ACTIONS(4745), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4745), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4745), + [anon_sym_BQUOTE] = ACTIONS(4745), + [anon_sym_LT_LPAREN] = ACTIONS(4745), + [anon_sym_GT_LPAREN] = ACTIONS(4745), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4890), + [sym_word] = ACTIONS(4747), }, - [2171] = { - [sym__simple_heredoc_body] = ACTIONS(4892), - [sym__heredoc_body_beginning] = ACTIONS(4892), - [sym_file_descriptor] = ACTIONS(4892), - [sym__concat] = ACTIONS(4892), - [anon_sym_PIPE] = ACTIONS(4894), - [anon_sym_RPAREN] = ACTIONS(4892), - [anon_sym_PIPE_AMP] = ACTIONS(4892), - [anon_sym_AMP_AMP] = ACTIONS(4892), - [anon_sym_PIPE_PIPE] = ACTIONS(4892), - [anon_sym_EQ_TILDE] = ACTIONS(4894), - [anon_sym_EQ_EQ] = ACTIONS(4894), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_GT_GT] = ACTIONS(4892), - [anon_sym_AMP_GT] = ACTIONS(4894), - [anon_sym_AMP_GT_GT] = ACTIONS(4892), - [anon_sym_LT_AMP] = ACTIONS(4892), - [anon_sym_GT_AMP] = ACTIONS(4892), - [anon_sym_LT_LT] = ACTIONS(4894), - [anon_sym_LT_LT_DASH] = ACTIONS(4892), - [anon_sym_LT_LT_LT] = ACTIONS(4892), - [sym__special_characters] = ACTIONS(4892), - [anon_sym_DQUOTE] = ACTIONS(4892), - [anon_sym_DOLLAR] = ACTIONS(4894), - [sym_raw_string] = ACTIONS(4892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4892), - [anon_sym_BQUOTE] = ACTIONS(4892), - [anon_sym_LT_LPAREN] = ACTIONS(4892), - [anon_sym_GT_LPAREN] = ACTIONS(4892), + [2096] = { + [sym__simple_heredoc_body] = ACTIONS(4749), + [sym__heredoc_body_beginning] = ACTIONS(4749), + [sym_file_descriptor] = ACTIONS(4749), + [sym__concat] = ACTIONS(4749), + [anon_sym_PIPE] = ACTIONS(4751), + [anon_sym_RPAREN] = ACTIONS(4749), + [anon_sym_PIPE_AMP] = ACTIONS(4749), + [anon_sym_AMP_AMP] = ACTIONS(4749), + [anon_sym_PIPE_PIPE] = ACTIONS(4749), + [anon_sym_EQ_TILDE] = ACTIONS(4751), + [anon_sym_EQ_EQ] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4751), + [anon_sym_GT_GT] = ACTIONS(4749), + [anon_sym_AMP_GT] = ACTIONS(4751), + [anon_sym_AMP_GT_GT] = ACTIONS(4749), + [anon_sym_LT_AMP] = ACTIONS(4749), + [anon_sym_GT_AMP] = ACTIONS(4749), + [anon_sym_LT_LT] = ACTIONS(4751), + [anon_sym_LT_LT_DASH] = ACTIONS(4749), + [anon_sym_LT_LT_LT] = ACTIONS(4749), + [sym__special_characters] = ACTIONS(4749), + [anon_sym_DQUOTE] = ACTIONS(4749), + [anon_sym_DOLLAR] = ACTIONS(4751), + [sym_raw_string] = ACTIONS(4749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4749), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4749), + [anon_sym_BQUOTE] = ACTIONS(4749), + [anon_sym_LT_LPAREN] = ACTIONS(4749), + [anon_sym_GT_LPAREN] = ACTIONS(4749), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4894), + [sym_word] = ACTIONS(4751), }, - [2172] = { - [sym__simple_heredoc_body] = ACTIONS(4896), - [sym__heredoc_body_beginning] = ACTIONS(4896), - [sym_file_descriptor] = ACTIONS(4896), - [sym__concat] = ACTIONS(4896), - [anon_sym_PIPE] = ACTIONS(4898), - [anon_sym_RPAREN] = ACTIONS(4896), - [anon_sym_PIPE_AMP] = ACTIONS(4896), - [anon_sym_AMP_AMP] = ACTIONS(4896), - [anon_sym_PIPE_PIPE] = ACTIONS(4896), - [anon_sym_EQ_TILDE] = ACTIONS(4898), - [anon_sym_EQ_EQ] = ACTIONS(4898), - [anon_sym_LT] = ACTIONS(4898), - [anon_sym_GT] = ACTIONS(4898), - [anon_sym_GT_GT] = ACTIONS(4896), - [anon_sym_AMP_GT] = ACTIONS(4898), - [anon_sym_AMP_GT_GT] = ACTIONS(4896), - [anon_sym_LT_AMP] = ACTIONS(4896), - [anon_sym_GT_AMP] = ACTIONS(4896), - [anon_sym_LT_LT] = ACTIONS(4898), - [anon_sym_LT_LT_DASH] = ACTIONS(4896), - [anon_sym_LT_LT_LT] = ACTIONS(4896), - [sym__special_characters] = ACTIONS(4896), - [anon_sym_DQUOTE] = ACTIONS(4896), - [anon_sym_DOLLAR] = ACTIONS(4898), - [sym_raw_string] = ACTIONS(4896), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4896), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4896), - [anon_sym_BQUOTE] = ACTIONS(4896), - [anon_sym_LT_LPAREN] = ACTIONS(4896), - [anon_sym_GT_LPAREN] = ACTIONS(4896), + [2097] = { + [sym__simple_heredoc_body] = ACTIONS(4753), + [sym__heredoc_body_beginning] = ACTIONS(4753), + [sym_file_descriptor] = ACTIONS(4753), + [sym__concat] = ACTIONS(4753), + [anon_sym_PIPE] = ACTIONS(4755), + [anon_sym_RPAREN] = ACTIONS(4753), + [anon_sym_PIPE_AMP] = ACTIONS(4753), + [anon_sym_AMP_AMP] = ACTIONS(4753), + [anon_sym_PIPE_PIPE] = ACTIONS(4753), + [anon_sym_EQ_TILDE] = ACTIONS(4755), + [anon_sym_EQ_EQ] = ACTIONS(4755), + [anon_sym_LT] = ACTIONS(4755), + [anon_sym_GT] = ACTIONS(4755), + [anon_sym_GT_GT] = ACTIONS(4753), + [anon_sym_AMP_GT] = ACTIONS(4755), + [anon_sym_AMP_GT_GT] = ACTIONS(4753), + [anon_sym_LT_AMP] = ACTIONS(4753), + [anon_sym_GT_AMP] = ACTIONS(4753), + [anon_sym_LT_LT] = ACTIONS(4755), + [anon_sym_LT_LT_DASH] = ACTIONS(4753), + [anon_sym_LT_LT_LT] = ACTIONS(4753), + [sym__special_characters] = ACTIONS(4753), + [anon_sym_DQUOTE] = ACTIONS(4753), + [anon_sym_DOLLAR] = ACTIONS(4755), + [sym_raw_string] = ACTIONS(4753), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4753), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4753), + [anon_sym_BQUOTE] = ACTIONS(4753), + [anon_sym_LT_LPAREN] = ACTIONS(4753), + [anon_sym_GT_LPAREN] = ACTIONS(4753), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4898), + [sym_word] = ACTIONS(4755), }, - [2173] = { - [sym_concatenation] = STATE(839), + [2098] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5656), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5441), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -59459,62 +54635,62 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2174] = { - [sym__simple_heredoc_body] = ACTIONS(4902), - [sym__heredoc_body_beginning] = ACTIONS(4902), - [sym_file_descriptor] = ACTIONS(4902), - [sym__concat] = ACTIONS(4902), - [anon_sym_PIPE] = ACTIONS(4904), - [anon_sym_RPAREN] = ACTIONS(4902), - [anon_sym_PIPE_AMP] = ACTIONS(4902), - [anon_sym_AMP_AMP] = ACTIONS(4902), - [anon_sym_PIPE_PIPE] = ACTIONS(4902), - [anon_sym_EQ_TILDE] = ACTIONS(4904), - [anon_sym_EQ_EQ] = ACTIONS(4904), - [anon_sym_LT] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4904), - [anon_sym_GT_GT] = ACTIONS(4902), - [anon_sym_AMP_GT] = ACTIONS(4904), - [anon_sym_AMP_GT_GT] = ACTIONS(4902), - [anon_sym_LT_AMP] = ACTIONS(4902), - [anon_sym_GT_AMP] = ACTIONS(4902), - [anon_sym_LT_LT] = ACTIONS(4904), - [anon_sym_LT_LT_DASH] = ACTIONS(4902), - [anon_sym_LT_LT_LT] = ACTIONS(4902), - [sym__special_characters] = ACTIONS(4902), - [anon_sym_DQUOTE] = ACTIONS(4902), - [anon_sym_DOLLAR] = ACTIONS(4904), - [sym_raw_string] = ACTIONS(4902), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4902), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4902), - [anon_sym_BQUOTE] = ACTIONS(4902), - [anon_sym_LT_LPAREN] = ACTIONS(4902), - [anon_sym_GT_LPAREN] = ACTIONS(4902), + [2099] = { + [sym__simple_heredoc_body] = ACTIONS(4759), + [sym__heredoc_body_beginning] = ACTIONS(4759), + [sym_file_descriptor] = ACTIONS(4759), + [sym__concat] = ACTIONS(4759), + [anon_sym_PIPE] = ACTIONS(4761), + [anon_sym_RPAREN] = ACTIONS(4759), + [anon_sym_PIPE_AMP] = ACTIONS(4759), + [anon_sym_AMP_AMP] = ACTIONS(4759), + [anon_sym_PIPE_PIPE] = ACTIONS(4759), + [anon_sym_EQ_TILDE] = ACTIONS(4761), + [anon_sym_EQ_EQ] = ACTIONS(4761), + [anon_sym_LT] = ACTIONS(4761), + [anon_sym_GT] = ACTIONS(4761), + [anon_sym_GT_GT] = ACTIONS(4759), + [anon_sym_AMP_GT] = ACTIONS(4761), + [anon_sym_AMP_GT_GT] = ACTIONS(4759), + [anon_sym_LT_AMP] = ACTIONS(4759), + [anon_sym_GT_AMP] = ACTIONS(4759), + [anon_sym_LT_LT] = ACTIONS(4761), + [anon_sym_LT_LT_DASH] = ACTIONS(4759), + [anon_sym_LT_LT_LT] = ACTIONS(4759), + [sym__special_characters] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4759), + [anon_sym_DOLLAR] = ACTIONS(4761), + [sym_raw_string] = ACTIONS(4759), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4759), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4759), + [anon_sym_BQUOTE] = ACTIONS(4759), + [anon_sym_LT_LPAREN] = ACTIONS(4759), + [anon_sym_GT_LPAREN] = ACTIONS(4759), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4904), + [sym_word] = ACTIONS(4761), }, - [2175] = { - [sym_concatenation] = STATE(839), + [2100] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5658), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5443), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -59522,62 +54698,62 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2176] = { - [sym__simple_heredoc_body] = ACTIONS(4908), - [sym__heredoc_body_beginning] = ACTIONS(4908), - [sym_file_descriptor] = ACTIONS(4908), - [sym__concat] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4910), - [anon_sym_RPAREN] = ACTIONS(4908), - [anon_sym_PIPE_AMP] = ACTIONS(4908), - [anon_sym_AMP_AMP] = ACTIONS(4908), - [anon_sym_PIPE_PIPE] = ACTIONS(4908), - [anon_sym_EQ_TILDE] = ACTIONS(4910), - [anon_sym_EQ_EQ] = ACTIONS(4910), - [anon_sym_LT] = ACTIONS(4910), - [anon_sym_GT] = ACTIONS(4910), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_AMP_GT] = ACTIONS(4910), - [anon_sym_AMP_GT_GT] = ACTIONS(4908), - [anon_sym_LT_AMP] = ACTIONS(4908), - [anon_sym_GT_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4910), - [anon_sym_LT_LT_DASH] = ACTIONS(4908), - [anon_sym_LT_LT_LT] = ACTIONS(4908), - [sym__special_characters] = ACTIONS(4908), - [anon_sym_DQUOTE] = ACTIONS(4908), - [anon_sym_DOLLAR] = ACTIONS(4910), - [sym_raw_string] = ACTIONS(4908), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4908), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4908), - [anon_sym_BQUOTE] = ACTIONS(4908), - [anon_sym_LT_LPAREN] = ACTIONS(4908), - [anon_sym_GT_LPAREN] = ACTIONS(4908), + [2101] = { + [sym__simple_heredoc_body] = ACTIONS(4765), + [sym__heredoc_body_beginning] = ACTIONS(4765), + [sym_file_descriptor] = ACTIONS(4765), + [sym__concat] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4767), + [anon_sym_RPAREN] = ACTIONS(4765), + [anon_sym_PIPE_AMP] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_EQ_TILDE] = ACTIONS(4767), + [anon_sym_EQ_EQ] = ACTIONS(4767), + [anon_sym_LT] = ACTIONS(4767), + [anon_sym_GT] = ACTIONS(4767), + [anon_sym_GT_GT] = ACTIONS(4765), + [anon_sym_AMP_GT] = ACTIONS(4767), + [anon_sym_AMP_GT_GT] = ACTIONS(4765), + [anon_sym_LT_AMP] = ACTIONS(4765), + [anon_sym_GT_AMP] = ACTIONS(4765), + [anon_sym_LT_LT] = ACTIONS(4767), + [anon_sym_LT_LT_DASH] = ACTIONS(4765), + [anon_sym_LT_LT_LT] = ACTIONS(4765), + [sym__special_characters] = ACTIONS(4765), + [anon_sym_DQUOTE] = ACTIONS(4765), + [anon_sym_DOLLAR] = ACTIONS(4767), + [sym_raw_string] = ACTIONS(4765), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4765), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4765), + [anon_sym_BQUOTE] = ACTIONS(4765), + [anon_sym_LT_LPAREN] = ACTIONS(4765), + [anon_sym_GT_LPAREN] = ACTIONS(4765), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4910), + [sym_word] = ACTIONS(4767), }, - [2177] = { - [sym_concatenation] = STATE(839), + [2102] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5660), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5445), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -59585,77 +54761,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2178] = { - [sym__simple_heredoc_body] = ACTIONS(4914), - [sym__heredoc_body_beginning] = ACTIONS(4914), - [sym_file_descriptor] = ACTIONS(4914), - [sym__concat] = ACTIONS(4914), - [anon_sym_PIPE] = ACTIONS(4916), - [anon_sym_RPAREN] = ACTIONS(4914), - [anon_sym_PIPE_AMP] = ACTIONS(4914), - [anon_sym_AMP_AMP] = ACTIONS(4914), - [anon_sym_PIPE_PIPE] = ACTIONS(4914), - [anon_sym_EQ_TILDE] = ACTIONS(4916), - [anon_sym_EQ_EQ] = ACTIONS(4916), - [anon_sym_LT] = ACTIONS(4916), - [anon_sym_GT] = ACTIONS(4916), - [anon_sym_GT_GT] = ACTIONS(4914), - [anon_sym_AMP_GT] = ACTIONS(4916), - [anon_sym_AMP_GT_GT] = ACTIONS(4914), - [anon_sym_LT_AMP] = ACTIONS(4914), - [anon_sym_GT_AMP] = ACTIONS(4914), - [anon_sym_LT_LT] = ACTIONS(4916), - [anon_sym_LT_LT_DASH] = ACTIONS(4914), - [anon_sym_LT_LT_LT] = ACTIONS(4914), - [sym__special_characters] = ACTIONS(4914), - [anon_sym_DQUOTE] = ACTIONS(4914), - [anon_sym_DOLLAR] = ACTIONS(4916), - [sym_raw_string] = ACTIONS(4914), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4914), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4914), - [anon_sym_BQUOTE] = ACTIONS(4914), - [anon_sym_LT_LPAREN] = ACTIONS(4914), - [anon_sym_GT_LPAREN] = ACTIONS(4914), + [2103] = { + [sym__simple_heredoc_body] = ACTIONS(4771), + [sym__heredoc_body_beginning] = ACTIONS(4771), + [sym_file_descriptor] = ACTIONS(4771), + [sym__concat] = ACTIONS(4771), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_RPAREN] = ACTIONS(4771), + [anon_sym_PIPE_AMP] = ACTIONS(4771), + [anon_sym_AMP_AMP] = ACTIONS(4771), + [anon_sym_PIPE_PIPE] = ACTIONS(4771), + [anon_sym_EQ_TILDE] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4773), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4771), + [anon_sym_AMP_GT] = ACTIONS(4773), + [anon_sym_AMP_GT_GT] = ACTIONS(4771), + [anon_sym_LT_AMP] = ACTIONS(4771), + [anon_sym_GT_AMP] = ACTIONS(4771), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_LT_LT_DASH] = ACTIONS(4771), + [anon_sym_LT_LT_LT] = ACTIONS(4771), + [sym__special_characters] = ACTIONS(4771), + [anon_sym_DQUOTE] = ACTIONS(4771), + [anon_sym_DOLLAR] = ACTIONS(4773), + [sym_raw_string] = ACTIONS(4771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4771), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4771), + [anon_sym_BQUOTE] = ACTIONS(4771), + [anon_sym_LT_LPAREN] = ACTIONS(4771), + [anon_sym_GT_LPAREN] = ACTIONS(4771), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4916), + [sym_word] = ACTIONS(4773), }, - [2179] = { - [sym__simple_heredoc_body] = ACTIONS(4918), - [sym__heredoc_body_beginning] = ACTIONS(4918), - [sym_file_descriptor] = ACTIONS(4918), - [sym__concat] = ACTIONS(4918), - [anon_sym_PIPE] = ACTIONS(4920), - [anon_sym_RPAREN] = ACTIONS(4918), - [anon_sym_PIPE_AMP] = ACTIONS(4918), - [anon_sym_AMP_AMP] = ACTIONS(4918), - [anon_sym_PIPE_PIPE] = ACTIONS(4918), - [anon_sym_EQ_TILDE] = ACTIONS(4920), - [anon_sym_EQ_EQ] = ACTIONS(4920), - [anon_sym_LT] = ACTIONS(4920), - [anon_sym_GT] = ACTIONS(4920), - [anon_sym_GT_GT] = ACTIONS(4918), - [anon_sym_AMP_GT] = ACTIONS(4920), - [anon_sym_AMP_GT_GT] = ACTIONS(4918), - [anon_sym_LT_AMP] = ACTIONS(4918), - [anon_sym_GT_AMP] = ACTIONS(4918), - [anon_sym_LT_LT] = ACTIONS(4920), - [anon_sym_LT_LT_DASH] = ACTIONS(4918), - [anon_sym_LT_LT_LT] = ACTIONS(4918), - [sym__special_characters] = ACTIONS(4918), - [anon_sym_DQUOTE] = ACTIONS(4918), - [anon_sym_DOLLAR] = ACTIONS(4920), - [sym_raw_string] = ACTIONS(4918), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4918), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4918), - [anon_sym_BQUOTE] = ACTIONS(4918), - [anon_sym_LT_LPAREN] = ACTIONS(4918), - [anon_sym_GT_LPAREN] = ACTIONS(4918), + [2104] = { + [sym__simple_heredoc_body] = ACTIONS(4775), + [sym__heredoc_body_beginning] = ACTIONS(4775), + [sym_file_descriptor] = ACTIONS(4775), + [sym__concat] = ACTIONS(4775), + [anon_sym_PIPE] = ACTIONS(4777), + [anon_sym_RPAREN] = ACTIONS(4775), + [anon_sym_PIPE_AMP] = ACTIONS(4775), + [anon_sym_AMP_AMP] = ACTIONS(4775), + [anon_sym_PIPE_PIPE] = ACTIONS(4775), + [anon_sym_EQ_TILDE] = ACTIONS(4777), + [anon_sym_EQ_EQ] = ACTIONS(4777), + [anon_sym_LT] = ACTIONS(4777), + [anon_sym_GT] = ACTIONS(4777), + [anon_sym_GT_GT] = ACTIONS(4775), + [anon_sym_AMP_GT] = ACTIONS(4777), + [anon_sym_AMP_GT_GT] = ACTIONS(4775), + [anon_sym_LT_AMP] = ACTIONS(4775), + [anon_sym_GT_AMP] = ACTIONS(4775), + [anon_sym_LT_LT] = ACTIONS(4777), + [anon_sym_LT_LT_DASH] = ACTIONS(4775), + [anon_sym_LT_LT_LT] = ACTIONS(4775), + [sym__special_characters] = ACTIONS(4775), + [anon_sym_DQUOTE] = ACTIONS(4775), + [anon_sym_DOLLAR] = ACTIONS(4777), + [sym_raw_string] = ACTIONS(4775), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4775), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4775), + [anon_sym_BQUOTE] = ACTIONS(4775), + [anon_sym_LT_LPAREN] = ACTIONS(4775), + [anon_sym_GT_LPAREN] = ACTIONS(4775), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4920), + [sym_word] = ACTIONS(4777), }, - [2180] = { - [aux_sym_concatenation_repeat1] = STATE(2182), - [sym__concat] = ACTIONS(1886), + [2105] = { + [aux_sym_concatenation_repeat1] = STATE(2107), + [sym__concat] = ACTIONS(1874), [anon_sym_PIPE] = ACTIONS(1091), [anon_sym_PIPE_AMP] = ACTIONS(1089), [anon_sym_AMP_AMP] = ACTIONS(1089), @@ -59663,9 +54839,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1089), [sym_comment] = ACTIONS(53), }, - [2181] = { - [aux_sym_concatenation_repeat1] = STATE(2182), - [sym__concat] = ACTIONS(1886), + [2106] = { + [aux_sym_concatenation_repeat1] = STATE(2107), + [sym__concat] = ACTIONS(1874), [anon_sym_PIPE] = ACTIONS(1095), [anon_sym_PIPE_AMP] = ACTIONS(1093), [anon_sym_AMP_AMP] = ACTIONS(1093), @@ -59673,9 +54849,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1093), [sym_comment] = ACTIONS(53), }, - [2182] = { - [aux_sym_concatenation_repeat1] = STATE(2438), - [sym__concat] = ACTIONS(1886), + [2107] = { + [aux_sym_concatenation_repeat1] = STATE(2329), + [sym__concat] = ACTIONS(1874), [anon_sym_PIPE] = ACTIONS(695), [anon_sym_PIPE_AMP] = ACTIONS(693), [anon_sym_AMP_AMP] = ACTIONS(693), @@ -59683,10 +54859,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(693), [sym_comment] = ACTIONS(53), }, - [2183] = { - [aux_sym_concatenation_repeat1] = STATE(2185), + [2108] = { + [aux_sym_concatenation_repeat1] = STATE(2110), [sym_file_descriptor] = ACTIONS(1089), - [sym__concat] = ACTIONS(4942), + [sym__concat] = ACTIONS(4799), [anon_sym_PIPE] = ACTIONS(1091), [anon_sym_PIPE_AMP] = ACTIONS(1089), [anon_sym_AMP_AMP] = ACTIONS(1089), @@ -59704,10 +54880,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1089), [sym_comment] = ACTIONS(53), }, - [2184] = { - [aux_sym_concatenation_repeat1] = STATE(2185), + [2109] = { + [aux_sym_concatenation_repeat1] = STATE(2110), [sym_file_descriptor] = ACTIONS(1093), - [sym__concat] = ACTIONS(4942), + [sym__concat] = ACTIONS(4799), [anon_sym_PIPE] = ACTIONS(1095), [anon_sym_PIPE_AMP] = ACTIONS(1093), [anon_sym_AMP_AMP] = ACTIONS(1093), @@ -59725,10 +54901,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1093), [sym_comment] = ACTIONS(53), }, - [2185] = { - [aux_sym_concatenation_repeat1] = STATE(2439), + [2110] = { + [aux_sym_concatenation_repeat1] = STATE(2330), [sym_file_descriptor] = ACTIONS(693), - [sym__concat] = ACTIONS(4942), + [sym__concat] = ACTIONS(4799), [anon_sym_PIPE] = ACTIONS(695), [anon_sym_PIPE_AMP] = ACTIONS(693), [anon_sym_AMP_AMP] = ACTIONS(693), @@ -59746,49 +54922,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(693), [sym_comment] = ACTIONS(53), }, - [2186] = { - [sym__heredoc_body_middle] = ACTIONS(3917), - [sym__heredoc_body_end] = ACTIONS(3917), - [anon_sym_DOLLAR] = ACTIONS(3919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3917), + [2111] = { + [sym__heredoc_body_middle] = ACTIONS(3829), + [sym__heredoc_body_end] = ACTIONS(3829), + [anon_sym_DOLLAR] = ACTIONS(3831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3829), [sym_comment] = ACTIONS(53), }, - [2187] = { - [sym__heredoc_body_middle] = ACTIONS(3923), - [sym__heredoc_body_end] = ACTIONS(3923), - [anon_sym_DOLLAR] = ACTIONS(3925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3923), + [2112] = { + [sym__heredoc_body_middle] = ACTIONS(3835), + [sym__heredoc_body_end] = ACTIONS(3835), + [anon_sym_DOLLAR] = ACTIONS(3837), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3835), [sym_comment] = ACTIONS(53), }, - [2188] = { - [sym__heredoc_body_middle] = ACTIONS(4008), - [sym__heredoc_body_end] = ACTIONS(4008), - [anon_sym_DOLLAR] = ACTIONS(4010), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4008), + [2113] = { + [sym__heredoc_body_middle] = ACTIONS(3920), + [sym__heredoc_body_end] = ACTIONS(3920), + [anon_sym_DOLLAR] = ACTIONS(3922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3920), [sym_comment] = ACTIONS(53), }, - [2189] = { - [sym_concatenation] = STATE(839), + [2114] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5662), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5447), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -59796,44 +54972,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2190] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5664), + [2115] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(5449), [sym_comment] = ACTIONS(53), }, - [2191] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5666), + [2116] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(5451), [sym_comment] = ACTIONS(53), }, - [2192] = { - [anon_sym_RBRACE] = ACTIONS(5666), + [2117] = { + [anon_sym_RBRACE] = ACTIONS(5451), [sym_comment] = ACTIONS(53), }, - [2193] = { - [sym_concatenation] = STATE(2444), + [2118] = { + [sym_concatenation] = STATE(2335), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2444), - [anon_sym_RBRACE] = ACTIONS(5668), - [anon_sym_EQ] = ACTIONS(5670), + [aux_sym_expansion_repeat1] = STATE(2335), + [anon_sym_RBRACE] = ACTIONS(5453), + [anon_sym_EQ] = ACTIONS(5455), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5672), + [anon_sym_POUND] = ACTIONS(5457), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5670), - [anon_sym_COLON_QMARK] = ACTIONS(5670), - [anon_sym_COLON_DASH] = ACTIONS(5670), - [anon_sym_PERCENT] = ACTIONS(5670), - [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_COLON] = ACTIONS(5455), + [anon_sym_COLON_QMARK] = ACTIONS(5455), + [anon_sym_COLON_DASH] = ACTIONS(5455), + [anon_sym_PERCENT] = ACTIONS(5455), + [anon_sym_DASH] = ACTIONS(5455), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -59841,35 +55017,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2194] = { - [sym__heredoc_body_middle] = ACTIONS(4024), - [sym__heredoc_body_end] = ACTIONS(4024), - [anon_sym_DOLLAR] = ACTIONS(4026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4024), + [2119] = { + [sym__heredoc_body_middle] = ACTIONS(3936), + [sym__heredoc_body_end] = ACTIONS(3936), + [anon_sym_DOLLAR] = ACTIONS(3938), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3936), [sym_comment] = ACTIONS(53), }, - [2195] = { - [sym_concatenation] = STATE(2446), + [2120] = { + [sym_concatenation] = STATE(2337), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2446), - [anon_sym_RBRACE] = ACTIONS(5674), - [anon_sym_EQ] = ACTIONS(5676), + [aux_sym_expansion_repeat1] = STATE(2337), + [anon_sym_RBRACE] = ACTIONS(5459), + [anon_sym_EQ] = ACTIONS(5461), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5678), + [anon_sym_POUND] = ACTIONS(5463), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5676), - [anon_sym_COLON_QMARK] = ACTIONS(5676), - [anon_sym_COLON_DASH] = ACTIONS(5676), - [anon_sym_PERCENT] = ACTIONS(5676), - [anon_sym_DASH] = ACTIONS(5676), + [anon_sym_COLON] = ACTIONS(5461), + [anon_sym_COLON_QMARK] = ACTIONS(5461), + [anon_sym_COLON_DASH] = ACTIONS(5461), + [anon_sym_PERCENT] = ACTIONS(5461), + [anon_sym_DASH] = ACTIONS(5461), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -59877,35 +55053,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2196] = { - [sym__heredoc_body_middle] = ACTIONS(4034), - [sym__heredoc_body_end] = ACTIONS(4034), - [anon_sym_DOLLAR] = ACTIONS(4036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4034), + [2121] = { + [sym__heredoc_body_middle] = ACTIONS(3946), + [sym__heredoc_body_end] = ACTIONS(3946), + [anon_sym_DOLLAR] = ACTIONS(3948), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3946), [sym_comment] = ACTIONS(53), }, - [2197] = { - [sym_concatenation] = STATE(2448), + [2122] = { + [sym_concatenation] = STATE(2339), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2448), - [anon_sym_RBRACE] = ACTIONS(5680), - [anon_sym_EQ] = ACTIONS(5682), + [aux_sym_expansion_repeat1] = STATE(2339), + [anon_sym_RBRACE] = ACTIONS(5465), + [anon_sym_EQ] = ACTIONS(5467), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5684), + [anon_sym_POUND] = ACTIONS(5469), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5682), - [anon_sym_COLON_QMARK] = ACTIONS(5682), - [anon_sym_COLON_DASH] = ACTIONS(5682), - [anon_sym_PERCENT] = ACTIONS(5682), - [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_COLON] = ACTIONS(5467), + [anon_sym_COLON_QMARK] = ACTIONS(5467), + [anon_sym_COLON_DASH] = ACTIONS(5467), + [anon_sym_PERCENT] = ACTIONS(5467), + [anon_sym_DASH] = ACTIONS(5467), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -59913,35 +55089,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2198] = { - [sym__heredoc_body_middle] = ACTIONS(4044), - [sym__heredoc_body_end] = ACTIONS(4044), - [anon_sym_DOLLAR] = ACTIONS(4046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4044), + [2123] = { + [sym__heredoc_body_middle] = ACTIONS(3956), + [sym__heredoc_body_end] = ACTIONS(3956), + [anon_sym_DOLLAR] = ACTIONS(3958), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3956), [sym_comment] = ACTIONS(53), }, - [2199] = { - [sym_concatenation] = STATE(839), + [2124] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5686), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5471), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -59949,35 +55125,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2200] = { - [sym__heredoc_body_middle] = ACTIONS(4050), - [sym__heredoc_body_end] = ACTIONS(4050), - [anon_sym_DOLLAR] = ACTIONS(4052), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4050), + [2125] = { + [sym__heredoc_body_middle] = ACTIONS(3962), + [sym__heredoc_body_end] = ACTIONS(3962), + [anon_sym_DOLLAR] = ACTIONS(3964), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3962), [sym_comment] = ACTIONS(53), }, - [2201] = { - [sym_concatenation] = STATE(839), + [2126] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5688), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5473), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -59985,73 +55161,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2202] = { - [sym__concat] = ACTIONS(3917), - [anon_sym_RPAREN] = ACTIONS(3917), - [sym__special_characters] = ACTIONS(3917), - [anon_sym_DQUOTE] = ACTIONS(3917), - [anon_sym_DOLLAR] = ACTIONS(3919), - [sym_raw_string] = ACTIONS(3917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3917), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3917), - [anon_sym_BQUOTE] = ACTIONS(3917), - [anon_sym_LT_LPAREN] = ACTIONS(3917), - [anon_sym_GT_LPAREN] = ACTIONS(3917), + [2127] = { + [sym__concat] = ACTIONS(3829), + [anon_sym_RPAREN] = ACTIONS(3829), + [sym__special_characters] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(3829), + [anon_sym_DOLLAR] = ACTIONS(3831), + [sym_raw_string] = ACTIONS(3829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3829), + [anon_sym_BQUOTE] = ACTIONS(3829), + [anon_sym_LT_LPAREN] = ACTIONS(3829), + [anon_sym_GT_LPAREN] = ACTIONS(3829), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3917), + [sym_word] = ACTIONS(3829), }, - [2203] = { - [sym__concat] = ACTIONS(3923), - [anon_sym_RPAREN] = ACTIONS(3923), - [sym__special_characters] = ACTIONS(3923), - [anon_sym_DQUOTE] = ACTIONS(3923), - [anon_sym_DOLLAR] = ACTIONS(3925), - [sym_raw_string] = ACTIONS(3923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3923), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3923), - [anon_sym_BQUOTE] = ACTIONS(3923), - [anon_sym_LT_LPAREN] = ACTIONS(3923), - [anon_sym_GT_LPAREN] = ACTIONS(3923), + [2128] = { + [sym__concat] = ACTIONS(3835), + [anon_sym_RPAREN] = ACTIONS(3835), + [sym__special_characters] = ACTIONS(3835), + [anon_sym_DQUOTE] = ACTIONS(3835), + [anon_sym_DOLLAR] = ACTIONS(3837), + [sym_raw_string] = ACTIONS(3835), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3835), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3835), + [anon_sym_BQUOTE] = ACTIONS(3835), + [anon_sym_LT_LPAREN] = ACTIONS(3835), + [anon_sym_GT_LPAREN] = ACTIONS(3835), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3923), + [sym_word] = ACTIONS(3835), }, - [2204] = { - [sym__concat] = ACTIONS(4008), - [anon_sym_RPAREN] = ACTIONS(4008), - [sym__special_characters] = ACTIONS(4008), - [anon_sym_DQUOTE] = ACTIONS(4008), - [anon_sym_DOLLAR] = ACTIONS(4010), - [sym_raw_string] = ACTIONS(4008), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4008), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4008), - [anon_sym_BQUOTE] = ACTIONS(4008), - [anon_sym_LT_LPAREN] = ACTIONS(4008), - [anon_sym_GT_LPAREN] = ACTIONS(4008), + [2129] = { + [sym__concat] = ACTIONS(3920), + [anon_sym_RPAREN] = ACTIONS(3920), + [sym__special_characters] = ACTIONS(3920), + [anon_sym_DQUOTE] = ACTIONS(3920), + [anon_sym_DOLLAR] = ACTIONS(3922), + [sym_raw_string] = ACTIONS(3920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3920), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3920), + [anon_sym_BQUOTE] = ACTIONS(3920), + [anon_sym_LT_LPAREN] = ACTIONS(3920), + [anon_sym_GT_LPAREN] = ACTIONS(3920), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4008), + [sym_word] = ACTIONS(3920), }, - [2205] = { - [sym_concatenation] = STATE(839), + [2130] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5690), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5475), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -60059,44 +55235,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2206] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5692), + [2131] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(5477), [sym_comment] = ACTIONS(53), }, - [2207] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5694), + [2132] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(5479), [sym_comment] = ACTIONS(53), }, - [2208] = { - [anon_sym_RBRACE] = ACTIONS(5694), + [2133] = { + [anon_sym_RBRACE] = ACTIONS(5479), [sym_comment] = ACTIONS(53), }, - [2209] = { - [sym_concatenation] = STATE(2455), + [2134] = { + [sym_concatenation] = STATE(2346), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2455), - [anon_sym_RBRACE] = ACTIONS(5696), - [anon_sym_EQ] = ACTIONS(5698), + [aux_sym_expansion_repeat1] = STATE(2346), + [anon_sym_RBRACE] = ACTIONS(5481), + [anon_sym_EQ] = ACTIONS(5483), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5700), + [anon_sym_POUND] = ACTIONS(5485), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5698), - [anon_sym_COLON_QMARK] = ACTIONS(5698), - [anon_sym_COLON_DASH] = ACTIONS(5698), - [anon_sym_PERCENT] = ACTIONS(5698), - [anon_sym_DASH] = ACTIONS(5698), + [anon_sym_COLON] = ACTIONS(5483), + [anon_sym_COLON_QMARK] = ACTIONS(5483), + [anon_sym_COLON_DASH] = ACTIONS(5483), + [anon_sym_PERCENT] = ACTIONS(5483), + [anon_sym_DASH] = ACTIONS(5483), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -60104,43 +55280,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2210] = { - [sym__concat] = ACTIONS(4024), - [anon_sym_RPAREN] = ACTIONS(4024), - [sym__special_characters] = ACTIONS(4024), - [anon_sym_DQUOTE] = ACTIONS(4024), - [anon_sym_DOLLAR] = ACTIONS(4026), - [sym_raw_string] = ACTIONS(4024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4024), - [anon_sym_BQUOTE] = ACTIONS(4024), - [anon_sym_LT_LPAREN] = ACTIONS(4024), - [anon_sym_GT_LPAREN] = ACTIONS(4024), + [2135] = { + [sym__concat] = ACTIONS(3936), + [anon_sym_RPAREN] = ACTIONS(3936), + [sym__special_characters] = ACTIONS(3936), + [anon_sym_DQUOTE] = ACTIONS(3936), + [anon_sym_DOLLAR] = ACTIONS(3938), + [sym_raw_string] = ACTIONS(3936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(3936), + [anon_sym_LT_LPAREN] = ACTIONS(3936), + [anon_sym_GT_LPAREN] = ACTIONS(3936), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4024), + [sym_word] = ACTIONS(3936), }, - [2211] = { - [sym_concatenation] = STATE(2457), + [2136] = { + [sym_concatenation] = STATE(2348), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2457), - [anon_sym_RBRACE] = ACTIONS(5702), - [anon_sym_EQ] = ACTIONS(5704), + [aux_sym_expansion_repeat1] = STATE(2348), + [anon_sym_RBRACE] = ACTIONS(5487), + [anon_sym_EQ] = ACTIONS(5489), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5706), + [anon_sym_POUND] = ACTIONS(5491), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5704), - [anon_sym_COLON_QMARK] = ACTIONS(5704), - [anon_sym_COLON_DASH] = ACTIONS(5704), - [anon_sym_PERCENT] = ACTIONS(5704), - [anon_sym_DASH] = ACTIONS(5704), + [anon_sym_COLON] = ACTIONS(5489), + [anon_sym_COLON_QMARK] = ACTIONS(5489), + [anon_sym_COLON_DASH] = ACTIONS(5489), + [anon_sym_PERCENT] = ACTIONS(5489), + [anon_sym_DASH] = ACTIONS(5489), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -60148,43 +55324,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2212] = { - [sym__concat] = ACTIONS(4034), - [anon_sym_RPAREN] = ACTIONS(4034), - [sym__special_characters] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4034), - [anon_sym_DOLLAR] = ACTIONS(4036), - [sym_raw_string] = ACTIONS(4034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4034), - [anon_sym_BQUOTE] = ACTIONS(4034), - [anon_sym_LT_LPAREN] = ACTIONS(4034), - [anon_sym_GT_LPAREN] = ACTIONS(4034), + [2137] = { + [sym__concat] = ACTIONS(3946), + [anon_sym_RPAREN] = ACTIONS(3946), + [sym__special_characters] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(3946), + [anon_sym_DOLLAR] = ACTIONS(3948), + [sym_raw_string] = ACTIONS(3946), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3946), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3946), + [anon_sym_BQUOTE] = ACTIONS(3946), + [anon_sym_LT_LPAREN] = ACTIONS(3946), + [anon_sym_GT_LPAREN] = ACTIONS(3946), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4034), + [sym_word] = ACTIONS(3946), }, - [2213] = { - [sym_concatenation] = STATE(2459), + [2138] = { + [sym_concatenation] = STATE(2350), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2459), - [anon_sym_RBRACE] = ACTIONS(5708), - [anon_sym_EQ] = ACTIONS(5710), + [aux_sym_expansion_repeat1] = STATE(2350), + [anon_sym_RBRACE] = ACTIONS(5493), + [anon_sym_EQ] = ACTIONS(5495), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5712), + [anon_sym_POUND] = ACTIONS(5497), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5710), - [anon_sym_COLON_QMARK] = ACTIONS(5710), - [anon_sym_COLON_DASH] = ACTIONS(5710), - [anon_sym_PERCENT] = ACTIONS(5710), - [anon_sym_DASH] = ACTIONS(5710), + [anon_sym_COLON] = ACTIONS(5495), + [anon_sym_COLON_QMARK] = ACTIONS(5495), + [anon_sym_COLON_DASH] = ACTIONS(5495), + [anon_sym_PERCENT] = ACTIONS(5495), + [anon_sym_DASH] = ACTIONS(5495), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -60192,43 +55368,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2214] = { - [sym__concat] = ACTIONS(4044), - [anon_sym_RPAREN] = ACTIONS(4044), - [sym__special_characters] = ACTIONS(4044), - [anon_sym_DQUOTE] = ACTIONS(4044), - [anon_sym_DOLLAR] = ACTIONS(4046), - [sym_raw_string] = ACTIONS(4044), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4044), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4044), - [anon_sym_BQUOTE] = ACTIONS(4044), - [anon_sym_LT_LPAREN] = ACTIONS(4044), - [anon_sym_GT_LPAREN] = ACTIONS(4044), + [2139] = { + [sym__concat] = ACTIONS(3956), + [anon_sym_RPAREN] = ACTIONS(3956), + [sym__special_characters] = ACTIONS(3956), + [anon_sym_DQUOTE] = ACTIONS(3956), + [anon_sym_DOLLAR] = ACTIONS(3958), + [sym_raw_string] = ACTIONS(3956), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3956), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3956), + [anon_sym_BQUOTE] = ACTIONS(3956), + [anon_sym_LT_LPAREN] = ACTIONS(3956), + [anon_sym_GT_LPAREN] = ACTIONS(3956), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4044), + [sym_word] = ACTIONS(3956), }, - [2215] = { - [sym_concatenation] = STATE(839), + [2140] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5714), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5499), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -60236,43 +55412,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2216] = { - [sym__concat] = ACTIONS(4050), - [anon_sym_RPAREN] = ACTIONS(4050), - [sym__special_characters] = ACTIONS(4050), - [anon_sym_DQUOTE] = ACTIONS(4050), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4050), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4050), - [anon_sym_BQUOTE] = ACTIONS(4050), - [anon_sym_LT_LPAREN] = ACTIONS(4050), - [anon_sym_GT_LPAREN] = ACTIONS(4050), + [2141] = { + [sym__concat] = ACTIONS(3962), + [anon_sym_RPAREN] = ACTIONS(3962), + [sym__special_characters] = ACTIONS(3962), + [anon_sym_DQUOTE] = ACTIONS(3962), + [anon_sym_DOLLAR] = ACTIONS(3964), + [sym_raw_string] = ACTIONS(3962), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3962), + [anon_sym_BQUOTE] = ACTIONS(3962), + [anon_sym_LT_LPAREN] = ACTIONS(3962), + [anon_sym_GT_LPAREN] = ACTIONS(3962), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4050), + [sym_word] = ACTIONS(3962), }, - [2217] = { - [sym_concatenation] = STATE(839), + [2142] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5716), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5501), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -60280,156 +55456,160 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2218] = { - [sym_file_descriptor] = ACTIONS(4884), - [sym__concat] = ACTIONS(4884), - [sym_variable_name] = ACTIONS(4884), - [anon_sym_PIPE] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4886), - [anon_sym_SEMI_SEMI] = ACTIONS(4886), - [anon_sym_PIPE_AMP] = ACTIONS(4886), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_LT] = ACTIONS(4886), - [anon_sym_GT] = ACTIONS(4886), - [anon_sym_GT_GT] = ACTIONS(4886), - [anon_sym_AMP_GT] = ACTIONS(4886), - [anon_sym_AMP_GT_GT] = ACTIONS(4886), - [anon_sym_LT_AMP] = ACTIONS(4886), - [anon_sym_GT_AMP] = ACTIONS(4886), - [sym__special_characters] = ACTIONS(4886), - [anon_sym_DQUOTE] = ACTIONS(4886), - [anon_sym_DOLLAR] = ACTIONS(4886), - [sym_raw_string] = ACTIONS(4886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4886), - [anon_sym_BQUOTE] = ACTIONS(4886), - [anon_sym_LT_LPAREN] = ACTIONS(4886), - [anon_sym_GT_LPAREN] = ACTIONS(4886), + [2143] = { + [sym_file_descriptor] = ACTIONS(4741), + [sym__concat] = ACTIONS(4741), + [sym_variable_name] = ACTIONS(4741), + [anon_sym_esac] = ACTIONS(4743), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4743), + [anon_sym_SEMI_SEMI] = ACTIONS(4743), + [anon_sym_PIPE_AMP] = ACTIONS(4743), + [anon_sym_AMP_AMP] = ACTIONS(4743), + [anon_sym_PIPE_PIPE] = ACTIONS(4743), + [anon_sym_LT] = ACTIONS(4743), + [anon_sym_GT] = ACTIONS(4743), + [anon_sym_GT_GT] = ACTIONS(4743), + [anon_sym_AMP_GT] = ACTIONS(4743), + [anon_sym_AMP_GT_GT] = ACTIONS(4743), + [anon_sym_LT_AMP] = ACTIONS(4743), + [anon_sym_GT_AMP] = ACTIONS(4743), + [sym__special_characters] = ACTIONS(4743), + [anon_sym_DQUOTE] = ACTIONS(4743), + [anon_sym_DOLLAR] = ACTIONS(4743), + [sym_raw_string] = ACTIONS(4743), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4743), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4743), + [anon_sym_BQUOTE] = ACTIONS(4743), + [anon_sym_LT_LPAREN] = ACTIONS(4743), + [anon_sym_GT_LPAREN] = ACTIONS(4743), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4886), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym_LF] = ACTIONS(4884), - [anon_sym_AMP] = ACTIONS(4886), + [sym_word] = ACTIONS(4743), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym_LF] = ACTIONS(4741), + [anon_sym_AMP] = ACTIONS(4743), }, - [2219] = { - [sym_file_descriptor] = ACTIONS(4888), - [sym__concat] = ACTIONS(4888), - [sym_variable_name] = ACTIONS(4888), - [anon_sym_PIPE] = ACTIONS(4890), - [anon_sym_RPAREN] = ACTIONS(4890), - [anon_sym_SEMI_SEMI] = ACTIONS(4890), - [anon_sym_PIPE_AMP] = ACTIONS(4890), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [anon_sym_LT] = ACTIONS(4890), - [anon_sym_GT] = ACTIONS(4890), - [anon_sym_GT_GT] = ACTIONS(4890), - [anon_sym_AMP_GT] = ACTIONS(4890), - [anon_sym_AMP_GT_GT] = ACTIONS(4890), - [anon_sym_LT_AMP] = ACTIONS(4890), - [anon_sym_GT_AMP] = ACTIONS(4890), - [sym__special_characters] = ACTIONS(4890), - [anon_sym_DQUOTE] = ACTIONS(4890), - [anon_sym_DOLLAR] = ACTIONS(4890), - [sym_raw_string] = ACTIONS(4890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4890), - [anon_sym_BQUOTE] = ACTIONS(4890), - [anon_sym_LT_LPAREN] = ACTIONS(4890), - [anon_sym_GT_LPAREN] = ACTIONS(4890), + [2144] = { + [sym_file_descriptor] = ACTIONS(4745), + [sym__concat] = ACTIONS(4745), + [sym_variable_name] = ACTIONS(4745), + [anon_sym_esac] = ACTIONS(4747), + [anon_sym_PIPE] = ACTIONS(4747), + [anon_sym_RPAREN] = ACTIONS(4747), + [anon_sym_SEMI_SEMI] = ACTIONS(4747), + [anon_sym_PIPE_AMP] = ACTIONS(4747), + [anon_sym_AMP_AMP] = ACTIONS(4747), + [anon_sym_PIPE_PIPE] = ACTIONS(4747), + [anon_sym_LT] = ACTIONS(4747), + [anon_sym_GT] = ACTIONS(4747), + [anon_sym_GT_GT] = ACTIONS(4747), + [anon_sym_AMP_GT] = ACTIONS(4747), + [anon_sym_AMP_GT_GT] = ACTIONS(4747), + [anon_sym_LT_AMP] = ACTIONS(4747), + [anon_sym_GT_AMP] = ACTIONS(4747), + [sym__special_characters] = ACTIONS(4747), + [anon_sym_DQUOTE] = ACTIONS(4747), + [anon_sym_DOLLAR] = ACTIONS(4747), + [sym_raw_string] = ACTIONS(4747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4747), + [anon_sym_BQUOTE] = ACTIONS(4747), + [anon_sym_LT_LPAREN] = ACTIONS(4747), + [anon_sym_GT_LPAREN] = ACTIONS(4747), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4890), - [anon_sym_SEMI] = ACTIONS(4890), - [anon_sym_LF] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4890), + [sym_word] = ACTIONS(4747), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_LF] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4747), }, - [2220] = { - [sym_file_descriptor] = ACTIONS(4892), - [sym__concat] = ACTIONS(4892), - [sym_variable_name] = ACTIONS(4892), - [anon_sym_PIPE] = ACTIONS(4894), - [anon_sym_RPAREN] = ACTIONS(4894), - [anon_sym_SEMI_SEMI] = ACTIONS(4894), - [anon_sym_PIPE_AMP] = ACTIONS(4894), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE_PIPE] = ACTIONS(4894), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_GT_GT] = ACTIONS(4894), - [anon_sym_AMP_GT] = ACTIONS(4894), - [anon_sym_AMP_GT_GT] = ACTIONS(4894), - [anon_sym_LT_AMP] = ACTIONS(4894), - [anon_sym_GT_AMP] = ACTIONS(4894), - [sym__special_characters] = ACTIONS(4894), - [anon_sym_DQUOTE] = ACTIONS(4894), - [anon_sym_DOLLAR] = ACTIONS(4894), - [sym_raw_string] = ACTIONS(4894), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4894), - [anon_sym_BQUOTE] = ACTIONS(4894), - [anon_sym_LT_LPAREN] = ACTIONS(4894), - [anon_sym_GT_LPAREN] = ACTIONS(4894), + [2145] = { + [sym_file_descriptor] = ACTIONS(4749), + [sym__concat] = ACTIONS(4749), + [sym_variable_name] = ACTIONS(4749), + [anon_sym_esac] = ACTIONS(4751), + [anon_sym_PIPE] = ACTIONS(4751), + [anon_sym_RPAREN] = ACTIONS(4751), + [anon_sym_SEMI_SEMI] = ACTIONS(4751), + [anon_sym_PIPE_AMP] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4751), + [anon_sym_GT_GT] = ACTIONS(4751), + [anon_sym_AMP_GT] = ACTIONS(4751), + [anon_sym_AMP_GT_GT] = ACTIONS(4751), + [anon_sym_LT_AMP] = ACTIONS(4751), + [anon_sym_GT_AMP] = ACTIONS(4751), + [sym__special_characters] = ACTIONS(4751), + [anon_sym_DQUOTE] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4751), + [sym_raw_string] = ACTIONS(4751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4751), + [anon_sym_BQUOTE] = ACTIONS(4751), + [anon_sym_LT_LPAREN] = ACTIONS(4751), + [anon_sym_GT_LPAREN] = ACTIONS(4751), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4894), - [anon_sym_SEMI] = ACTIONS(4894), - [anon_sym_LF] = ACTIONS(4892), - [anon_sym_AMP] = ACTIONS(4894), + [sym_word] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_LF] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4751), }, - [2221] = { - [sym_file_descriptor] = ACTIONS(4896), - [sym__concat] = ACTIONS(4896), - [sym_variable_name] = ACTIONS(4896), - [anon_sym_PIPE] = ACTIONS(4898), - [anon_sym_RPAREN] = ACTIONS(4898), - [anon_sym_SEMI_SEMI] = ACTIONS(4898), - [anon_sym_PIPE_AMP] = ACTIONS(4898), - [anon_sym_AMP_AMP] = ACTIONS(4898), - [anon_sym_PIPE_PIPE] = ACTIONS(4898), - [anon_sym_LT] = ACTIONS(4898), - [anon_sym_GT] = ACTIONS(4898), - [anon_sym_GT_GT] = ACTIONS(4898), - [anon_sym_AMP_GT] = ACTIONS(4898), - [anon_sym_AMP_GT_GT] = ACTIONS(4898), - [anon_sym_LT_AMP] = ACTIONS(4898), - [anon_sym_GT_AMP] = ACTIONS(4898), - [sym__special_characters] = ACTIONS(4898), - [anon_sym_DQUOTE] = ACTIONS(4898), - [anon_sym_DOLLAR] = ACTIONS(4898), - [sym_raw_string] = ACTIONS(4898), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4898), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4898), - [anon_sym_BQUOTE] = ACTIONS(4898), - [anon_sym_LT_LPAREN] = ACTIONS(4898), - [anon_sym_GT_LPAREN] = ACTIONS(4898), + [2146] = { + [sym_file_descriptor] = ACTIONS(4753), + [sym__concat] = ACTIONS(4753), + [sym_variable_name] = ACTIONS(4753), + [anon_sym_esac] = ACTIONS(4755), + [anon_sym_PIPE] = ACTIONS(4755), + [anon_sym_RPAREN] = ACTIONS(4755), + [anon_sym_SEMI_SEMI] = ACTIONS(4755), + [anon_sym_PIPE_AMP] = ACTIONS(4755), + [anon_sym_AMP_AMP] = ACTIONS(4755), + [anon_sym_PIPE_PIPE] = ACTIONS(4755), + [anon_sym_LT] = ACTIONS(4755), + [anon_sym_GT] = ACTIONS(4755), + [anon_sym_GT_GT] = ACTIONS(4755), + [anon_sym_AMP_GT] = ACTIONS(4755), + [anon_sym_AMP_GT_GT] = ACTIONS(4755), + [anon_sym_LT_AMP] = ACTIONS(4755), + [anon_sym_GT_AMP] = ACTIONS(4755), + [sym__special_characters] = ACTIONS(4755), + [anon_sym_DQUOTE] = ACTIONS(4755), + [anon_sym_DOLLAR] = ACTIONS(4755), + [sym_raw_string] = ACTIONS(4755), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4755), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4755), + [anon_sym_BQUOTE] = ACTIONS(4755), + [anon_sym_LT_LPAREN] = ACTIONS(4755), + [anon_sym_GT_LPAREN] = ACTIONS(4755), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4898), - [anon_sym_SEMI] = ACTIONS(4898), - [anon_sym_LF] = ACTIONS(4896), - [anon_sym_AMP] = ACTIONS(4898), + [sym_word] = ACTIONS(4755), + [anon_sym_SEMI] = ACTIONS(4755), + [anon_sym_LF] = ACTIONS(4753), + [anon_sym_AMP] = ACTIONS(4755), }, - [2222] = { - [sym_concatenation] = STATE(839), + [2147] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5718), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5503), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -60437,60 +55617,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2223] = { - [sym_file_descriptor] = ACTIONS(4902), - [sym__concat] = ACTIONS(4902), - [sym_variable_name] = ACTIONS(4902), - [anon_sym_PIPE] = ACTIONS(4904), - [anon_sym_RPAREN] = ACTIONS(4904), - [anon_sym_SEMI_SEMI] = ACTIONS(4904), - [anon_sym_PIPE_AMP] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4904), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_LT] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4904), - [anon_sym_GT_GT] = ACTIONS(4904), - [anon_sym_AMP_GT] = ACTIONS(4904), - [anon_sym_AMP_GT_GT] = ACTIONS(4904), - [anon_sym_LT_AMP] = ACTIONS(4904), - [anon_sym_GT_AMP] = ACTIONS(4904), - [sym__special_characters] = ACTIONS(4904), - [anon_sym_DQUOTE] = ACTIONS(4904), - [anon_sym_DOLLAR] = ACTIONS(4904), - [sym_raw_string] = ACTIONS(4904), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4904), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4904), - [anon_sym_BQUOTE] = ACTIONS(4904), - [anon_sym_LT_LPAREN] = ACTIONS(4904), - [anon_sym_GT_LPAREN] = ACTIONS(4904), + [2148] = { + [sym_file_descriptor] = ACTIONS(4759), + [sym__concat] = ACTIONS(4759), + [sym_variable_name] = ACTIONS(4759), + [anon_sym_esac] = ACTIONS(4761), + [anon_sym_PIPE] = ACTIONS(4761), + [anon_sym_RPAREN] = ACTIONS(4761), + [anon_sym_SEMI_SEMI] = ACTIONS(4761), + [anon_sym_PIPE_AMP] = ACTIONS(4761), + [anon_sym_AMP_AMP] = ACTIONS(4761), + [anon_sym_PIPE_PIPE] = ACTIONS(4761), + [anon_sym_LT] = ACTIONS(4761), + [anon_sym_GT] = ACTIONS(4761), + [anon_sym_GT_GT] = ACTIONS(4761), + [anon_sym_AMP_GT] = ACTIONS(4761), + [anon_sym_AMP_GT_GT] = ACTIONS(4761), + [anon_sym_LT_AMP] = ACTIONS(4761), + [anon_sym_GT_AMP] = ACTIONS(4761), + [sym__special_characters] = ACTIONS(4761), + [anon_sym_DQUOTE] = ACTIONS(4761), + [anon_sym_DOLLAR] = ACTIONS(4761), + [sym_raw_string] = ACTIONS(4761), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4761), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4761), + [anon_sym_LT_LPAREN] = ACTIONS(4761), + [anon_sym_GT_LPAREN] = ACTIONS(4761), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4904), - [anon_sym_SEMI] = ACTIONS(4904), - [anon_sym_LF] = ACTIONS(4902), - [anon_sym_AMP] = ACTIONS(4904), + [sym_word] = ACTIONS(4761), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_LF] = ACTIONS(4759), + [anon_sym_AMP] = ACTIONS(4761), }, - [2224] = { - [sym_concatenation] = STATE(839), + [2149] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5720), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5505), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -60498,60 +55679,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2225] = { - [sym_file_descriptor] = ACTIONS(4908), - [sym__concat] = ACTIONS(4908), - [sym_variable_name] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4910), - [anon_sym_RPAREN] = ACTIONS(4910), - [anon_sym_SEMI_SEMI] = ACTIONS(4910), - [anon_sym_PIPE_AMP] = ACTIONS(4910), - [anon_sym_AMP_AMP] = ACTIONS(4910), - [anon_sym_PIPE_PIPE] = ACTIONS(4910), - [anon_sym_LT] = ACTIONS(4910), - [anon_sym_GT] = ACTIONS(4910), - [anon_sym_GT_GT] = ACTIONS(4910), - [anon_sym_AMP_GT] = ACTIONS(4910), - [anon_sym_AMP_GT_GT] = ACTIONS(4910), - [anon_sym_LT_AMP] = ACTIONS(4910), - [anon_sym_GT_AMP] = ACTIONS(4910), - [sym__special_characters] = ACTIONS(4910), - [anon_sym_DQUOTE] = ACTIONS(4910), - [anon_sym_DOLLAR] = ACTIONS(4910), - [sym_raw_string] = ACTIONS(4910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4910), - [anon_sym_BQUOTE] = ACTIONS(4910), - [anon_sym_LT_LPAREN] = ACTIONS(4910), - [anon_sym_GT_LPAREN] = ACTIONS(4910), + [2150] = { + [sym_file_descriptor] = ACTIONS(4765), + [sym__concat] = ACTIONS(4765), + [sym_variable_name] = ACTIONS(4765), + [anon_sym_esac] = ACTIONS(4767), + [anon_sym_PIPE] = ACTIONS(4767), + [anon_sym_RPAREN] = ACTIONS(4767), + [anon_sym_SEMI_SEMI] = ACTIONS(4767), + [anon_sym_PIPE_AMP] = ACTIONS(4767), + [anon_sym_AMP_AMP] = ACTIONS(4767), + [anon_sym_PIPE_PIPE] = ACTIONS(4767), + [anon_sym_LT] = ACTIONS(4767), + [anon_sym_GT] = ACTIONS(4767), + [anon_sym_GT_GT] = ACTIONS(4767), + [anon_sym_AMP_GT] = ACTIONS(4767), + [anon_sym_AMP_GT_GT] = ACTIONS(4767), + [anon_sym_LT_AMP] = ACTIONS(4767), + [anon_sym_GT_AMP] = ACTIONS(4767), + [sym__special_characters] = ACTIONS(4767), + [anon_sym_DQUOTE] = ACTIONS(4767), + [anon_sym_DOLLAR] = ACTIONS(4767), + [sym_raw_string] = ACTIONS(4767), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4767), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4767), + [anon_sym_BQUOTE] = ACTIONS(4767), + [anon_sym_LT_LPAREN] = ACTIONS(4767), + [anon_sym_GT_LPAREN] = ACTIONS(4767), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4910), - [anon_sym_SEMI] = ACTIONS(4910), - [anon_sym_LF] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4910), + [sym_word] = ACTIONS(4767), + [anon_sym_SEMI] = ACTIONS(4767), + [anon_sym_LF] = ACTIONS(4765), + [anon_sym_AMP] = ACTIONS(4767), }, - [2226] = { - [sym_concatenation] = STATE(839), + [2151] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5722), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5507), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -60559,424 +55741,110 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2227] = { - [sym_file_descriptor] = ACTIONS(4914), - [sym__concat] = ACTIONS(4914), - [sym_variable_name] = ACTIONS(4914), - [anon_sym_PIPE] = ACTIONS(4916), - [anon_sym_RPAREN] = ACTIONS(4916), - [anon_sym_SEMI_SEMI] = ACTIONS(4916), - [anon_sym_PIPE_AMP] = ACTIONS(4916), - [anon_sym_AMP_AMP] = ACTIONS(4916), - [anon_sym_PIPE_PIPE] = ACTIONS(4916), - [anon_sym_LT] = ACTIONS(4916), - [anon_sym_GT] = ACTIONS(4916), - [anon_sym_GT_GT] = ACTIONS(4916), - [anon_sym_AMP_GT] = ACTIONS(4916), - [anon_sym_AMP_GT_GT] = ACTIONS(4916), - [anon_sym_LT_AMP] = ACTIONS(4916), - [anon_sym_GT_AMP] = ACTIONS(4916), - [sym__special_characters] = ACTIONS(4916), - [anon_sym_DQUOTE] = ACTIONS(4916), - [anon_sym_DOLLAR] = ACTIONS(4916), - [sym_raw_string] = ACTIONS(4916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4916), - [anon_sym_BQUOTE] = ACTIONS(4916), - [anon_sym_LT_LPAREN] = ACTIONS(4916), - [anon_sym_GT_LPAREN] = ACTIONS(4916), + [2152] = { + [sym_file_descriptor] = ACTIONS(4771), + [sym__concat] = ACTIONS(4771), + [sym_variable_name] = ACTIONS(4771), + [anon_sym_esac] = ACTIONS(4773), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_RPAREN] = ACTIONS(4773), + [anon_sym_SEMI_SEMI] = ACTIONS(4773), + [anon_sym_PIPE_AMP] = ACTIONS(4773), + [anon_sym_AMP_AMP] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4773), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_AMP_GT] = ACTIONS(4773), + [anon_sym_AMP_GT_GT] = ACTIONS(4773), + [anon_sym_LT_AMP] = ACTIONS(4773), + [anon_sym_GT_AMP] = ACTIONS(4773), + [sym__special_characters] = ACTIONS(4773), + [anon_sym_DQUOTE] = ACTIONS(4773), + [anon_sym_DOLLAR] = ACTIONS(4773), + [sym_raw_string] = ACTIONS(4773), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4773), + [anon_sym_BQUOTE] = ACTIONS(4773), + [anon_sym_LT_LPAREN] = ACTIONS(4773), + [anon_sym_GT_LPAREN] = ACTIONS(4773), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4916), - [anon_sym_SEMI] = ACTIONS(4916), - [anon_sym_LF] = ACTIONS(4914), - [anon_sym_AMP] = ACTIONS(4916), + [sym_word] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4773), + [anon_sym_LF] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), }, - [2228] = { - [sym_file_descriptor] = ACTIONS(4918), - [sym__concat] = ACTIONS(4918), - [sym_variable_name] = ACTIONS(4918), - [anon_sym_PIPE] = ACTIONS(4920), - [anon_sym_RPAREN] = ACTIONS(4920), - [anon_sym_SEMI_SEMI] = ACTIONS(4920), - [anon_sym_PIPE_AMP] = ACTIONS(4920), - [anon_sym_AMP_AMP] = ACTIONS(4920), - [anon_sym_PIPE_PIPE] = ACTIONS(4920), - [anon_sym_LT] = ACTIONS(4920), - [anon_sym_GT] = ACTIONS(4920), - [anon_sym_GT_GT] = ACTIONS(4920), - [anon_sym_AMP_GT] = ACTIONS(4920), - [anon_sym_AMP_GT_GT] = ACTIONS(4920), - [anon_sym_LT_AMP] = ACTIONS(4920), - [anon_sym_GT_AMP] = ACTIONS(4920), - [sym__special_characters] = ACTIONS(4920), - [anon_sym_DQUOTE] = ACTIONS(4920), - [anon_sym_DOLLAR] = ACTIONS(4920), - [sym_raw_string] = ACTIONS(4920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4920), - [anon_sym_BQUOTE] = ACTIONS(4920), - [anon_sym_LT_LPAREN] = ACTIONS(4920), - [anon_sym_GT_LPAREN] = ACTIONS(4920), + [2153] = { + [sym_file_descriptor] = ACTIONS(4775), + [sym__concat] = ACTIONS(4775), + [sym_variable_name] = ACTIONS(4775), + [anon_sym_esac] = ACTIONS(4777), + [anon_sym_PIPE] = ACTIONS(4777), + [anon_sym_RPAREN] = ACTIONS(4777), + [anon_sym_SEMI_SEMI] = ACTIONS(4777), + [anon_sym_PIPE_AMP] = ACTIONS(4777), + [anon_sym_AMP_AMP] = ACTIONS(4777), + [anon_sym_PIPE_PIPE] = ACTIONS(4777), + [anon_sym_LT] = ACTIONS(4777), + [anon_sym_GT] = ACTIONS(4777), + [anon_sym_GT_GT] = ACTIONS(4777), + [anon_sym_AMP_GT] = ACTIONS(4777), + [anon_sym_AMP_GT_GT] = ACTIONS(4777), + [anon_sym_LT_AMP] = ACTIONS(4777), + [anon_sym_GT_AMP] = ACTIONS(4777), + [sym__special_characters] = ACTIONS(4777), + [anon_sym_DQUOTE] = ACTIONS(4777), + [anon_sym_DOLLAR] = ACTIONS(4777), + [sym_raw_string] = ACTIONS(4777), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4777), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4777), + [anon_sym_BQUOTE] = ACTIONS(4777), + [anon_sym_LT_LPAREN] = ACTIONS(4777), + [anon_sym_GT_LPAREN] = ACTIONS(4777), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4920), - [anon_sym_SEMI] = ACTIONS(4920), - [anon_sym_LF] = ACTIONS(4918), - [anon_sym_AMP] = ACTIONS(4920), + [sym_word] = ACTIONS(4777), + [anon_sym_SEMI] = ACTIONS(4777), + [anon_sym_LF] = ACTIONS(4775), + [anon_sym_AMP] = ACTIONS(4777), }, - [2229] = { - [sym__concat] = ACTIONS(3917), - [anon_sym_SEMI_SEMI] = ACTIONS(3919), - [sym__special_characters] = ACTIONS(3919), - [anon_sym_DQUOTE] = ACTIONS(3919), - [anon_sym_DOLLAR] = ACTIONS(3919), - [sym_raw_string] = ACTIONS(3919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3919), - [anon_sym_BQUOTE] = ACTIONS(3919), - [anon_sym_LT_LPAREN] = ACTIONS(3919), - [anon_sym_GT_LPAREN] = ACTIONS(3919), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3919), - [anon_sym_SEMI] = ACTIONS(3919), - [anon_sym_LF] = ACTIONS(3917), - [anon_sym_AMP] = ACTIONS(3919), - }, - [2230] = { - [sym__concat] = ACTIONS(3923), - [anon_sym_SEMI_SEMI] = ACTIONS(3925), - [sym__special_characters] = ACTIONS(3925), - [anon_sym_DQUOTE] = ACTIONS(3925), - [anon_sym_DOLLAR] = ACTIONS(3925), - [sym_raw_string] = ACTIONS(3925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3925), - [anon_sym_BQUOTE] = ACTIONS(3925), - [anon_sym_LT_LPAREN] = ACTIONS(3925), - [anon_sym_GT_LPAREN] = ACTIONS(3925), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3925), - [anon_sym_SEMI] = ACTIONS(3925), - [anon_sym_LF] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3925), - }, - [2231] = { - [sym__concat] = ACTIONS(4008), - [anon_sym_SEMI_SEMI] = ACTIONS(4010), - [sym__special_characters] = ACTIONS(4010), - [anon_sym_DQUOTE] = ACTIONS(4010), - [anon_sym_DOLLAR] = ACTIONS(4010), - [sym_raw_string] = ACTIONS(4010), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4010), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4010), - [anon_sym_BQUOTE] = ACTIONS(4010), - [anon_sym_LT_LPAREN] = ACTIONS(4010), - [anon_sym_GT_LPAREN] = ACTIONS(4010), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4010), - [anon_sym_LF] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4010), - }, - [2232] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5724), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2233] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5726), + [2154] = { + [sym_concatenation] = STATE(212), + [sym_string] = STATE(2357), + [sym_array] = STATE(212), + [sym_simple_expansion] = STATE(2357), + [sym_string_expansion] = STATE(2357), + [sym_expansion] = STATE(2357), + [sym_command_substitution] = STATE(2357), + [sym_process_substitution] = STATE(2357), + [sym__empty_value] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(387), + [sym__special_characters] = ACTIONS(5509), + [anon_sym_DQUOTE] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [sym_raw_string] = ACTIONS(5511), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(397), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(401), + [anon_sym_LT_LPAREN] = ACTIONS(403), + [anon_sym_GT_LPAREN] = ACTIONS(403), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5511), }, - [2234] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5728), - [sym_comment] = ACTIONS(53), - }, - [2235] = { - [anon_sym_RBRACE] = ACTIONS(5728), - [sym_comment] = ACTIONS(53), - }, - [2236] = { - [sym_concatenation] = STATE(2469), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2469), - [anon_sym_RBRACE] = ACTIONS(5730), - [anon_sym_EQ] = ACTIONS(5732), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5734), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5732), - [anon_sym_COLON_QMARK] = ACTIONS(5732), - [anon_sym_COLON_DASH] = ACTIONS(5732), - [anon_sym_PERCENT] = ACTIONS(5732), - [anon_sym_DASH] = ACTIONS(5732), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2237] = { - [sym__concat] = ACTIONS(4024), - [anon_sym_SEMI_SEMI] = ACTIONS(4026), - [sym__special_characters] = ACTIONS(4026), - [anon_sym_DQUOTE] = ACTIONS(4026), - [anon_sym_DOLLAR] = ACTIONS(4026), - [sym_raw_string] = ACTIONS(4026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4026), - [anon_sym_BQUOTE] = ACTIONS(4026), - [anon_sym_LT_LPAREN] = ACTIONS(4026), - [anon_sym_GT_LPAREN] = ACTIONS(4026), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4026), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym_LF] = ACTIONS(4024), - [anon_sym_AMP] = ACTIONS(4026), - }, - [2238] = { - [sym_concatenation] = STATE(2471), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2471), - [anon_sym_RBRACE] = ACTIONS(5736), - [anon_sym_EQ] = ACTIONS(5738), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5740), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5738), - [anon_sym_COLON_QMARK] = ACTIONS(5738), - [anon_sym_COLON_DASH] = ACTIONS(5738), - [anon_sym_PERCENT] = ACTIONS(5738), - [anon_sym_DASH] = ACTIONS(5738), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2239] = { - [sym__concat] = ACTIONS(4034), - [anon_sym_SEMI_SEMI] = ACTIONS(4036), - [sym__special_characters] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_DOLLAR] = ACTIONS(4036), - [sym_raw_string] = ACTIONS(4036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4036), - [anon_sym_BQUOTE] = ACTIONS(4036), - [anon_sym_LT_LPAREN] = ACTIONS(4036), - [anon_sym_GT_LPAREN] = ACTIONS(4036), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4036), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_LF] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4036), - }, - [2240] = { - [sym_concatenation] = STATE(2473), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2473), - [anon_sym_RBRACE] = ACTIONS(5742), - [anon_sym_EQ] = ACTIONS(5744), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5746), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5744), - [anon_sym_COLON_QMARK] = ACTIONS(5744), - [anon_sym_COLON_DASH] = ACTIONS(5744), - [anon_sym_PERCENT] = ACTIONS(5744), - [anon_sym_DASH] = ACTIONS(5744), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2241] = { - [sym__concat] = ACTIONS(4044), - [anon_sym_SEMI_SEMI] = ACTIONS(4046), - [sym__special_characters] = ACTIONS(4046), - [anon_sym_DQUOTE] = ACTIONS(4046), - [anon_sym_DOLLAR] = ACTIONS(4046), - [sym_raw_string] = ACTIONS(4046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4046), - [anon_sym_BQUOTE] = ACTIONS(4046), - [anon_sym_LT_LPAREN] = ACTIONS(4046), - [anon_sym_GT_LPAREN] = ACTIONS(4046), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4046), - [anon_sym_SEMI] = ACTIONS(4046), - [anon_sym_LF] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4046), - }, - [2242] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5748), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2243] = { - [sym__concat] = ACTIONS(4050), - [anon_sym_SEMI_SEMI] = ACTIONS(4052), - [sym__special_characters] = ACTIONS(4052), - [anon_sym_DQUOTE] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4052), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4052), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4052), - [anon_sym_BQUOTE] = ACTIONS(4052), - [anon_sym_LT_LPAREN] = ACTIONS(4052), - [anon_sym_GT_LPAREN] = ACTIONS(4052), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4052), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4052), - }, - [2244] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5750), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2245] = { - [sym_concatenation] = STATE(2476), - [sym_string] = STATE(2481), - [sym_array] = STATE(2476), - [sym_simple_expansion] = STATE(2481), - [sym_string_expansion] = STATE(2481), - [sym_expansion] = STATE(2481), - [sym_command_substitution] = STATE(2481), - [sym_process_substitution] = STATE(2481), - [sym__empty_value] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5754), - [sym__special_characters] = ACTIONS(5756), - [anon_sym_DQUOTE] = ACTIONS(5758), - [anon_sym_DOLLAR] = ACTIONS(5760), - [sym_raw_string] = ACTIONS(5762), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5764), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5766), - [anon_sym_BQUOTE] = ACTIONS(5768), - [anon_sym_LT_LPAREN] = ACTIONS(5770), - [anon_sym_GT_LPAREN] = ACTIONS(5770), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5762), - }, - [2246] = { - [sym_do_group] = STATE(2486), + [2155] = { + [sym_do_group] = STATE(2358), [anon_sym_do] = ACTIONS(411), [sym_comment] = ACTIONS(53), }, - [2247] = { - [sym_compound_statement] = STATE(2488), - [anon_sym_LPAREN] = ACTIONS(5772), + [2156] = { + [sym_compound_statement] = STATE(2360), + [anon_sym_LPAREN] = ACTIONS(5513), [anon_sym_LBRACE] = ACTIONS(455), [sym_comment] = ACTIONS(53), }, - [2248] = { + [2157] = { [anon_sym_AMP_AMP] = ACTIONS(543), [anon_sym_PIPE_PIPE] = ACTIONS(543), - [anon_sym_RBRACK] = ACTIONS(5774), + [anon_sym_RBRACK] = ACTIONS(5515), [anon_sym_EQ_TILDE] = ACTIONS(547), [anon_sym_EQ_EQ] = ACTIONS(547), [anon_sym_EQ] = ACTIONS(549), @@ -60986,10 +55854,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_test_operator] = ACTIONS(543), }, - [2249] = { + [2158] = { [anon_sym_AMP_AMP] = ACTIONS(573), [anon_sym_PIPE_PIPE] = ACTIONS(573), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5774), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5515), [anon_sym_EQ_TILDE] = ACTIONS(575), [anon_sym_EQ_EQ] = ACTIONS(575), [anon_sym_EQ] = ACTIONS(577), @@ -60999,15 +55867,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_test_operator] = ACTIONS(573), }, - [2250] = { + [2159] = { [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(5776), - [anon_sym_PLUS_EQ] = ACTIONS(5776), + [anon_sym_EQ] = ACTIONS(5517), + [anon_sym_PLUS_EQ] = ACTIONS(5517), [sym_comment] = ACTIONS(53), }, - [2251] = { - [aux_sym_concatenation_repeat1] = STATE(2492), - [sym__concat] = ACTIONS(5778), + [2160] = { + [aux_sym_concatenation_repeat1] = STATE(2364), + [sym__concat] = ACTIONS(5519), [sym_variable_name] = ACTIONS(583), [anon_sym_esac] = ACTIONS(585), [anon_sym_PIPE] = ACTIONS(585), @@ -61031,12 +55899,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(583), [anon_sym_AMP] = ACTIONS(585), }, - [2252] = { + [2161] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(2494), - [anon_sym_DQUOTE] = ACTIONS(5780), + [aux_sym_string_repeat1] = STATE(2366), + [anon_sym_DQUOTE] = ACTIONS(5521), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -61044,24 +55912,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(237), [sym_comment] = ACTIONS(177), }, - [2253] = { - [sym_string] = STATE(2496), - [anon_sym_DQUOTE] = ACTIONS(5782), - [anon_sym_DOLLAR] = ACTIONS(5784), - [sym_raw_string] = ACTIONS(5786), - [anon_sym_POUND] = ACTIONS(5784), - [anon_sym_DASH] = ACTIONS(5784), + [2162] = { + [sym_string] = STATE(2368), + [anon_sym_DQUOTE] = ACTIONS(5523), + [anon_sym_DOLLAR] = ACTIONS(5525), + [sym_raw_string] = ACTIONS(5527), + [anon_sym_POUND] = ACTIONS(5525), + [anon_sym_DASH] = ACTIONS(5525), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5788), - [anon_sym_STAR] = ACTIONS(5784), - [anon_sym_AT] = ACTIONS(5784), - [anon_sym_QMARK] = ACTIONS(5784), - [anon_sym_0] = ACTIONS(5790), - [anon_sym__] = ACTIONS(5790), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5529), + [anon_sym_STAR] = ACTIONS(5525), + [anon_sym_AT] = ACTIONS(5525), + [anon_sym_QMARK] = ACTIONS(5525), + [anon_sym_0] = ACTIONS(5531), + [anon_sym__] = ACTIONS(5531), }, - [2254] = { - [aux_sym_concatenation_repeat1] = STATE(2492), - [sym__concat] = ACTIONS(5778), + [2163] = { + [aux_sym_concatenation_repeat1] = STATE(2364), + [sym__concat] = ACTIONS(5519), [sym_variable_name] = ACTIONS(599), [anon_sym_esac] = ACTIONS(601), [anon_sym_PIPE] = ACTIONS(601), @@ -61085,36 +55953,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(599), [anon_sym_AMP] = ACTIONS(601), }, - [2255] = { - [sym_subscript] = STATE(2502), - [sym_variable_name] = ACTIONS(5792), - [anon_sym_DOLLAR] = ACTIONS(5794), - [anon_sym_POUND] = ACTIONS(5796), - [anon_sym_DASH] = ACTIONS(5794), + [2164] = { + [sym_subscript] = STATE(2374), + [sym_variable_name] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [anon_sym_POUND] = ACTIONS(5537), + [anon_sym_DASH] = ACTIONS(5535), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5798), - [anon_sym_STAR] = ACTIONS(5794), - [anon_sym_AT] = ACTIONS(5794), - [anon_sym_QMARK] = ACTIONS(5794), - [anon_sym_0] = ACTIONS(5800), - [anon_sym__] = ACTIONS(5800), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5539), + [anon_sym_STAR] = ACTIONS(5535), + [anon_sym_AT] = ACTIONS(5535), + [anon_sym_QMARK] = ACTIONS(5535), + [anon_sym_0] = ACTIONS(5541), + [anon_sym__] = ACTIONS(5541), }, - [2256] = { - [sym_for_statement] = STATE(2503), - [sym_while_statement] = STATE(2503), - [sym_if_statement] = STATE(2503), - [sym_case_statement] = STATE(2503), - [sym_function_definition] = STATE(2503), - [sym_subshell] = STATE(2503), - [sym_pipeline] = STATE(2503), - [sym_list] = STATE(2503), - [sym_negated_command] = STATE(2503), - [sym_test_command] = STATE(2503), - [sym_declaration_command] = STATE(2503), - [sym_unset_command] = STATE(2503), - [sym_command] = STATE(2503), + [2165] = { + [sym_for_statement] = STATE(2375), + [sym_while_statement] = STATE(2375), + [sym_if_statement] = STATE(2375), + [sym_case_statement] = STATE(2375), + [sym_function_definition] = STATE(2375), + [sym_subshell] = STATE(2375), + [sym_pipeline] = STATE(2375), + [sym_list] = STATE(2375), + [sym_negated_command] = STATE(2375), + [sym_test_command] = STATE(2375), + [sym_declaration_command] = STATE(2375), + [sym_unset_command] = STATE(2375), + [sym_command] = STATE(2375), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2504), + [sym_variable_assignment] = STATE(2376), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -61162,22 +56030,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(301), }, - [2257] = { - [sym_for_statement] = STATE(2505), - [sym_while_statement] = STATE(2505), - [sym_if_statement] = STATE(2505), - [sym_case_statement] = STATE(2505), - [sym_function_definition] = STATE(2505), - [sym_subshell] = STATE(2505), - [sym_pipeline] = STATE(2505), - [sym_list] = STATE(2505), - [sym_negated_command] = STATE(2505), - [sym_test_command] = STATE(2505), - [sym_declaration_command] = STATE(2505), - [sym_unset_command] = STATE(2505), - [sym_command] = STATE(2505), + [2166] = { + [sym_for_statement] = STATE(2377), + [sym_while_statement] = STATE(2377), + [sym_if_statement] = STATE(2377), + [sym_case_statement] = STATE(2377), + [sym_function_definition] = STATE(2377), + [sym_subshell] = STATE(2377), + [sym_pipeline] = STATE(2377), + [sym_list] = STATE(2377), + [sym_negated_command] = STATE(2377), + [sym_test_command] = STATE(2377), + [sym_declaration_command] = STATE(2377), + [sym_unset_command] = STATE(2377), + [sym_command] = STATE(2377), [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(2506), + [sym_variable_assignment] = STATE(2378), [sym_subscript] = STATE(183), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -61225,22 +56093,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(323), }, - [2258] = { - [sym_for_statement] = STATE(2507), - [sym_while_statement] = STATE(2507), - [sym_if_statement] = STATE(2507), - [sym_case_statement] = STATE(2507), - [sym_function_definition] = STATE(2507), - [sym_subshell] = STATE(2507), - [sym_pipeline] = STATE(2507), - [sym_list] = STATE(2507), - [sym_negated_command] = STATE(2507), - [sym_test_command] = STATE(2507), - [sym_declaration_command] = STATE(2507), - [sym_unset_command] = STATE(2507), - [sym_command] = STATE(2507), + [2167] = { + [sym_for_statement] = STATE(2379), + [sym_while_statement] = STATE(2379), + [sym_if_statement] = STATE(2379), + [sym_case_statement] = STATE(2379), + [sym_function_definition] = STATE(2379), + [sym_subshell] = STATE(2379), + [sym_pipeline] = STATE(2379), + [sym_list] = STATE(2379), + [sym_negated_command] = STATE(2379), + [sym_test_command] = STATE(2379), + [sym_declaration_command] = STATE(2379), + [sym_unset_command] = STATE(2379), + [sym_command] = STATE(2379), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2508), + [sym_variable_assignment] = STATE(2380), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -61288,7 +56156,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(301), }, - [2259] = { + [2168] = { [sym_variable_name] = ACTIONS(613), [anon_sym_esac] = ACTIONS(615), [anon_sym_PIPE] = ACTIONS(615), @@ -61312,48 +56180,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(613), [anon_sym_AMP] = ACTIONS(615), }, - [2260] = { - [anon_sym_EQ] = ACTIONS(5776), - [anon_sym_PLUS_EQ] = ACTIONS(5776), + [2169] = { + [anon_sym_EQ] = ACTIONS(5517), + [anon_sym_PLUS_EQ] = ACTIONS(5517), [sym_comment] = ACTIONS(53), }, - [2261] = { - [sym_variable_assignment] = STATE(2509), - [sym_subscript] = STATE(2260), - [sym_concatenation] = STATE(2509), - [sym_string] = STATE(2254), - [sym_simple_expansion] = STATE(2254), - [sym_string_expansion] = STATE(2254), - [sym_expansion] = STATE(2254), - [sym_command_substitution] = STATE(2254), - [sym_process_substitution] = STATE(2254), - [aux_sym_declaration_command_repeat1] = STATE(2509), - [sym_variable_name] = ACTIONS(5260), + [2170] = { + [sym_variable_assignment] = STATE(2381), + [sym_subscript] = STATE(2169), + [sym_concatenation] = STATE(2381), + [sym_string] = STATE(2163), + [sym_simple_expansion] = STATE(2163), + [sym_string_expansion] = STATE(2163), + [sym_expansion] = STATE(2163), + [sym_command_substitution] = STATE(2163), + [sym_process_substitution] = STATE(2163), + [aux_sym_declaration_command_repeat1] = STATE(2381), + [sym_variable_name] = ACTIONS(5081), [anon_sym_esac] = ACTIONS(617), [anon_sym_PIPE] = ACTIONS(617), [anon_sym_SEMI_SEMI] = ACTIONS(617), [anon_sym_PIPE_AMP] = ACTIONS(617), [anon_sym_AMP_AMP] = ACTIONS(617), [anon_sym_PIPE_PIPE] = ACTIONS(617), - [sym__special_characters] = ACTIONS(5262), - [anon_sym_DQUOTE] = ACTIONS(5264), - [anon_sym_DOLLAR] = ACTIONS(5266), - [sym_raw_string] = ACTIONS(5268), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5270), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5272), - [anon_sym_BQUOTE] = ACTIONS(5274), - [anon_sym_LT_LPAREN] = ACTIONS(5276), - [anon_sym_GT_LPAREN] = ACTIONS(5276), + [sym__special_characters] = ACTIONS(5083), + [anon_sym_DQUOTE] = ACTIONS(5085), + [anon_sym_DOLLAR] = ACTIONS(5087), + [sym_raw_string] = ACTIONS(5089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5091), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5093), + [anon_sym_BQUOTE] = ACTIONS(5095), + [anon_sym_LT_LPAREN] = ACTIONS(5097), + [anon_sym_GT_LPAREN] = ACTIONS(5097), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5278), - [sym_word] = ACTIONS(5268), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5099), + [sym_word] = ACTIONS(5089), [anon_sym_SEMI] = ACTIONS(617), [anon_sym_LF] = ACTIONS(619), [anon_sym_AMP] = ACTIONS(617), }, - [2262] = { - [aux_sym_concatenation_repeat1] = STATE(2511), - [sym__concat] = ACTIONS(5802), + [2171] = { + [aux_sym_concatenation_repeat1] = STATE(2383), + [sym__concat] = ACTIONS(5543), [anon_sym_esac] = ACTIONS(623), [anon_sym_PIPE] = ACTIONS(623), [anon_sym_SEMI_SEMI] = ACTIONS(623), @@ -61376,12 +56244,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(625), [anon_sym_AMP] = ACTIONS(623), }, - [2263] = { + [2172] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(2513), - [anon_sym_DQUOTE] = ACTIONS(5804), + [aux_sym_string_repeat1] = STATE(2385), + [anon_sym_DQUOTE] = ACTIONS(5545), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -61389,24 +56257,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(237), [sym_comment] = ACTIONS(177), }, - [2264] = { - [sym_string] = STATE(2515), - [anon_sym_DQUOTE] = ACTIONS(5806), - [anon_sym_DOLLAR] = ACTIONS(5808), - [sym_raw_string] = ACTIONS(5810), - [anon_sym_POUND] = ACTIONS(5808), - [anon_sym_DASH] = ACTIONS(5808), + [2173] = { + [sym_string] = STATE(2387), + [anon_sym_DQUOTE] = ACTIONS(5547), + [anon_sym_DOLLAR] = ACTIONS(5549), + [sym_raw_string] = ACTIONS(5551), + [anon_sym_POUND] = ACTIONS(5549), + [anon_sym_DASH] = ACTIONS(5549), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5812), - [anon_sym_STAR] = ACTIONS(5808), - [anon_sym_AT] = ACTIONS(5808), - [anon_sym_QMARK] = ACTIONS(5808), - [anon_sym_0] = ACTIONS(5814), - [anon_sym__] = ACTIONS(5814), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5553), + [anon_sym_STAR] = ACTIONS(5549), + [anon_sym_AT] = ACTIONS(5549), + [anon_sym_QMARK] = ACTIONS(5549), + [anon_sym_0] = ACTIONS(5555), + [anon_sym__] = ACTIONS(5555), }, - [2265] = { - [aux_sym_concatenation_repeat1] = STATE(2511), - [sym__concat] = ACTIONS(5802), + [2174] = { + [aux_sym_concatenation_repeat1] = STATE(2383), + [sym__concat] = ACTIONS(5543), [anon_sym_esac] = ACTIONS(639), [anon_sym_PIPE] = ACTIONS(639), [anon_sym_SEMI_SEMI] = ACTIONS(639), @@ -61429,36 +56297,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(641), [anon_sym_AMP] = ACTIONS(639), }, - [2266] = { - [sym_subscript] = STATE(2521), - [sym_variable_name] = ACTIONS(5816), - [anon_sym_DOLLAR] = ACTIONS(5818), - [anon_sym_POUND] = ACTIONS(5820), - [anon_sym_DASH] = ACTIONS(5818), + [2175] = { + [sym_subscript] = STATE(2393), + [sym_variable_name] = ACTIONS(5557), + [anon_sym_DOLLAR] = ACTIONS(5559), + [anon_sym_POUND] = ACTIONS(5561), + [anon_sym_DASH] = ACTIONS(5559), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5822), - [anon_sym_STAR] = ACTIONS(5818), - [anon_sym_AT] = ACTIONS(5818), - [anon_sym_QMARK] = ACTIONS(5818), - [anon_sym_0] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5824), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5563), + [anon_sym_STAR] = ACTIONS(5559), + [anon_sym_AT] = ACTIONS(5559), + [anon_sym_QMARK] = ACTIONS(5559), + [anon_sym_0] = ACTIONS(5565), + [anon_sym__] = ACTIONS(5565), }, - [2267] = { - [sym_for_statement] = STATE(2522), - [sym_while_statement] = STATE(2522), - [sym_if_statement] = STATE(2522), - [sym_case_statement] = STATE(2522), - [sym_function_definition] = STATE(2522), - [sym_subshell] = STATE(2522), - [sym_pipeline] = STATE(2522), - [sym_list] = STATE(2522), - [sym_negated_command] = STATE(2522), - [sym_test_command] = STATE(2522), - [sym_declaration_command] = STATE(2522), - [sym_unset_command] = STATE(2522), - [sym_command] = STATE(2522), + [2176] = { + [sym_for_statement] = STATE(2394), + [sym_while_statement] = STATE(2394), + [sym_if_statement] = STATE(2394), + [sym_case_statement] = STATE(2394), + [sym_function_definition] = STATE(2394), + [sym_subshell] = STATE(2394), + [sym_pipeline] = STATE(2394), + [sym_list] = STATE(2394), + [sym_negated_command] = STATE(2394), + [sym_test_command] = STATE(2394), + [sym_declaration_command] = STATE(2394), + [sym_unset_command] = STATE(2394), + [sym_command] = STATE(2394), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2523), + [sym_variable_assignment] = STATE(2395), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -61506,22 +56374,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(301), }, - [2268] = { - [sym_for_statement] = STATE(2524), - [sym_while_statement] = STATE(2524), - [sym_if_statement] = STATE(2524), - [sym_case_statement] = STATE(2524), - [sym_function_definition] = STATE(2524), - [sym_subshell] = STATE(2524), - [sym_pipeline] = STATE(2524), - [sym_list] = STATE(2524), - [sym_negated_command] = STATE(2524), - [sym_test_command] = STATE(2524), - [sym_declaration_command] = STATE(2524), - [sym_unset_command] = STATE(2524), - [sym_command] = STATE(2524), + [2177] = { + [sym_for_statement] = STATE(2396), + [sym_while_statement] = STATE(2396), + [sym_if_statement] = STATE(2396), + [sym_case_statement] = STATE(2396), + [sym_function_definition] = STATE(2396), + [sym_subshell] = STATE(2396), + [sym_pipeline] = STATE(2396), + [sym_list] = STATE(2396), + [sym_negated_command] = STATE(2396), + [sym_test_command] = STATE(2396), + [sym_declaration_command] = STATE(2396), + [sym_unset_command] = STATE(2396), + [sym_command] = STATE(2396), [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(2525), + [sym_variable_assignment] = STATE(2397), [sym_subscript] = STATE(183), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -61569,22 +56437,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(323), }, - [2269] = { - [sym_for_statement] = STATE(2526), - [sym_while_statement] = STATE(2526), - [sym_if_statement] = STATE(2526), - [sym_case_statement] = STATE(2526), - [sym_function_definition] = STATE(2526), - [sym_subshell] = STATE(2526), - [sym_pipeline] = STATE(2526), - [sym_list] = STATE(2526), - [sym_negated_command] = STATE(2526), - [sym_test_command] = STATE(2526), - [sym_declaration_command] = STATE(2526), - [sym_unset_command] = STATE(2526), - [sym_command] = STATE(2526), + [2178] = { + [sym_for_statement] = STATE(2398), + [sym_while_statement] = STATE(2398), + [sym_if_statement] = STATE(2398), + [sym_case_statement] = STATE(2398), + [sym_function_definition] = STATE(2398), + [sym_subshell] = STATE(2398), + [sym_pipeline] = STATE(2398), + [sym_list] = STATE(2398), + [sym_negated_command] = STATE(2398), + [sym_test_command] = STATE(2398), + [sym_declaration_command] = STATE(2398), + [sym_unset_command] = STATE(2398), + [sym_command] = STATE(2398), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2527), + [sym_variable_assignment] = STATE(2399), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -61632,7 +56500,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(301), }, - [2270] = { + [2179] = { [anon_sym_esac] = ACTIONS(653), [anon_sym_PIPE] = ACTIONS(653), [anon_sym_SEMI_SEMI] = ACTIONS(653), @@ -61655,62 +56523,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(655), [anon_sym_AMP] = ACTIONS(653), }, - [2271] = { - [sym_concatenation] = STATE(2528), - [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), - [aux_sym_unset_command_repeat1] = STATE(2528), + [2180] = { + [sym_concatenation] = STATE(2400), + [sym_string] = STATE(2174), + [sym_simple_expansion] = STATE(2174), + [sym_string_expansion] = STATE(2174), + [sym_expansion] = STATE(2174), + [sym_command_substitution] = STATE(2174), + [sym_process_substitution] = STATE(2174), + [aux_sym_unset_command_repeat1] = STATE(2400), [anon_sym_esac] = ACTIONS(657), [anon_sym_PIPE] = ACTIONS(657), [anon_sym_SEMI_SEMI] = ACTIONS(657), [anon_sym_PIPE_AMP] = ACTIONS(657), [anon_sym_AMP_AMP] = ACTIONS(657), [anon_sym_PIPE_PIPE] = ACTIONS(657), - [sym__special_characters] = ACTIONS(5280), - [anon_sym_DQUOTE] = ACTIONS(5282), - [anon_sym_DOLLAR] = ACTIONS(5284), - [sym_raw_string] = ACTIONS(5286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5290), - [anon_sym_BQUOTE] = ACTIONS(5292), - [anon_sym_LT_LPAREN] = ACTIONS(5294), - [anon_sym_GT_LPAREN] = ACTIONS(5294), + [sym__special_characters] = ACTIONS(5101), + [anon_sym_DQUOTE] = ACTIONS(5103), + [anon_sym_DOLLAR] = ACTIONS(5105), + [sym_raw_string] = ACTIONS(5107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5109), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5111), + [anon_sym_BQUOTE] = ACTIONS(5113), + [anon_sym_LT_LPAREN] = ACTIONS(5115), + [anon_sym_GT_LPAREN] = ACTIONS(5115), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5296), - [sym_word] = ACTIONS(5286), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5117), + [sym_word] = ACTIONS(5107), [anon_sym_SEMI] = ACTIONS(657), [anon_sym_LF] = ACTIONS(659), [anon_sym_AMP] = ACTIONS(657), }, - [2272] = { - [sym_string] = STATE(2529), - [sym_simple_expansion] = STATE(2529), - [sym_string_expansion] = STATE(2529), - [sym_expansion] = STATE(2529), - [sym_command_substitution] = STATE(2529), - [sym_process_substitution] = STATE(2529), - [sym__special_characters] = ACTIONS(5826), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(5826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5826), - }, - [2273] = { - [aux_sym_concatenation_repeat1] = STATE(2530), + [2181] = { + [aux_sym_concatenation_repeat1] = STATE(2401), [sym__simple_heredoc_body] = ACTIONS(693), [sym__heredoc_body_beginning] = ACTIONS(693), [sym_file_descriptor] = ACTIONS(693), - [sym__concat] = ACTIONS(5298), + [sym__concat] = ACTIONS(223), [anon_sym_esac] = ACTIONS(695), [anon_sym_PIPE] = ACTIONS(695), [anon_sym_SEMI_SEMI] = ACTIONS(695), @@ -61744,388 +56593,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(693), [anon_sym_AMP] = ACTIONS(695), }, - [2274] = { - [sym__simple_heredoc_body] = ACTIONS(697), - [sym__heredoc_body_beginning] = ACTIONS(697), - [sym_file_descriptor] = ACTIONS(697), - [sym__concat] = ACTIONS(697), - [anon_sym_esac] = ACTIONS(699), - [anon_sym_PIPE] = ACTIONS(699), - [anon_sym_SEMI_SEMI] = ACTIONS(699), - [anon_sym_PIPE_AMP] = ACTIONS(699), - [anon_sym_AMP_AMP] = ACTIONS(699), - [anon_sym_PIPE_PIPE] = ACTIONS(699), - [anon_sym_EQ_TILDE] = ACTIONS(699), - [anon_sym_EQ_EQ] = ACTIONS(699), - [anon_sym_LT] = ACTIONS(699), - [anon_sym_GT] = ACTIONS(699), - [anon_sym_GT_GT] = ACTIONS(699), - [anon_sym_AMP_GT] = ACTIONS(699), - [anon_sym_AMP_GT_GT] = ACTIONS(699), - [anon_sym_LT_AMP] = ACTIONS(699), - [anon_sym_GT_AMP] = ACTIONS(699), - [anon_sym_LT_LT] = ACTIONS(699), - [anon_sym_LT_LT_DASH] = ACTIONS(699), - [anon_sym_LT_LT_LT] = ACTIONS(699), - [sym__special_characters] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(699), - [sym_raw_string] = ACTIONS(699), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(699), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(699), - [anon_sym_BQUOTE] = ACTIONS(699), - [anon_sym_LT_LPAREN] = ACTIONS(699), - [anon_sym_GT_LPAREN] = ACTIONS(699), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(699), - [anon_sym_SEMI] = ACTIONS(699), - [anon_sym_LF] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), - }, - [2275] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(5828), - [anon_sym_DOLLAR] = ACTIONS(229), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [2276] = { - [sym__simple_heredoc_body] = ACTIONS(727), - [sym__heredoc_body_beginning] = ACTIONS(727), - [sym_file_descriptor] = ACTIONS(727), - [sym__concat] = ACTIONS(727), - [anon_sym_esac] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_SEMI_SEMI] = ACTIONS(729), - [anon_sym_PIPE_AMP] = ACTIONS(729), - [anon_sym_AMP_AMP] = ACTIONS(729), - [anon_sym_PIPE_PIPE] = ACTIONS(729), - [anon_sym_EQ_TILDE] = ACTIONS(729), - [anon_sym_EQ_EQ] = ACTIONS(729), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_GT_GT] = ACTIONS(729), - [anon_sym_AMP_GT] = ACTIONS(729), - [anon_sym_AMP_GT_GT] = ACTIONS(729), - [anon_sym_LT_AMP] = ACTIONS(729), - [anon_sym_GT_AMP] = ACTIONS(729), - [anon_sym_LT_LT] = ACTIONS(729), - [anon_sym_LT_LT_DASH] = ACTIONS(729), - [anon_sym_LT_LT_LT] = ACTIONS(729), - [sym__special_characters] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(729), - [anon_sym_DOLLAR] = ACTIONS(729), - [sym_raw_string] = ACTIONS(729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(729), - [anon_sym_LT_LPAREN] = ACTIONS(729), - [anon_sym_GT_LPAREN] = ACTIONS(729), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [anon_sym_LF] = ACTIONS(727), - [anon_sym_AMP] = ACTIONS(729), - }, - [2277] = { - [sym__simple_heredoc_body] = ACTIONS(731), - [sym__heredoc_body_beginning] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(731), - [anon_sym_esac] = ACTIONS(733), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_EQ_TILDE] = ACTIONS(733), - [anon_sym_EQ_EQ] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(733), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(733), - [anon_sym_LT_AMP] = ACTIONS(733), - [anon_sym_GT_AMP] = ACTIONS(733), - [anon_sym_LT_LT] = ACTIONS(733), - [anon_sym_LT_LT_DASH] = ACTIONS(733), - [anon_sym_LT_LT_LT] = ACTIONS(733), - [sym__special_characters] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), - }, - [2278] = { - [sym__simple_heredoc_body] = ACTIONS(735), - [sym__heredoc_body_beginning] = ACTIONS(735), - [sym_file_descriptor] = ACTIONS(735), - [sym__concat] = ACTIONS(735), - [anon_sym_esac] = ACTIONS(737), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [anon_sym_EQ_TILDE] = ACTIONS(737), - [anon_sym_EQ_EQ] = ACTIONS(737), - [anon_sym_LT] = ACTIONS(737), - [anon_sym_GT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(737), - [anon_sym_AMP_GT] = ACTIONS(737), - [anon_sym_AMP_GT_GT] = ACTIONS(737), - [anon_sym_LT_AMP] = ACTIONS(737), - [anon_sym_GT_AMP] = ACTIONS(737), - [anon_sym_LT_LT] = ACTIONS(737), - [anon_sym_LT_LT_DASH] = ACTIONS(737), - [anon_sym_LT_LT_LT] = ACTIONS(737), - [sym__special_characters] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), - [anon_sym_BQUOTE] = ACTIONS(737), - [anon_sym_LT_LPAREN] = ACTIONS(737), - [anon_sym_GT_LPAREN] = ACTIONS(737), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(737), - }, - [2279] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(5830), + [2182] = { + [anon_sym_RPAREN] = ACTIONS(5567), [sym_comment] = ACTIONS(53), }, - [2280] = { - [sym_concatenation] = STATE(2535), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2535), - [anon_sym_RBRACE] = ACTIONS(5832), - [anon_sym_EQ] = ACTIONS(5834), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(5838), - [anon_sym_COLON] = ACTIONS(5834), - [anon_sym_COLON_QMARK] = ACTIONS(5834), - [anon_sym_COLON_DASH] = ACTIONS(5834), - [anon_sym_PERCENT] = ACTIONS(5834), - [anon_sym_DASH] = ACTIONS(5834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2281] = { - [sym_subscript] = STATE(2539), - [sym_variable_name] = ACTIONS(5840), - [anon_sym_DOLLAR] = ACTIONS(5842), - [anon_sym_DASH] = ACTIONS(5842), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5844), - [anon_sym_STAR] = ACTIONS(5842), - [anon_sym_AT] = ACTIONS(5842), - [anon_sym_QMARK] = ACTIONS(5842), - [anon_sym_0] = ACTIONS(5846), - [anon_sym__] = ACTIONS(5846), - }, - [2282] = { - [sym_concatenation] = STATE(2542), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2542), - [anon_sym_RBRACE] = ACTIONS(5848), - [anon_sym_EQ] = ACTIONS(5850), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2283] = { - [sym_concatenation] = STATE(2545), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2545), - [anon_sym_RBRACE] = ACTIONS(5856), - [anon_sym_EQ] = ACTIONS(5858), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5860), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(5862), - [anon_sym_COLON] = ACTIONS(5858), - [anon_sym_COLON_QMARK] = ACTIONS(5858), - [anon_sym_COLON_DASH] = ACTIONS(5858), - [anon_sym_PERCENT] = ACTIONS(5858), - [anon_sym_DASH] = ACTIONS(5858), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2284] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(5864), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [sym_comment] = ACTIONS(53), - }, - [2285] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(5864), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [2286] = { - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_PIPE_AMP] = ACTIONS(925), - [anon_sym_AMP_AMP] = ACTIONS(927), - [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_BQUOTE] = ACTIONS(5864), - [sym_comment] = ACTIONS(53), - }, - [2287] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_PIPE_AMP] = ACTIONS(925), - [anon_sym_AMP_AMP] = ACTIONS(927), - [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(5864), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [2288] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [sym_comment] = ACTIONS(53), - }, - [2289] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [2290] = { - [anon_sym_RPAREN] = ACTIONS(5868), - [sym_comment] = ACTIONS(53), - }, - [2291] = { + [2183] = { [sym_for_statement] = STATE(529), [sym_while_statement] = STATE(529), [sym_if_statement] = STATE(529), @@ -62139,36 +56611,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(529), [sym_unset_command] = STATE(529), [sym_command] = STATE(529), - [sym_command_name] = STATE(1935), - [sym_variable_assignment] = STATE(2549), - [sym_subscript] = STATE(1937), + [sym_command_name] = STATE(1861), + [sym_variable_assignment] = STATE(530), + [sym_subscript] = STATE(1863), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(1938), - [sym_string] = STATE(1928), - [sym_simple_expansion] = STATE(1928), - [sym_string_expansion] = STATE(1928), - [sym_expansion] = STATE(1928), - [sym_command_substitution] = STATE(1928), - [sym_process_substitution] = STATE(1928), - [aux_sym_command_repeat1] = STATE(1940), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1858), + [sym_simple_expansion] = STATE(1858), + [sym_string_expansion] = STATE(1858), + [sym_expansion] = STATE(1858), + [sym_command_substitution] = STATE(1858), + [sym_process_substitution] = STATE(1858), + [aux_sym_command_repeat1] = STATE(1865), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4448), + [sym_variable_name] = ACTIONS(4317), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4450), + [anon_sym_while] = ACTIONS(4319), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(4456), + [anon_sym_function] = ACTIONS(4325), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4458), - [anon_sym_LBRACK] = ACTIONS(4460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4462), - [anon_sym_declare] = ACTIONS(4464), - [anon_sym_typeset] = ACTIONS(4464), - [anon_sym_export] = ACTIONS(4464), - [anon_sym_readonly] = ACTIONS(4464), - [anon_sym_local] = ACTIONS(4464), - [anon_sym_unset] = ACTIONS(4466), - [anon_sym_unsetenv] = ACTIONS(4466), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4331), + [anon_sym_declare] = ACTIONS(4333), + [anon_sym_typeset] = ACTIONS(4333), + [anon_sym_export] = ACTIONS(4333), + [anon_sym_readonly] = ACTIONS(4333), + [anon_sym_local] = ACTIONS(4333), + [anon_sym_unset] = ACTIONS(4335), + [anon_sym_unsetenv] = ACTIONS(4335), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -62176,26 +56648,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4468), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(4474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), + [sym__special_characters] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4484), + [sym_word] = ACTIONS(4341), }, - [2292] = { + [2184] = { [sym_file_descriptor] = ACTIONS(951), [sym_variable_name] = ACTIONS(951), [anon_sym_for] = ACTIONS(953), [anon_sym_while] = ACTIONS(953), [anon_sym_if] = ACTIONS(953), [anon_sym_case] = ACTIONS(953), - [anon_sym_esac] = ACTIONS(5870), + [anon_sym_esac] = ACTIONS(5569), [anon_sym_SEMI_SEMI] = ACTIONS(951), [anon_sym_function] = ACTIONS(953), [anon_sym_LPAREN] = ACTIONS(951), @@ -62216,62 +56688,62 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(951), [anon_sym_LT_AMP] = ACTIONS(951), [anon_sym_GT_AMP] = ACTIONS(951), - [sym__special_characters] = ACTIONS(5872), - [anon_sym_DQUOTE] = ACTIONS(5874), - [anon_sym_DOLLAR] = ACTIONS(5872), - [sym_raw_string] = ACTIONS(5874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5874), - [anon_sym_BQUOTE] = ACTIONS(5874), - [anon_sym_LT_LPAREN] = ACTIONS(5874), - [anon_sym_GT_LPAREN] = ACTIONS(5874), + [sym__special_characters] = ACTIONS(5571), + [anon_sym_DQUOTE] = ACTIONS(5573), + [anon_sym_DOLLAR] = ACTIONS(5571), + [sym_raw_string] = ACTIONS(5573), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5573), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5573), + [anon_sym_BQUOTE] = ACTIONS(5573), + [anon_sym_LT_LPAREN] = ACTIONS(5573), + [anon_sym_GT_LPAREN] = ACTIONS(5573), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5872), + [sym_word] = ACTIONS(5571), }, - [2293] = { - [sym_for_statement] = STATE(2550), - [sym_while_statement] = STATE(2550), - [sym_if_statement] = STATE(2550), - [sym_case_statement] = STATE(2550), - [sym_function_definition] = STATE(2550), - [sym_subshell] = STATE(2550), - [sym_pipeline] = STATE(2550), - [sym_list] = STATE(2550), - [sym_negated_command] = STATE(2550), - [sym_test_command] = STATE(2550), - [sym_declaration_command] = STATE(2550), - [sym_unset_command] = STATE(2550), - [sym_command] = STATE(2550), - [sym_command_name] = STATE(1935), - [sym_variable_assignment] = STATE(2551), - [sym_subscript] = STATE(1937), + [2185] = { + [sym_for_statement] = STATE(2403), + [sym_while_statement] = STATE(2403), + [sym_if_statement] = STATE(2403), + [sym_case_statement] = STATE(2403), + [sym_function_definition] = STATE(2403), + [sym_subshell] = STATE(2403), + [sym_pipeline] = STATE(2403), + [sym_list] = STATE(2403), + [sym_negated_command] = STATE(2403), + [sym_test_command] = STATE(2403), + [sym_declaration_command] = STATE(2403), + [sym_unset_command] = STATE(2403), + [sym_command] = STATE(2403), + [sym_command_name] = STATE(1861), + [sym_variable_assignment] = STATE(2404), + [sym_subscript] = STATE(1863), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(1938), - [sym_string] = STATE(1928), - [sym_simple_expansion] = STATE(1928), - [sym_string_expansion] = STATE(1928), - [sym_expansion] = STATE(1928), - [sym_command_substitution] = STATE(1928), - [sym_process_substitution] = STATE(1928), - [aux_sym_command_repeat1] = STATE(1940), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1858), + [sym_simple_expansion] = STATE(1858), + [sym_string_expansion] = STATE(1858), + [sym_expansion] = STATE(1858), + [sym_command_substitution] = STATE(1858), + [sym_process_substitution] = STATE(1858), + [aux_sym_command_repeat1] = STATE(1865), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4448), + [sym_variable_name] = ACTIONS(4317), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4450), + [anon_sym_while] = ACTIONS(4319), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(4456), + [anon_sym_function] = ACTIONS(4325), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4458), - [anon_sym_LBRACK] = ACTIONS(4460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4462), - [anon_sym_declare] = ACTIONS(4464), - [anon_sym_typeset] = ACTIONS(4464), - [anon_sym_export] = ACTIONS(4464), - [anon_sym_readonly] = ACTIONS(4464), - [anon_sym_local] = ACTIONS(4464), - [anon_sym_unset] = ACTIONS(4466), - [anon_sym_unsetenv] = ACTIONS(4466), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4331), + [anon_sym_declare] = ACTIONS(4333), + [anon_sym_typeset] = ACTIONS(4333), + [anon_sym_export] = ACTIONS(4333), + [anon_sym_readonly] = ACTIONS(4333), + [anon_sym_local] = ACTIONS(4333), + [anon_sym_unset] = ACTIONS(4335), + [anon_sym_unsetenv] = ACTIONS(4335), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -62279,135 +56751,95 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4468), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(4474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), + [sym__special_characters] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4484), + [sym_word] = ACTIONS(4341), }, - [2294] = { - [sym_file_descriptor] = ACTIONS(951), - [sym_variable_name] = ACTIONS(951), - [anon_sym_for] = ACTIONS(953), - [anon_sym_while] = ACTIONS(953), - [anon_sym_if] = ACTIONS(953), - [anon_sym_case] = ACTIONS(953), - [anon_sym_esac] = ACTIONS(953), - [anon_sym_SEMI_SEMI] = ACTIONS(951), - [anon_sym_function] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_BANG] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_LBRACK_LBRACK] = ACTIONS(951), - [anon_sym_declare] = ACTIONS(953), - [anon_sym_typeset] = ACTIONS(953), - [anon_sym_export] = ACTIONS(953), - [anon_sym_readonly] = ACTIONS(953), - [anon_sym_local] = ACTIONS(953), - [anon_sym_unset] = ACTIONS(953), - [anon_sym_unsetenv] = ACTIONS(953), - [anon_sym_LT] = ACTIONS(953), - [anon_sym_GT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_AMP_GT] = ACTIONS(953), - [anon_sym_AMP_GT_GT] = ACTIONS(951), - [anon_sym_LT_AMP] = ACTIONS(951), - [anon_sym_GT_AMP] = ACTIONS(951), - [sym__special_characters] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(953), - [sym_raw_string] = ACTIONS(951), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(951), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(951), - [anon_sym_BQUOTE] = ACTIONS(951), - [anon_sym_LT_LPAREN] = ACTIONS(951), - [anon_sym_GT_LPAREN] = ACTIONS(951), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(953), - }, - [2295] = { - [anon_sym_LT] = ACTIONS(5876), - [anon_sym_GT] = ACTIONS(5876), - [anon_sym_GT_GT] = ACTIONS(5878), - [anon_sym_AMP_GT] = ACTIONS(5876), - [anon_sym_AMP_GT_GT] = ACTIONS(5878), - [anon_sym_LT_AMP] = ACTIONS(5878), - [anon_sym_GT_AMP] = ACTIONS(5878), + [2186] = { + [anon_sym_LT] = ACTIONS(5575), + [anon_sym_GT] = ACTIONS(5575), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5575), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), [sym_comment] = ACTIONS(53), }, - [2296] = { - [sym_concatenation] = STATE(2555), - [sym_string] = STATE(2554), - [sym_simple_expansion] = STATE(2554), - [sym_string_expansion] = STATE(2554), - [sym_expansion] = STATE(2554), - [sym_command_substitution] = STATE(2554), - [sym_process_substitution] = STATE(2554), - [sym__special_characters] = ACTIONS(5880), - [anon_sym_DQUOTE] = ACTIONS(5342), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(5882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5348), - [anon_sym_BQUOTE] = ACTIONS(5350), - [anon_sym_LT_LPAREN] = ACTIONS(5352), - [anon_sym_GT_LPAREN] = ACTIONS(5352), + [2187] = { + [sym_concatenation] = STATE(540), + [sym_string] = STATE(2407), + [sym_simple_expansion] = STATE(2407), + [sym_string_expansion] = STATE(2407), + [sym_expansion] = STATE(2407), + [sym_command_substitution] = STATE(2407), + [sym_process_substitution] = STATE(2407), + [sym__special_characters] = ACTIONS(5579), + [anon_sym_DQUOTE] = ACTIONS(355), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5581), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(361), + [anon_sym_BQUOTE] = ACTIONS(363), + [anon_sym_LT_LPAREN] = ACTIONS(365), + [anon_sym_GT_LPAREN] = ACTIONS(365), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5882), - [sym_regex] = ACTIONS(5884), + [sym_word] = ACTIONS(5581), + [sym_regex] = ACTIONS(975), }, - [2297] = { + [2188] = { [sym_concatenation] = STATE(543), - [sym_string] = STATE(2559), - [sym_simple_expansion] = STATE(2559), - [sym_string_expansion] = STATE(2559), - [sym_expansion] = STATE(2559), - [sym_command_substitution] = STATE(2559), - [sym_process_substitution] = STATE(2559), - [sym__special_characters] = ACTIONS(5886), - [anon_sym_DQUOTE] = ACTIONS(5888), - [anon_sym_DOLLAR] = ACTIONS(5890), - [sym_raw_string] = ACTIONS(5892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5896), - [anon_sym_BQUOTE] = ACTIONS(5898), - [anon_sym_LT_LPAREN] = ACTIONS(5900), - [anon_sym_GT_LPAREN] = ACTIONS(5900), + [sym_string] = STATE(2409), + [sym_simple_expansion] = STATE(2409), + [sym_string_expansion] = STATE(2409), + [sym_expansion] = STATE(2409), + [sym_command_substitution] = STATE(2409), + [sym_process_substitution] = STATE(2409), + [sym__special_characters] = ACTIONS(5583), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5892), + [sym_word] = ACTIONS(5585), }, - [2298] = { + [2189] = { [sym_concatenation] = STATE(547), - [sym_string] = STATE(2565), - [sym_simple_expansion] = STATE(2565), - [sym_string_expansion] = STATE(2565), - [sym_expansion] = STATE(2565), - [sym_command_substitution] = STATE(2565), - [sym_process_substitution] = STATE(2565), - [sym__special_characters] = ACTIONS(5902), - [anon_sym_DQUOTE] = ACTIONS(5888), - [anon_sym_DOLLAR] = ACTIONS(5890), - [sym_raw_string] = ACTIONS(5904), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5896), - [anon_sym_BQUOTE] = ACTIONS(5898), - [anon_sym_LT_LPAREN] = ACTIONS(5900), - [anon_sym_GT_LPAREN] = ACTIONS(5900), + [sym_string] = STATE(2411), + [sym_simple_expansion] = STATE(2411), + [sym_string_expansion] = STATE(2411), + [sym_expansion] = STATE(2411), + [sym_command_substitution] = STATE(2411), + [sym_process_substitution] = STATE(2411), + [sym__special_characters] = ACTIONS(5587), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5904), + [sym_word] = ACTIONS(5589), }, - [2299] = { - [aux_sym_concatenation_repeat1] = STATE(2273), + [2190] = { + [aux_sym_concatenation_repeat1] = STATE(2181), [sym__simple_heredoc_body] = ACTIONS(987), [sym__heredoc_body_beginning] = ACTIONS(987), [sym_file_descriptor] = ACTIONS(987), - [sym__concat] = ACTIONS(5298), + [sym__concat] = ACTIONS(223), [anon_sym_esac] = ACTIONS(989), [anon_sym_PIPE] = ACTIONS(989), [anon_sym_SEMI_SEMI] = ACTIONS(989), @@ -62441,12 +56873,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(987), [anon_sym_AMP] = ACTIONS(989), }, - [2300] = { - [aux_sym_concatenation_repeat1] = STATE(2273), + [2191] = { + [aux_sym_concatenation_repeat1] = STATE(2181), [sym__simple_heredoc_body] = ACTIONS(991), [sym__heredoc_body_beginning] = ACTIONS(991), [sym_file_descriptor] = ACTIONS(991), - [sym__concat] = ACTIONS(5298), + [sym__concat] = ACTIONS(223), [anon_sym_esac] = ACTIONS(993), [anon_sym_PIPE] = ACTIONS(993), [anon_sym_SEMI_SEMI] = ACTIONS(993), @@ -62480,121 +56912,121 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(991), [anon_sym_AMP] = ACTIONS(993), }, - [2301] = { - [sym_file_redirect] = STATE(2566), - [sym_heredoc_redirect] = STATE(2566), + [2192] = { + [sym_file_redirect] = STATE(2412), + [sym_heredoc_redirect] = STATE(2412), [sym_heredoc_body] = STATE(548), - [sym_herestring_redirect] = STATE(2566), - [aux_sym_while_statement_repeat1] = STATE(2566), + [sym_herestring_redirect] = STATE(2412), + [aux_sym_while_statement_repeat1] = STATE(2412), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(5332), + [sym_file_descriptor] = ACTIONS(5127), [anon_sym_esac] = ACTIONS(995), [anon_sym_PIPE] = ACTIONS(995), [anon_sym_SEMI_SEMI] = ACTIONS(995), [anon_sym_PIPE_AMP] = ACTIONS(995), [anon_sym_AMP_AMP] = ACTIONS(995), [anon_sym_PIPE_PIPE] = ACTIONS(995), - [anon_sym_LT] = ACTIONS(5336), - [anon_sym_GT] = ACTIONS(5336), - [anon_sym_GT_GT] = ACTIONS(5336), - [anon_sym_AMP_GT] = ACTIONS(5336), - [anon_sym_AMP_GT_GT] = ACTIONS(5336), - [anon_sym_LT_AMP] = ACTIONS(5336), - [anon_sym_GT_AMP] = ACTIONS(5336), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_GT_GT] = ACTIONS(5131), + [anon_sym_AMP_GT] = ACTIONS(5131), + [anon_sym_AMP_GT_GT] = ACTIONS(5131), + [anon_sym_LT_AMP] = ACTIONS(5131), + [anon_sym_GT_AMP] = ACTIONS(5131), [anon_sym_LT_LT] = ACTIONS(349), [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(5338), + [anon_sym_LT_LT_LT] = ACTIONS(5133), [sym_comment] = ACTIONS(177), [anon_sym_SEMI] = ACTIONS(995), [anon_sym_LF] = ACTIONS(997), [anon_sym_AMP] = ACTIONS(995), }, - [2302] = { - [sym_file_redirect] = STATE(2567), - [sym_heredoc_redirect] = STATE(2567), + [2193] = { + [sym_file_redirect] = STATE(2413), + [sym_heredoc_redirect] = STATE(2413), [sym_heredoc_body] = STATE(548), - [sym_herestring_redirect] = STATE(2567), - [sym_concatenation] = STATE(2568), - [sym_string] = STATE(2300), - [sym_simple_expansion] = STATE(2300), - [sym_string_expansion] = STATE(2300), - [sym_expansion] = STATE(2300), - [sym_command_substitution] = STATE(2300), - [sym_process_substitution] = STATE(2300), - [aux_sym_while_statement_repeat1] = STATE(2567), - [aux_sym_command_repeat2] = STATE(2568), + [sym_herestring_redirect] = STATE(2413), + [sym_concatenation] = STATE(2414), + [sym_string] = STATE(2191), + [sym_simple_expansion] = STATE(2191), + [sym_string_expansion] = STATE(2191), + [sym_expansion] = STATE(2191), + [sym_command_substitution] = STATE(2191), + [sym_process_substitution] = STATE(2191), + [aux_sym_while_statement_repeat1] = STATE(2413), + [aux_sym_command_repeat2] = STATE(2414), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(5332), + [sym_file_descriptor] = ACTIONS(5127), [anon_sym_esac] = ACTIONS(995), [anon_sym_PIPE] = ACTIONS(995), [anon_sym_SEMI_SEMI] = ACTIONS(995), [anon_sym_PIPE_AMP] = ACTIONS(995), [anon_sym_AMP_AMP] = ACTIONS(995), [anon_sym_PIPE_PIPE] = ACTIONS(995), - [anon_sym_EQ_TILDE] = ACTIONS(5334), - [anon_sym_EQ_EQ] = ACTIONS(5334), - [anon_sym_LT] = ACTIONS(5336), - [anon_sym_GT] = ACTIONS(5336), - [anon_sym_GT_GT] = ACTIONS(5336), - [anon_sym_AMP_GT] = ACTIONS(5336), - [anon_sym_AMP_GT_GT] = ACTIONS(5336), - [anon_sym_LT_AMP] = ACTIONS(5336), - [anon_sym_GT_AMP] = ACTIONS(5336), + [anon_sym_EQ_TILDE] = ACTIONS(5129), + [anon_sym_EQ_EQ] = ACTIONS(5129), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_GT_GT] = ACTIONS(5131), + [anon_sym_AMP_GT] = ACTIONS(5131), + [anon_sym_AMP_GT_GT] = ACTIONS(5131), + [anon_sym_LT_AMP] = ACTIONS(5131), + [anon_sym_GT_AMP] = ACTIONS(5131), [anon_sym_LT_LT] = ACTIONS(349), [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(5338), - [sym__special_characters] = ACTIONS(5340), - [anon_sym_DQUOTE] = ACTIONS(5342), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(5344), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5348), - [anon_sym_BQUOTE] = ACTIONS(5350), - [anon_sym_LT_LPAREN] = ACTIONS(5352), - [anon_sym_GT_LPAREN] = ACTIONS(5352), + [anon_sym_LT_LT_LT] = ACTIONS(5133), + [sym__special_characters] = ACTIONS(5135), + [anon_sym_DQUOTE] = ACTIONS(355), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5137), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(361), + [anon_sym_BQUOTE] = ACTIONS(363), + [anon_sym_LT_LPAREN] = ACTIONS(365), + [anon_sym_GT_LPAREN] = ACTIONS(365), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5344), + [sym_word] = ACTIONS(5137), [anon_sym_SEMI] = ACTIONS(995), [anon_sym_LF] = ACTIONS(997), [anon_sym_AMP] = ACTIONS(995), }, - [2303] = { - [anon_sym_esac] = ACTIONS(5870), - [sym__special_characters] = ACTIONS(5874), - [anon_sym_DQUOTE] = ACTIONS(5874), - [anon_sym_DOLLAR] = ACTIONS(5872), - [sym_raw_string] = ACTIONS(5874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5874), - [anon_sym_BQUOTE] = ACTIONS(5874), - [anon_sym_LT_LPAREN] = ACTIONS(5874), - [anon_sym_GT_LPAREN] = ACTIONS(5874), + [2194] = { + [anon_sym_esac] = ACTIONS(5569), + [sym__special_characters] = ACTIONS(5573), + [anon_sym_DQUOTE] = ACTIONS(5573), + [anon_sym_DOLLAR] = ACTIONS(5571), + [sym_raw_string] = ACTIONS(5573), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5573), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5573), + [anon_sym_BQUOTE] = ACTIONS(5573), + [anon_sym_LT_LPAREN] = ACTIONS(5573), + [anon_sym_GT_LPAREN] = ACTIONS(5573), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5872), + [sym_word] = ACTIONS(5571), }, - [2304] = { - [anon_sym_esac] = ACTIONS(5870), - [anon_sym_PIPE] = ACTIONS(5322), - [anon_sym_SEMI_SEMI] = ACTIONS(5906), - [anon_sym_PIPE_AMP] = ACTIONS(5322), - [anon_sym_AMP_AMP] = ACTIONS(5326), - [anon_sym_PIPE_PIPE] = ACTIONS(5326), + [2195] = { + [anon_sym_esac] = ACTIONS(5569), + [anon_sym_PIPE] = ACTIONS(5121), + [anon_sym_SEMI_SEMI] = ACTIONS(5591), + [anon_sym_PIPE_AMP] = ACTIONS(5121), + [anon_sym_AMP_AMP] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5125), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5328), - [anon_sym_LF] = ACTIONS(5330), - [anon_sym_AMP] = ACTIONS(5328), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(331), }, - [2305] = { + [2196] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [anon_sym_esac] = ACTIONS(5870), - [anon_sym_PIPE] = ACTIONS(5322), - [anon_sym_SEMI_SEMI] = ACTIONS(5906), - [anon_sym_PIPE_AMP] = ACTIONS(5322), - [anon_sym_AMP_AMP] = ACTIONS(5326), - [anon_sym_PIPE_PIPE] = ACTIONS(5326), + [anon_sym_esac] = ACTIONS(5569), + [anon_sym_PIPE] = ACTIONS(5121), + [anon_sym_SEMI_SEMI] = ACTIONS(5591), + [anon_sym_PIPE_AMP] = ACTIONS(5121), + [anon_sym_AMP_AMP] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5125), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(371), @@ -62613,27 +57045,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(371), [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(5328), - [anon_sym_LF] = ACTIONS(5330), - [anon_sym_AMP] = ACTIONS(5328), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(331), }, - [2306] = { - [sym__terminated_statement] = STATE(2306), - [sym_for_statement] = STATE(2570), - [sym_while_statement] = STATE(2570), - [sym_if_statement] = STATE(2570), - [sym_case_statement] = STATE(2570), - [sym_function_definition] = STATE(2570), - [sym_subshell] = STATE(2570), - [sym_pipeline] = STATE(2570), - [sym_list] = STATE(2570), - [sym_negated_command] = STATE(2570), - [sym_test_command] = STATE(2570), - [sym_declaration_command] = STATE(2570), - [sym_unset_command] = STATE(2570), - [sym_command] = STATE(2570), + [2197] = { + [sym__terminated_statement] = STATE(2197), + [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_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2571), + [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -62643,7 +57075,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2306), + [aux_sym_program_repeat1] = STATE(2197), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(999), [sym_variable_name] = ACTIONS(1002), @@ -62651,7 +57083,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1010), [anon_sym_if] = ACTIONS(1013), [anon_sym_case] = ACTIONS(1016), - [anon_sym_esac] = ACTIONS(3526), + [anon_sym_esac] = ACTIONS(3442), [anon_sym_SEMI_SEMI] = ACTIONS(1005), [anon_sym_function] = ACTIONS(1019), [anon_sym_LPAREN] = ACTIONS(1022), @@ -62684,104 +57116,104 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(1070), }, - [2307] = { - [sym_file_redirect] = STATE(2567), - [sym_heredoc_redirect] = STATE(2567), + [2198] = { + [sym_file_redirect] = STATE(2413), + [sym_heredoc_redirect] = STATE(2413), [sym_heredoc_body] = STATE(548), - [sym_herestring_redirect] = STATE(2567), - [sym_concatenation] = STATE(2572), - [sym_string] = STATE(2300), - [sym_simple_expansion] = STATE(2300), - [sym_string_expansion] = STATE(2300), - [sym_expansion] = STATE(2300), - [sym_command_substitution] = STATE(2300), - [sym_process_substitution] = STATE(2300), - [aux_sym_while_statement_repeat1] = STATE(2567), - [aux_sym_command_repeat2] = STATE(2572), + [sym_herestring_redirect] = STATE(2413), + [sym_concatenation] = STATE(2416), + [sym_string] = STATE(2191), + [sym_simple_expansion] = STATE(2191), + [sym_string_expansion] = STATE(2191), + [sym_expansion] = STATE(2191), + [sym_command_substitution] = STATE(2191), + [sym_process_substitution] = STATE(2191), + [aux_sym_while_statement_repeat1] = STATE(2413), + [aux_sym_command_repeat2] = STATE(2416), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(5332), + [sym_file_descriptor] = ACTIONS(5127), [anon_sym_esac] = ACTIONS(995), [anon_sym_PIPE] = ACTIONS(995), [anon_sym_SEMI_SEMI] = ACTIONS(995), [anon_sym_PIPE_AMP] = ACTIONS(995), [anon_sym_AMP_AMP] = ACTIONS(995), [anon_sym_PIPE_PIPE] = ACTIONS(995), - [anon_sym_EQ_TILDE] = ACTIONS(5334), - [anon_sym_EQ_EQ] = ACTIONS(5334), - [anon_sym_LT] = ACTIONS(5336), - [anon_sym_GT] = ACTIONS(5336), - [anon_sym_GT_GT] = ACTIONS(5336), - [anon_sym_AMP_GT] = ACTIONS(5336), - [anon_sym_AMP_GT_GT] = ACTIONS(5336), - [anon_sym_LT_AMP] = ACTIONS(5336), - [anon_sym_GT_AMP] = ACTIONS(5336), + [anon_sym_EQ_TILDE] = ACTIONS(5129), + [anon_sym_EQ_EQ] = ACTIONS(5129), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_GT_GT] = ACTIONS(5131), + [anon_sym_AMP_GT] = ACTIONS(5131), + [anon_sym_AMP_GT_GT] = ACTIONS(5131), + [anon_sym_LT_AMP] = ACTIONS(5131), + [anon_sym_GT_AMP] = ACTIONS(5131), [anon_sym_LT_LT] = ACTIONS(349), [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(5338), - [sym__special_characters] = ACTIONS(5340), - [anon_sym_DQUOTE] = ACTIONS(5342), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(5344), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5348), - [anon_sym_BQUOTE] = ACTIONS(5350), - [anon_sym_LT_LPAREN] = ACTIONS(5352), - [anon_sym_GT_LPAREN] = ACTIONS(5352), + [anon_sym_LT_LT_LT] = ACTIONS(5133), + [sym__special_characters] = ACTIONS(5135), + [anon_sym_DQUOTE] = ACTIONS(355), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5137), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(361), + [anon_sym_BQUOTE] = ACTIONS(363), + [anon_sym_LT_LPAREN] = ACTIONS(365), + [anon_sym_GT_LPAREN] = ACTIONS(365), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5344), + [sym_word] = ACTIONS(5137), [anon_sym_SEMI] = ACTIONS(995), [anon_sym_LF] = ACTIONS(997), [anon_sym_AMP] = ACTIONS(995), }, - [2308] = { - [sym__terminated_statement] = STATE(2306), - [sym_for_statement] = STATE(2574), - [sym_while_statement] = STATE(2574), - [sym_if_statement] = STATE(2574), - [sym_case_statement] = STATE(2574), - [sym_function_definition] = STATE(2574), - [sym_subshell] = STATE(2574), - [sym_pipeline] = STATE(2574), - [sym_list] = STATE(2574), - [sym_negated_command] = STATE(2574), - [sym_test_command] = STATE(2574), - [sym_declaration_command] = STATE(2574), - [sym_unset_command] = STATE(2574), - [sym_command] = STATE(2574), - [sym_command_name] = STATE(1935), - [sym_variable_assignment] = STATE(2575), - [sym_subscript] = STATE(1937), + [2199] = { + [sym__terminated_statement] = STATE(2197), + [sym_for_statement] = STATE(2418), + [sym_while_statement] = STATE(2418), + [sym_if_statement] = STATE(2418), + [sym_case_statement] = STATE(2418), + [sym_function_definition] = STATE(2418), + [sym_subshell] = STATE(2418), + [sym_pipeline] = STATE(2418), + [sym_list] = STATE(2418), + [sym_negated_command] = STATE(2418), + [sym_test_command] = STATE(2418), + [sym_declaration_command] = STATE(2418), + [sym_unset_command] = STATE(2418), + [sym_command] = STATE(2418), + [sym_command_name] = STATE(1861), + [sym_variable_assignment] = STATE(2419), + [sym_subscript] = STATE(1863), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(1938), - [sym_string] = STATE(1928), - [sym_simple_expansion] = STATE(1928), - [sym_string_expansion] = STATE(1928), - [sym_expansion] = STATE(1928), - [sym_command_substitution] = STATE(1928), - [sym_process_substitution] = STATE(1928), - [aux_sym_program_repeat1] = STATE(2306), - [aux_sym_command_repeat1] = STATE(1940), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1858), + [sym_simple_expansion] = STATE(1858), + [sym_string_expansion] = STATE(1858), + [sym_expansion] = STATE(1858), + [sym_command_substitution] = STATE(1858), + [sym_process_substitution] = STATE(1858), + [aux_sym_program_repeat1] = STATE(2197), + [aux_sym_command_repeat1] = STATE(1865), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4448), + [sym_variable_name] = ACTIONS(4317), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4450), + [anon_sym_while] = ACTIONS(4319), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(5870), - [anon_sym_SEMI_SEMI] = ACTIONS(5908), - [anon_sym_function] = ACTIONS(4456), + [anon_sym_esac] = ACTIONS(5569), + [anon_sym_SEMI_SEMI] = ACTIONS(5593), + [anon_sym_function] = ACTIONS(4325), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4458), - [anon_sym_LBRACK] = ACTIONS(4460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4462), - [anon_sym_declare] = ACTIONS(4464), - [anon_sym_typeset] = ACTIONS(4464), - [anon_sym_export] = ACTIONS(4464), - [anon_sym_readonly] = ACTIONS(4464), - [anon_sym_local] = ACTIONS(4464), - [anon_sym_unset] = ACTIONS(4466), - [anon_sym_unsetenv] = ACTIONS(4466), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4331), + [anon_sym_declare] = ACTIONS(4333), + [anon_sym_typeset] = ACTIONS(4333), + [anon_sym_export] = ACTIONS(4333), + [anon_sym_readonly] = ACTIONS(4333), + [anon_sym_local] = ACTIONS(4333), + [anon_sym_unset] = ACTIONS(4335), + [anon_sym_unsetenv] = ACTIONS(4335), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -62789,26 +57221,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4468), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(4474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), + [sym__special_characters] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4484), + [sym_word] = ACTIONS(4341), }, - [2309] = { + [2200] = { [sym_file_descriptor] = ACTIONS(951), [sym_variable_name] = ACTIONS(951), [anon_sym_for] = ACTIONS(953), [anon_sym_while] = ACTIONS(953), [anon_sym_if] = ACTIONS(953), [anon_sym_case] = ACTIONS(953), - [anon_sym_esac] = ACTIONS(5910), + [anon_sym_esac] = ACTIONS(5595), [anon_sym_SEMI_SEMI] = ACTIONS(951), [anon_sym_function] = ACTIONS(953), [anon_sym_LPAREN] = ACTIONS(951), @@ -62829,53 +57261,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(951), [anon_sym_LT_AMP] = ACTIONS(951), [anon_sym_GT_AMP] = ACTIONS(951), - [sym__special_characters] = ACTIONS(5912), - [anon_sym_DQUOTE] = ACTIONS(5914), - [anon_sym_DOLLAR] = ACTIONS(5912), - [sym_raw_string] = ACTIONS(5914), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5914), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5914), - [anon_sym_BQUOTE] = ACTIONS(5914), - [anon_sym_LT_LPAREN] = ACTIONS(5914), - [anon_sym_GT_LPAREN] = ACTIONS(5914), + [sym__special_characters] = ACTIONS(5597), + [anon_sym_DQUOTE] = ACTIONS(5599), + [anon_sym_DOLLAR] = ACTIONS(5597), + [sym_raw_string] = ACTIONS(5599), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5599), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5599), + [anon_sym_BQUOTE] = ACTIONS(5599), + [anon_sym_LT_LPAREN] = ACTIONS(5599), + [anon_sym_GT_LPAREN] = ACTIONS(5599), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5912), + [sym_word] = ACTIONS(5597), }, - [2310] = { - [anon_sym_esac] = ACTIONS(5910), - [sym__special_characters] = ACTIONS(5914), - [anon_sym_DQUOTE] = ACTIONS(5914), - [anon_sym_DOLLAR] = ACTIONS(5912), - [sym_raw_string] = ACTIONS(5914), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5914), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5914), - [anon_sym_BQUOTE] = ACTIONS(5914), - [anon_sym_LT_LPAREN] = ACTIONS(5914), - [anon_sym_GT_LPAREN] = ACTIONS(5914), + [2201] = { + [anon_sym_esac] = ACTIONS(5595), + [sym__special_characters] = ACTIONS(5599), + [anon_sym_DQUOTE] = ACTIONS(5599), + [anon_sym_DOLLAR] = ACTIONS(5597), + [sym_raw_string] = ACTIONS(5599), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5599), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5599), + [anon_sym_BQUOTE] = ACTIONS(5599), + [anon_sym_LT_LPAREN] = ACTIONS(5599), + [anon_sym_GT_LPAREN] = ACTIONS(5599), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5912), + [sym_word] = ACTIONS(5597), }, - [2311] = { - [anon_sym_esac] = ACTIONS(5910), - [anon_sym_PIPE] = ACTIONS(5322), - [anon_sym_SEMI_SEMI] = ACTIONS(5916), - [anon_sym_PIPE_AMP] = ACTIONS(5322), - [anon_sym_AMP_AMP] = ACTIONS(5326), - [anon_sym_PIPE_PIPE] = ACTIONS(5326), + [2202] = { + [anon_sym_esac] = ACTIONS(5595), + [anon_sym_PIPE] = ACTIONS(5121), + [anon_sym_SEMI_SEMI] = ACTIONS(5601), + [anon_sym_PIPE_AMP] = ACTIONS(5121), + [anon_sym_AMP_AMP] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5125), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5328), - [anon_sym_LF] = ACTIONS(5330), - [anon_sym_AMP] = ACTIONS(5328), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(331), }, - [2312] = { + [2203] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [anon_sym_esac] = ACTIONS(5910), - [anon_sym_PIPE] = ACTIONS(5322), - [anon_sym_SEMI_SEMI] = ACTIONS(5916), - [anon_sym_PIPE_AMP] = ACTIONS(5322), - [anon_sym_AMP_AMP] = ACTIONS(5326), - [anon_sym_PIPE_PIPE] = ACTIONS(5326), + [anon_sym_esac] = ACTIONS(5595), + [anon_sym_PIPE] = ACTIONS(5121), + [anon_sym_SEMI_SEMI] = ACTIONS(5601), + [anon_sym_PIPE_AMP] = ACTIONS(5121), + [anon_sym_AMP_AMP] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5125), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(371), @@ -62894,58 +57326,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(371), [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(5328), - [anon_sym_LF] = ACTIONS(5330), - [anon_sym_AMP] = ACTIONS(5328), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(331), }, - [2313] = { - [sym__terminated_statement] = STATE(2306), - [sym_for_statement] = STATE(2578), - [sym_while_statement] = STATE(2578), - [sym_if_statement] = STATE(2578), - [sym_case_statement] = STATE(2578), - [sym_function_definition] = STATE(2578), - [sym_subshell] = STATE(2578), - [sym_pipeline] = STATE(2578), - [sym_list] = STATE(2578), - [sym_negated_command] = STATE(2578), - [sym_test_command] = STATE(2578), - [sym_declaration_command] = STATE(2578), - [sym_unset_command] = STATE(2578), - [sym_command] = STATE(2578), - [sym_command_name] = STATE(1935), - [sym_variable_assignment] = STATE(2579), - [sym_subscript] = STATE(1937), + [2204] = { + [sym__terminated_statement] = STATE(2197), + [sym_for_statement] = STATE(2422), + [sym_while_statement] = STATE(2422), + [sym_if_statement] = STATE(2422), + [sym_case_statement] = STATE(2422), + [sym_function_definition] = STATE(2422), + [sym_subshell] = STATE(2422), + [sym_pipeline] = STATE(2422), + [sym_list] = STATE(2422), + [sym_negated_command] = STATE(2422), + [sym_test_command] = STATE(2422), + [sym_declaration_command] = STATE(2422), + [sym_unset_command] = STATE(2422), + [sym_command] = STATE(2422), + [sym_command_name] = STATE(1861), + [sym_variable_assignment] = STATE(2423), + [sym_subscript] = STATE(1863), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(1938), - [sym_string] = STATE(1928), - [sym_simple_expansion] = STATE(1928), - [sym_string_expansion] = STATE(1928), - [sym_expansion] = STATE(1928), - [sym_command_substitution] = STATE(1928), - [sym_process_substitution] = STATE(1928), - [aux_sym_program_repeat1] = STATE(2306), - [aux_sym_command_repeat1] = STATE(1940), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1858), + [sym_simple_expansion] = STATE(1858), + [sym_string_expansion] = STATE(1858), + [sym_expansion] = STATE(1858), + [sym_command_substitution] = STATE(1858), + [sym_process_substitution] = STATE(1858), + [aux_sym_program_repeat1] = STATE(2197), + [aux_sym_command_repeat1] = STATE(1865), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4448), + [sym_variable_name] = ACTIONS(4317), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4450), + [anon_sym_while] = ACTIONS(4319), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(5910), - [anon_sym_SEMI_SEMI] = ACTIONS(5918), - [anon_sym_function] = ACTIONS(4456), + [anon_sym_esac] = ACTIONS(5595), + [anon_sym_SEMI_SEMI] = ACTIONS(5603), + [anon_sym_function] = ACTIONS(4325), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4458), - [anon_sym_LBRACK] = ACTIONS(4460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4462), - [anon_sym_declare] = ACTIONS(4464), - [anon_sym_typeset] = ACTIONS(4464), - [anon_sym_export] = ACTIONS(4464), - [anon_sym_readonly] = ACTIONS(4464), - [anon_sym_local] = ACTIONS(4464), - [anon_sym_unset] = ACTIONS(4466), - [anon_sym_unsetenv] = ACTIONS(4466), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4331), + [anon_sym_declare] = ACTIONS(4333), + [anon_sym_typeset] = ACTIONS(4333), + [anon_sym_export] = ACTIONS(4333), + [anon_sym_readonly] = ACTIONS(4333), + [anon_sym_local] = ACTIONS(4333), + [anon_sym_unset] = ACTIONS(4335), + [anon_sym_unsetenv] = ACTIONS(4335), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -62953,35 +57385,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4468), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(4474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), + [sym__special_characters] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4484), + [sym_word] = ACTIONS(4341), }, - [2314] = { - [sym__terminated_statement] = STATE(2583), - [sym_for_statement] = STATE(2581), - [sym_while_statement] = STATE(2581), - [sym_if_statement] = STATE(2581), - [sym_case_statement] = STATE(2581), - [sym_function_definition] = STATE(2581), - [sym_subshell] = STATE(2581), - [sym_pipeline] = STATE(2581), - [sym_list] = STATE(2581), - [sym_negated_command] = STATE(2581), - [sym_test_command] = STATE(2581), - [sym_declaration_command] = STATE(2581), - [sym_unset_command] = STATE(2581), - [sym_command] = STATE(2581), + [2205] = { + [sym__terminated_statement] = STATE(2427), + [sym_for_statement] = STATE(2425), + [sym_while_statement] = STATE(2425), + [sym_if_statement] = STATE(2425), + [sym_case_statement] = STATE(2425), + [sym_function_definition] = STATE(2425), + [sym_subshell] = STATE(2425), + [sym_pipeline] = STATE(2425), + [sym_list] = STATE(2425), + [sym_negated_command] = STATE(2425), + [sym_test_command] = STATE(2425), + [sym_declaration_command] = STATE(2425), + [sym_unset_command] = STATE(2425), + [sym_command] = STATE(2425), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2582), + [sym_variable_assignment] = STATE(2426), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -62991,7 +57423,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2583), + [aux_sym_program_repeat1] = STATE(2427), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), @@ -62999,7 +57431,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(13), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(5920), + [anon_sym_SEMI_SEMI] = ACTIONS(5605), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -63031,29 +57463,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [2315] = { - [aux_sym_case_item_repeat1] = STATE(1942), - [anon_sym_PIPE] = ACTIONS(3555), - [anon_sym_RPAREN] = ACTIONS(5922), + [2206] = { + [aux_sym_case_item_repeat1] = STATE(1867), + [anon_sym_PIPE] = ACTIONS(3467), + [anon_sym_RPAREN] = ACTIONS(5607), [sym_comment] = ACTIONS(53), }, - [2316] = { - [sym__terminated_statement] = STATE(2588), - [sym_for_statement] = STATE(2586), - [sym_while_statement] = STATE(2586), - [sym_if_statement] = STATE(2586), - [sym_case_statement] = STATE(2586), - [sym_function_definition] = STATE(2586), - [sym_subshell] = STATE(2586), - [sym_pipeline] = STATE(2586), - [sym_list] = STATE(2586), - [sym_negated_command] = STATE(2586), - [sym_test_command] = STATE(2586), - [sym_declaration_command] = STATE(2586), - [sym_unset_command] = STATE(2586), - [sym_command] = STATE(2586), + [2207] = { + [sym__terminated_statement] = STATE(2432), + [sym_for_statement] = STATE(2430), + [sym_while_statement] = STATE(2430), + [sym_if_statement] = STATE(2430), + [sym_case_statement] = STATE(2430), + [sym_function_definition] = STATE(2430), + [sym_subshell] = STATE(2430), + [sym_pipeline] = STATE(2430), + [sym_list] = STATE(2430), + [sym_negated_command] = STATE(2430), + [sym_test_command] = STATE(2430), + [sym_declaration_command] = STATE(2430), + [sym_unset_command] = STATE(2430), + [sym_command] = STATE(2430), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2587), + [sym_variable_assignment] = STATE(2431), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -63063,7 +57495,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2588), + [aux_sym_program_repeat1] = STATE(2432), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), @@ -63071,7 +57503,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(13), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(5924), + [anon_sym_SEMI_SEMI] = ACTIONS(5609), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -63103,209 +57535,239 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [2317] = { - [aux_sym_case_item_repeat1] = STATE(1942), - [anon_sym_PIPE] = ACTIONS(3555), - [anon_sym_RPAREN] = ACTIONS(5926), + [2208] = { + [aux_sym_case_item_repeat1] = STATE(1867), + [anon_sym_PIPE] = ACTIONS(3467), + [anon_sym_RPAREN] = ACTIONS(5611), [sym_comment] = ACTIONS(53), }, - [2318] = { - [anon_sym_esac] = ACTIONS(5928), - [anon_sym_PIPE] = ACTIONS(5928), - [anon_sym_RPAREN] = ACTIONS(5928), - [anon_sym_SEMI_SEMI] = ACTIONS(5928), - [anon_sym_PIPE_AMP] = ACTIONS(5928), - [anon_sym_AMP_AMP] = ACTIONS(5928), - [anon_sym_PIPE_PIPE] = ACTIONS(5928), + [2209] = { + [anon_sym_esac] = ACTIONS(5613), + [anon_sym_PIPE] = ACTIONS(5613), + [anon_sym_RPAREN] = ACTIONS(5613), + [anon_sym_SEMI_SEMI] = ACTIONS(5613), + [anon_sym_PIPE_AMP] = ACTIONS(5613), + [anon_sym_AMP_AMP] = ACTIONS(5613), + [anon_sym_PIPE_PIPE] = ACTIONS(5613), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5928), - [anon_sym_LF] = ACTIONS(5930), - [anon_sym_AMP] = ACTIONS(5928), + [anon_sym_SEMI] = ACTIONS(5613), + [anon_sym_LF] = ACTIONS(5615), + [anon_sym_AMP] = ACTIONS(5613), }, - [2319] = { - [anon_sym_esac] = ACTIONS(5932), - [anon_sym_PIPE] = ACTIONS(5932), - [anon_sym_RPAREN] = ACTIONS(5932), - [anon_sym_SEMI_SEMI] = ACTIONS(5932), - [anon_sym_PIPE_AMP] = ACTIONS(5932), - [anon_sym_AMP_AMP] = ACTIONS(5932), - [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [2210] = { + [anon_sym_esac] = ACTIONS(5617), + [anon_sym_PIPE] = ACTIONS(5617), + [anon_sym_RPAREN] = ACTIONS(5617), + [anon_sym_SEMI_SEMI] = ACTIONS(5617), + [anon_sym_PIPE_AMP] = ACTIONS(5617), + [anon_sym_AMP_AMP] = ACTIONS(5617), + [anon_sym_PIPE_PIPE] = ACTIONS(5617), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5932), - [anon_sym_LF] = ACTIONS(5934), - [anon_sym_AMP] = ACTIONS(5932), + [anon_sym_SEMI] = ACTIONS(5617), + [anon_sym_LF] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5617), }, - [2320] = { - [sym__concat] = ACTIONS(5540), - [anon_sym_in] = ACTIONS(5542), - [anon_sym_SEMI_SEMI] = ACTIONS(5542), + [2211] = { + [sym__concat] = ACTIONS(5325), + [anon_sym_in] = ACTIONS(5327), + [anon_sym_SEMI_SEMI] = ACTIONS(5327), + [sym__special_characters] = ACTIONS(5327), + [anon_sym_DQUOTE] = ACTIONS(5327), + [anon_sym_DOLLAR] = ACTIONS(5327), + [sym_raw_string] = ACTIONS(5327), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5327), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5327), + [anon_sym_BQUOTE] = ACTIONS(5327), + [anon_sym_LT_LPAREN] = ACTIONS(5327), + [anon_sym_GT_LPAREN] = ACTIONS(5327), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5542), - [anon_sym_LF] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(5542), + [sym_word] = ACTIONS(5327), + [anon_sym_SEMI] = ACTIONS(5327), + [anon_sym_LF] = ACTIONS(5325), + [anon_sym_AMP] = ACTIONS(5327), }, - [2321] = { - [sym__concat] = ACTIONS(5544), - [anon_sym_in] = ACTIONS(5546), - [anon_sym_SEMI_SEMI] = ACTIONS(5546), + [2212] = { + [sym__concat] = ACTIONS(5329), + [anon_sym_in] = ACTIONS(5331), + [anon_sym_SEMI_SEMI] = ACTIONS(5331), + [sym__special_characters] = ACTIONS(5331), + [anon_sym_DQUOTE] = ACTIONS(5331), + [anon_sym_DOLLAR] = ACTIONS(5331), + [sym_raw_string] = ACTIONS(5331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5331), + [anon_sym_BQUOTE] = ACTIONS(5331), + [anon_sym_LT_LPAREN] = ACTIONS(5331), + [anon_sym_GT_LPAREN] = ACTIONS(5331), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5546), - [anon_sym_LF] = ACTIONS(5544), - [anon_sym_AMP] = ACTIONS(5546), + [sym_word] = ACTIONS(5331), + [anon_sym_SEMI] = ACTIONS(5331), + [anon_sym_LF] = ACTIONS(5329), + [anon_sym_AMP] = ACTIONS(5331), }, - [2322] = { - [sym__concat] = ACTIONS(5548), - [anon_sym_in] = ACTIONS(5550), - [anon_sym_SEMI_SEMI] = ACTIONS(5550), + [2213] = { + [sym__concat] = ACTIONS(5333), + [anon_sym_in] = ACTIONS(5335), + [anon_sym_SEMI_SEMI] = ACTIONS(5335), + [sym__special_characters] = ACTIONS(5335), + [anon_sym_DQUOTE] = ACTIONS(5335), + [anon_sym_DOLLAR] = ACTIONS(5335), + [sym_raw_string] = ACTIONS(5335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5335), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5335), + [anon_sym_BQUOTE] = ACTIONS(5335), + [anon_sym_LT_LPAREN] = ACTIONS(5335), + [anon_sym_GT_LPAREN] = ACTIONS(5335), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5550), - [anon_sym_LF] = ACTIONS(5548), - [anon_sym_AMP] = ACTIONS(5550), + [sym_word] = ACTIONS(5335), + [anon_sym_SEMI] = ACTIONS(5335), + [anon_sym_LF] = ACTIONS(5333), + [anon_sym_AMP] = ACTIONS(5335), }, - [2323] = { - [aux_sym_concatenation_repeat1] = STATE(2323), - [sym__concat] = ACTIONS(2612), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), + [2214] = { + [aux_sym_concatenation_repeat1] = STATE(2214), + [sym__concat] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, - [2324] = { - [aux_sym_concatenation_repeat1] = STATE(2324), - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(5399), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1656), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1656), - [anon_sym_LT_AMP] = ACTIONS(1656), - [anon_sym_GT_AMP] = ACTIONS(1656), - [anon_sym_LT_LT] = ACTIONS(1656), - [anon_sym_LT_LT_DASH] = ACTIONS(1656), - [anon_sym_LT_LT_LT] = ACTIONS(1656), + [2215] = { + [aux_sym_concatenation_repeat1] = STATE(2215), + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(5184), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1644), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1644), + [anon_sym_LT_AMP] = ACTIONS(1644), + [anon_sym_GT_AMP] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1644), + [anon_sym_LT_LT_DASH] = ACTIONS(1644), + [anon_sym_LT_LT_LT] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, - [2325] = { - [sym__concat] = ACTIONS(5540), - [anon_sym_AMP_AMP] = ACTIONS(5540), - [anon_sym_PIPE_PIPE] = ACTIONS(5540), - [anon_sym_RBRACK] = ACTIONS(5540), - [anon_sym_EQ_TILDE] = ACTIONS(5540), - [anon_sym_EQ_EQ] = ACTIONS(5540), - [anon_sym_EQ] = ACTIONS(5542), - [anon_sym_LT] = ACTIONS(5540), - [anon_sym_GT] = ACTIONS(5540), - [anon_sym_BANG_EQ] = ACTIONS(5540), + [2216] = { + [sym__concat] = ACTIONS(5325), + [anon_sym_AMP_AMP] = ACTIONS(5325), + [anon_sym_PIPE_PIPE] = ACTIONS(5325), + [anon_sym_RBRACK] = ACTIONS(5325), + [anon_sym_EQ_TILDE] = ACTIONS(5325), + [anon_sym_EQ_EQ] = ACTIONS(5325), + [anon_sym_EQ] = ACTIONS(5327), + [anon_sym_LT] = ACTIONS(5325), + [anon_sym_GT] = ACTIONS(5325), + [anon_sym_BANG_EQ] = ACTIONS(5325), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5540), + [sym_test_operator] = ACTIONS(5325), }, - [2326] = { - [sym__concat] = ACTIONS(5544), - [anon_sym_AMP_AMP] = ACTIONS(5544), - [anon_sym_PIPE_PIPE] = ACTIONS(5544), - [anon_sym_RBRACK] = ACTIONS(5544), - [anon_sym_EQ_TILDE] = ACTIONS(5544), - [anon_sym_EQ_EQ] = ACTIONS(5544), - [anon_sym_EQ] = ACTIONS(5546), - [anon_sym_LT] = ACTIONS(5544), - [anon_sym_GT] = ACTIONS(5544), - [anon_sym_BANG_EQ] = ACTIONS(5544), + [2217] = { + [sym__concat] = ACTIONS(5329), + [anon_sym_AMP_AMP] = ACTIONS(5329), + [anon_sym_PIPE_PIPE] = ACTIONS(5329), + [anon_sym_RBRACK] = ACTIONS(5329), + [anon_sym_EQ_TILDE] = ACTIONS(5329), + [anon_sym_EQ_EQ] = ACTIONS(5329), + [anon_sym_EQ] = ACTIONS(5331), + [anon_sym_LT] = ACTIONS(5329), + [anon_sym_GT] = ACTIONS(5329), + [anon_sym_BANG_EQ] = ACTIONS(5329), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5544), + [sym_test_operator] = ACTIONS(5329), }, - [2327] = { - [sym__concat] = ACTIONS(5548), - [anon_sym_AMP_AMP] = ACTIONS(5548), - [anon_sym_PIPE_PIPE] = ACTIONS(5548), - [anon_sym_RBRACK] = ACTIONS(5548), - [anon_sym_EQ_TILDE] = ACTIONS(5548), - [anon_sym_EQ_EQ] = ACTIONS(5548), - [anon_sym_EQ] = ACTIONS(5550), - [anon_sym_LT] = ACTIONS(5548), - [anon_sym_GT] = ACTIONS(5548), - [anon_sym_BANG_EQ] = ACTIONS(5548), + [2218] = { + [sym__concat] = ACTIONS(5333), + [anon_sym_AMP_AMP] = ACTIONS(5333), + [anon_sym_PIPE_PIPE] = ACTIONS(5333), + [anon_sym_RBRACK] = ACTIONS(5333), + [anon_sym_EQ_TILDE] = ACTIONS(5333), + [anon_sym_EQ_EQ] = ACTIONS(5333), + [anon_sym_EQ] = ACTIONS(5335), + [anon_sym_LT] = ACTIONS(5333), + [anon_sym_GT] = ACTIONS(5333), + [anon_sym_BANG_EQ] = ACTIONS(5333), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5548), + [sym_test_operator] = ACTIONS(5333), }, - [2328] = { - [sym_file_descriptor] = ACTIONS(2752), - [sym__concat] = ACTIONS(2752), - [anon_sym_esac] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_SEMI_SEMI] = ACTIONS(2754), - [anon_sym_PIPE_AMP] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2754), - [anon_sym_GT] = ACTIONS(2754), - [anon_sym_GT_GT] = ACTIONS(2754), - [anon_sym_AMP_GT] = ACTIONS(2754), - [anon_sym_AMP_GT_GT] = ACTIONS(2754), - [anon_sym_LT_AMP] = ACTIONS(2754), - [anon_sym_GT_AMP] = ACTIONS(2754), - [anon_sym_LT_LT] = ACTIONS(2754), - [anon_sym_LT_LT_DASH] = ACTIONS(2754), - [anon_sym_LT_LT_LT] = ACTIONS(2754), + [2219] = { + [sym_file_descriptor] = ACTIONS(2710), + [sym__concat] = ACTIONS(2710), + [anon_sym_esac] = ACTIONS(2712), + [anon_sym_PIPE] = ACTIONS(2712), + [anon_sym_RPAREN] = ACTIONS(2712), + [anon_sym_SEMI_SEMI] = ACTIONS(2712), + [anon_sym_PIPE_AMP] = ACTIONS(2712), + [anon_sym_AMP_AMP] = ACTIONS(2712), + [anon_sym_PIPE_PIPE] = ACTIONS(2712), + [anon_sym_LT] = ACTIONS(2712), + [anon_sym_GT] = ACTIONS(2712), + [anon_sym_GT_GT] = ACTIONS(2712), + [anon_sym_AMP_GT] = ACTIONS(2712), + [anon_sym_AMP_GT_GT] = ACTIONS(2712), + [anon_sym_LT_AMP] = ACTIONS(2712), + [anon_sym_GT_AMP] = ACTIONS(2712), + [anon_sym_LT_LT] = ACTIONS(2712), + [anon_sym_LT_LT_DASH] = ACTIONS(2712), + [anon_sym_LT_LT_LT] = ACTIONS(2712), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_LF] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2754), + [anon_sym_SEMI] = ACTIONS(2712), + [anon_sym_LF] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2712), }, - [2329] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5936), + [2220] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(5621), [sym_comment] = ACTIONS(53), }, - [2330] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5938), + [2221] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(5623), [sym_comment] = ACTIONS(53), }, - [2331] = { - [anon_sym_RBRACE] = ACTIONS(5938), + [2222] = { + [anon_sym_RBRACE] = ACTIONS(5623), [sym_comment] = ACTIONS(53), }, - [2332] = { - [sym_concatenation] = STATE(2593), + [2223] = { + [sym_concatenation] = STATE(2437), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2593), - [anon_sym_RBRACE] = ACTIONS(5940), - [anon_sym_EQ] = ACTIONS(5942), + [aux_sym_expansion_repeat1] = STATE(2437), + [anon_sym_RBRACE] = ACTIONS(5625), + [anon_sym_EQ] = ACTIONS(5627), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5944), + [anon_sym_POUND] = ACTIONS(5629), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5942), - [anon_sym_COLON_QMARK] = ACTIONS(5942), - [anon_sym_COLON_DASH] = ACTIONS(5942), - [anon_sym_PERCENT] = ACTIONS(5942), - [anon_sym_DASH] = ACTIONS(5942), + [anon_sym_COLON] = ACTIONS(5627), + [anon_sym_COLON_QMARK] = ACTIONS(5627), + [anon_sym_COLON_DASH] = ACTIONS(5627), + [anon_sym_PERCENT] = ACTIONS(5627), + [anon_sym_DASH] = ACTIONS(5627), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -63313,103 +57775,2230 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2333] = { - [sym_file_descriptor] = ACTIONS(2830), - [sym__concat] = ACTIONS(2830), - [anon_sym_esac] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_RPAREN] = ACTIONS(2832), - [anon_sym_SEMI_SEMI] = ACTIONS(2832), - [anon_sym_PIPE_AMP] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_PIPE_PIPE] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_GT_GT] = ACTIONS(2832), - [anon_sym_AMP_GT] = ACTIONS(2832), - [anon_sym_AMP_GT_GT] = ACTIONS(2832), - [anon_sym_LT_AMP] = ACTIONS(2832), - [anon_sym_GT_AMP] = ACTIONS(2832), - [anon_sym_LT_LT] = ACTIONS(2832), - [anon_sym_LT_LT_DASH] = ACTIONS(2832), - [anon_sym_LT_LT_LT] = ACTIONS(2832), + [2224] = { + [sym_file_descriptor] = ACTIONS(2788), + [sym__concat] = ACTIONS(2788), + [anon_sym_esac] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_RPAREN] = ACTIONS(2790), + [anon_sym_SEMI_SEMI] = ACTIONS(2790), + [anon_sym_PIPE_AMP] = ACTIONS(2790), + [anon_sym_AMP_AMP] = ACTIONS(2790), + [anon_sym_PIPE_PIPE] = ACTIONS(2790), + [anon_sym_LT] = ACTIONS(2790), + [anon_sym_GT] = ACTIONS(2790), + [anon_sym_GT_GT] = ACTIONS(2790), + [anon_sym_AMP_GT] = ACTIONS(2790), + [anon_sym_AMP_GT_GT] = ACTIONS(2790), + [anon_sym_LT_AMP] = ACTIONS(2790), + [anon_sym_GT_AMP] = ACTIONS(2790), + [anon_sym_LT_LT] = ACTIONS(2790), + [anon_sym_LT_LT_DASH] = ACTIONS(2790), + [anon_sym_LT_LT_LT] = ACTIONS(2790), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_LF] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_LF] = ACTIONS(2788), + [anon_sym_AMP] = ACTIONS(2790), }, - [2334] = { - [sym_concatenation] = STATE(2596), - [sym_string] = STATE(2595), - [sym_simple_expansion] = STATE(2595), - [sym_string_expansion] = STATE(2595), - [sym_expansion] = STATE(2595), - [sym_command_substitution] = STATE(2595), - [sym_process_substitution] = STATE(2595), - [anon_sym_RBRACE] = ACTIONS(5938), - [sym__special_characters] = ACTIONS(5946), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(5948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), + [2225] = { + [sym_concatenation] = STATE(2440), + [sym_string] = STATE(2439), + [sym_simple_expansion] = STATE(2439), + [sym_string_expansion] = STATE(2439), + [sym_expansion] = STATE(2439), + [sym_command_substitution] = STATE(2439), + [sym_process_substitution] = STATE(2439), + [anon_sym_RBRACE] = ACTIONS(5623), + [sym__special_characters] = ACTIONS(5631), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(5633), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5948), + [sym_word] = ACTIONS(5633), }, - [2335] = { - [sym_file_descriptor] = ACTIONS(2873), - [sym__concat] = ACTIONS(2873), - [anon_sym_esac] = ACTIONS(2875), - [anon_sym_PIPE] = ACTIONS(2875), - [anon_sym_RPAREN] = ACTIONS(2875), - [anon_sym_SEMI_SEMI] = ACTIONS(2875), - [anon_sym_PIPE_AMP] = ACTIONS(2875), - [anon_sym_AMP_AMP] = ACTIONS(2875), - [anon_sym_PIPE_PIPE] = ACTIONS(2875), - [anon_sym_LT] = ACTIONS(2875), - [anon_sym_GT] = ACTIONS(2875), - [anon_sym_GT_GT] = ACTIONS(2875), - [anon_sym_AMP_GT] = ACTIONS(2875), - [anon_sym_AMP_GT_GT] = ACTIONS(2875), - [anon_sym_LT_AMP] = ACTIONS(2875), - [anon_sym_GT_AMP] = ACTIONS(2875), - [anon_sym_LT_LT] = ACTIONS(2875), - [anon_sym_LT_LT_DASH] = ACTIONS(2875), - [anon_sym_LT_LT_LT] = ACTIONS(2875), + [2226] = { + [sym_file_descriptor] = ACTIONS(2831), + [sym__concat] = ACTIONS(2831), + [anon_sym_esac] = ACTIONS(2833), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_RPAREN] = ACTIONS(2833), + [anon_sym_SEMI_SEMI] = ACTIONS(2833), + [anon_sym_PIPE_AMP] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_GT_GT] = ACTIONS(2833), + [anon_sym_AMP_GT] = ACTIONS(2833), + [anon_sym_AMP_GT_GT] = ACTIONS(2833), + [anon_sym_LT_AMP] = ACTIONS(2833), + [anon_sym_GT_AMP] = ACTIONS(2833), + [anon_sym_LT_LT] = ACTIONS(2833), + [anon_sym_LT_LT_DASH] = ACTIONS(2833), + [anon_sym_LT_LT_LT] = ACTIONS(2833), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym_LF] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(2833), }, - [2336] = { + [2227] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5950), + [sym_regex_without_right_brace] = ACTIONS(5635), }, - [2337] = { - [sym_concatenation] = STATE(839), + [2228] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5952), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5637), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2229] = { + [sym_file_descriptor] = ACTIONS(2839), + [sym__concat] = ACTIONS(2839), + [anon_sym_esac] = ACTIONS(2841), + [anon_sym_PIPE] = ACTIONS(2841), + [anon_sym_RPAREN] = ACTIONS(2841), + [anon_sym_SEMI_SEMI] = ACTIONS(2841), + [anon_sym_PIPE_AMP] = ACTIONS(2841), + [anon_sym_AMP_AMP] = ACTIONS(2841), + [anon_sym_PIPE_PIPE] = ACTIONS(2841), + [anon_sym_LT] = ACTIONS(2841), + [anon_sym_GT] = ACTIONS(2841), + [anon_sym_GT_GT] = ACTIONS(2841), + [anon_sym_AMP_GT] = ACTIONS(2841), + [anon_sym_AMP_GT_GT] = ACTIONS(2841), + [anon_sym_LT_AMP] = ACTIONS(2841), + [anon_sym_GT_AMP] = ACTIONS(2841), + [anon_sym_LT_LT] = ACTIONS(2841), + [anon_sym_LT_LT_DASH] = ACTIONS(2841), + [anon_sym_LT_LT_LT] = ACTIONS(2841), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym_LF] = ACTIONS(2839), + [anon_sym_AMP] = ACTIONS(2841), + }, + [2230] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(5639), + }, + [2231] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5641), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2232] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(5643), + }, + [2233] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5623), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2234] = { + [sym_concatenation] = STATE(2447), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2447), + [anon_sym_RBRACE] = ACTIONS(5645), + [anon_sym_EQ] = ACTIONS(5647), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5649), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5647), + [anon_sym_COLON_QMARK] = ACTIONS(5647), + [anon_sym_COLON_DASH] = ACTIONS(5647), + [anon_sym_PERCENT] = ACTIONS(5647), + [anon_sym_DASH] = ACTIONS(5647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2235] = { + [sym_file_descriptor] = ACTIONS(2855), + [sym__concat] = ACTIONS(2855), + [anon_sym_esac] = ACTIONS(2857), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2857), + [anon_sym_SEMI_SEMI] = ACTIONS(2857), + [anon_sym_PIPE_AMP] = ACTIONS(2857), + [anon_sym_AMP_AMP] = ACTIONS(2857), + [anon_sym_PIPE_PIPE] = ACTIONS(2857), + [anon_sym_LT] = ACTIONS(2857), + [anon_sym_GT] = ACTIONS(2857), + [anon_sym_GT_GT] = ACTIONS(2857), + [anon_sym_AMP_GT] = ACTIONS(2857), + [anon_sym_AMP_GT_GT] = ACTIONS(2857), + [anon_sym_LT_AMP] = ACTIONS(2857), + [anon_sym_GT_AMP] = ACTIONS(2857), + [anon_sym_LT_LT] = ACTIONS(2857), + [anon_sym_LT_LT_DASH] = ACTIONS(2857), + [anon_sym_LT_LT_LT] = ACTIONS(2857), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_LF] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2857), + }, + [2236] = { + [sym_concatenation] = STATE(2449), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2449), + [anon_sym_RBRACE] = ACTIONS(5651), + [anon_sym_EQ] = ACTIONS(5653), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5655), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5653), + [anon_sym_COLON_QMARK] = ACTIONS(5653), + [anon_sym_COLON_DASH] = ACTIONS(5653), + [anon_sym_PERCENT] = ACTIONS(5653), + [anon_sym_DASH] = ACTIONS(5653), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2237] = { + [sym__concat] = ACTIONS(5325), + [anon_sym_PIPE] = ACTIONS(5327), + [anon_sym_RPAREN] = ACTIONS(5325), + [anon_sym_AMP_AMP] = ACTIONS(5325), + [anon_sym_PIPE_PIPE] = ACTIONS(5325), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5325), + [anon_sym_EQ_TILDE] = ACTIONS(5325), + [anon_sym_EQ_EQ] = ACTIONS(5325), + [anon_sym_EQ] = ACTIONS(5327), + [anon_sym_LT] = ACTIONS(5325), + [anon_sym_GT] = ACTIONS(5325), + [anon_sym_BANG_EQ] = ACTIONS(5325), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5325), + }, + [2238] = { + [sym__concat] = ACTIONS(5329), + [anon_sym_PIPE] = ACTIONS(5331), + [anon_sym_RPAREN] = ACTIONS(5329), + [anon_sym_AMP_AMP] = ACTIONS(5329), + [anon_sym_PIPE_PIPE] = ACTIONS(5329), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5329), + [anon_sym_EQ_TILDE] = ACTIONS(5329), + [anon_sym_EQ_EQ] = ACTIONS(5329), + [anon_sym_EQ] = ACTIONS(5331), + [anon_sym_LT] = ACTIONS(5329), + [anon_sym_GT] = ACTIONS(5329), + [anon_sym_BANG_EQ] = ACTIONS(5329), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5329), + }, + [2239] = { + [sym__concat] = ACTIONS(5333), + [anon_sym_PIPE] = ACTIONS(5335), + [anon_sym_RPAREN] = ACTIONS(5333), + [anon_sym_AMP_AMP] = ACTIONS(5333), + [anon_sym_PIPE_PIPE] = ACTIONS(5333), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5333), + [anon_sym_EQ_TILDE] = ACTIONS(5333), + [anon_sym_EQ_EQ] = ACTIONS(5333), + [anon_sym_EQ] = ACTIONS(5335), + [anon_sym_LT] = ACTIONS(5333), + [anon_sym_GT] = ACTIONS(5333), + [anon_sym_BANG_EQ] = ACTIONS(5333), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5333), + }, + [2240] = { + [sym__concat] = ACTIONS(5325), + [sym_variable_name] = ACTIONS(5325), + [anon_sym_PIPE] = ACTIONS(5327), + [anon_sym_RPAREN] = ACTIONS(5327), + [anon_sym_SEMI_SEMI] = ACTIONS(5327), + [anon_sym_PIPE_AMP] = ACTIONS(5327), + [anon_sym_AMP_AMP] = ACTIONS(5327), + [anon_sym_PIPE_PIPE] = ACTIONS(5327), + [sym__special_characters] = ACTIONS(5327), + [anon_sym_DQUOTE] = ACTIONS(5327), + [anon_sym_DOLLAR] = ACTIONS(5327), + [sym_raw_string] = ACTIONS(5327), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5327), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5327), + [anon_sym_BQUOTE] = ACTIONS(5327), + [anon_sym_LT_LPAREN] = ACTIONS(5327), + [anon_sym_GT_LPAREN] = ACTIONS(5327), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5327), + [sym_word] = ACTIONS(5327), + [anon_sym_SEMI] = ACTIONS(5327), + [anon_sym_LF] = ACTIONS(5325), + [anon_sym_AMP] = ACTIONS(5327), + }, + [2241] = { + [sym__concat] = ACTIONS(5329), + [sym_variable_name] = ACTIONS(5329), + [anon_sym_PIPE] = ACTIONS(5331), + [anon_sym_RPAREN] = ACTIONS(5331), + [anon_sym_SEMI_SEMI] = ACTIONS(5331), + [anon_sym_PIPE_AMP] = ACTIONS(5331), + [anon_sym_AMP_AMP] = ACTIONS(5331), + [anon_sym_PIPE_PIPE] = ACTIONS(5331), + [sym__special_characters] = ACTIONS(5331), + [anon_sym_DQUOTE] = ACTIONS(5331), + [anon_sym_DOLLAR] = ACTIONS(5331), + [sym_raw_string] = ACTIONS(5331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5331), + [anon_sym_BQUOTE] = ACTIONS(5331), + [anon_sym_LT_LPAREN] = ACTIONS(5331), + [anon_sym_GT_LPAREN] = ACTIONS(5331), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5331), + [sym_word] = ACTIONS(5331), + [anon_sym_SEMI] = ACTIONS(5331), + [anon_sym_LF] = ACTIONS(5329), + [anon_sym_AMP] = ACTIONS(5331), + }, + [2242] = { + [sym__concat] = ACTIONS(5333), + [sym_variable_name] = ACTIONS(5333), + [anon_sym_PIPE] = ACTIONS(5335), + [anon_sym_RPAREN] = ACTIONS(5335), + [anon_sym_SEMI_SEMI] = ACTIONS(5335), + [anon_sym_PIPE_AMP] = ACTIONS(5335), + [anon_sym_AMP_AMP] = ACTIONS(5335), + [anon_sym_PIPE_PIPE] = ACTIONS(5335), + [sym__special_characters] = ACTIONS(5335), + [anon_sym_DQUOTE] = ACTIONS(5335), + [anon_sym_DOLLAR] = ACTIONS(5335), + [sym_raw_string] = ACTIONS(5335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5335), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5335), + [anon_sym_BQUOTE] = ACTIONS(5335), + [anon_sym_LT_LPAREN] = ACTIONS(5335), + [anon_sym_GT_LPAREN] = ACTIONS(5335), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5335), + [sym_word] = ACTIONS(5335), + [anon_sym_SEMI] = ACTIONS(5335), + [anon_sym_LF] = ACTIONS(5333), + [anon_sym_AMP] = ACTIONS(5335), + }, + [2243] = { + [sym__concat] = ACTIONS(5325), + [anon_sym_PIPE] = ACTIONS(5327), + [anon_sym_RPAREN] = ACTIONS(5327), + [anon_sym_SEMI_SEMI] = ACTIONS(5327), + [anon_sym_PIPE_AMP] = ACTIONS(5327), + [anon_sym_AMP_AMP] = ACTIONS(5327), + [anon_sym_PIPE_PIPE] = ACTIONS(5327), + [sym__special_characters] = ACTIONS(5327), + [anon_sym_DQUOTE] = ACTIONS(5327), + [anon_sym_DOLLAR] = ACTIONS(5327), + [sym_raw_string] = ACTIONS(5327), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5327), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5327), + [anon_sym_BQUOTE] = ACTIONS(5327), + [anon_sym_LT_LPAREN] = ACTIONS(5327), + [anon_sym_GT_LPAREN] = ACTIONS(5327), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5327), + [sym_word] = ACTIONS(5327), + [anon_sym_SEMI] = ACTIONS(5327), + [anon_sym_LF] = ACTIONS(5325), + [anon_sym_AMP] = ACTIONS(5327), + }, + [2244] = { + [sym__concat] = ACTIONS(5329), + [anon_sym_PIPE] = ACTIONS(5331), + [anon_sym_RPAREN] = ACTIONS(5331), + [anon_sym_SEMI_SEMI] = ACTIONS(5331), + [anon_sym_PIPE_AMP] = ACTIONS(5331), + [anon_sym_AMP_AMP] = ACTIONS(5331), + [anon_sym_PIPE_PIPE] = ACTIONS(5331), + [sym__special_characters] = ACTIONS(5331), + [anon_sym_DQUOTE] = ACTIONS(5331), + [anon_sym_DOLLAR] = ACTIONS(5331), + [sym_raw_string] = ACTIONS(5331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5331), + [anon_sym_BQUOTE] = ACTIONS(5331), + [anon_sym_LT_LPAREN] = ACTIONS(5331), + [anon_sym_GT_LPAREN] = ACTIONS(5331), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5331), + [sym_word] = ACTIONS(5331), + [anon_sym_SEMI] = ACTIONS(5331), + [anon_sym_LF] = ACTIONS(5329), + [anon_sym_AMP] = ACTIONS(5331), + }, + [2245] = { + [sym__concat] = ACTIONS(5333), + [anon_sym_PIPE] = ACTIONS(5335), + [anon_sym_RPAREN] = ACTIONS(5335), + [anon_sym_SEMI_SEMI] = ACTIONS(5335), + [anon_sym_PIPE_AMP] = ACTIONS(5335), + [anon_sym_AMP_AMP] = ACTIONS(5335), + [anon_sym_PIPE_PIPE] = ACTIONS(5335), + [sym__special_characters] = ACTIONS(5335), + [anon_sym_DQUOTE] = ACTIONS(5335), + [anon_sym_DOLLAR] = ACTIONS(5335), + [sym_raw_string] = ACTIONS(5335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5335), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5335), + [anon_sym_BQUOTE] = ACTIONS(5335), + [anon_sym_LT_LPAREN] = ACTIONS(5335), + [anon_sym_GT_LPAREN] = ACTIONS(5335), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5335), + [sym_word] = ACTIONS(5335), + [anon_sym_SEMI] = ACTIONS(5335), + [anon_sym_LF] = ACTIONS(5333), + [anon_sym_AMP] = ACTIONS(5335), + }, + [2246] = { + [sym_file_descriptor] = ACTIONS(5325), + [sym__concat] = ACTIONS(5325), + [sym_variable_name] = ACTIONS(5325), + [anon_sym_PIPE] = ACTIONS(5327), + [anon_sym_RPAREN] = ACTIONS(5325), + [anon_sym_PIPE_AMP] = ACTIONS(5325), + [anon_sym_AMP_AMP] = ACTIONS(5325), + [anon_sym_PIPE_PIPE] = ACTIONS(5325), + [anon_sym_LT] = ACTIONS(5327), + [anon_sym_GT] = ACTIONS(5327), + [anon_sym_GT_GT] = ACTIONS(5325), + [anon_sym_AMP_GT] = ACTIONS(5327), + [anon_sym_AMP_GT_GT] = ACTIONS(5325), + [anon_sym_LT_AMP] = ACTIONS(5325), + [anon_sym_GT_AMP] = ACTIONS(5325), + [sym__special_characters] = ACTIONS(5325), + [anon_sym_DQUOTE] = ACTIONS(5325), + [anon_sym_DOLLAR] = ACTIONS(5327), + [sym_raw_string] = ACTIONS(5325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5325), + [anon_sym_BQUOTE] = ACTIONS(5325), + [anon_sym_LT_LPAREN] = ACTIONS(5325), + [anon_sym_GT_LPAREN] = ACTIONS(5325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5325), + }, + [2247] = { + [sym_file_descriptor] = ACTIONS(5329), + [sym__concat] = ACTIONS(5329), + [sym_variable_name] = ACTIONS(5329), + [anon_sym_PIPE] = ACTIONS(5331), + [anon_sym_RPAREN] = ACTIONS(5329), + [anon_sym_PIPE_AMP] = ACTIONS(5329), + [anon_sym_AMP_AMP] = ACTIONS(5329), + [anon_sym_PIPE_PIPE] = ACTIONS(5329), + [anon_sym_LT] = ACTIONS(5331), + [anon_sym_GT] = ACTIONS(5331), + [anon_sym_GT_GT] = ACTIONS(5329), + [anon_sym_AMP_GT] = ACTIONS(5331), + [anon_sym_AMP_GT_GT] = ACTIONS(5329), + [anon_sym_LT_AMP] = ACTIONS(5329), + [anon_sym_GT_AMP] = ACTIONS(5329), + [sym__special_characters] = ACTIONS(5329), + [anon_sym_DQUOTE] = ACTIONS(5329), + [anon_sym_DOLLAR] = ACTIONS(5331), + [sym_raw_string] = ACTIONS(5329), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5329), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5329), + [anon_sym_BQUOTE] = ACTIONS(5329), + [anon_sym_LT_LPAREN] = ACTIONS(5329), + [anon_sym_GT_LPAREN] = ACTIONS(5329), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5329), + }, + [2248] = { + [sym_file_descriptor] = ACTIONS(5333), + [sym__concat] = ACTIONS(5333), + [sym_variable_name] = ACTIONS(5333), + [anon_sym_PIPE] = ACTIONS(5335), + [anon_sym_RPAREN] = ACTIONS(5333), + [anon_sym_PIPE_AMP] = ACTIONS(5333), + [anon_sym_AMP_AMP] = ACTIONS(5333), + [anon_sym_PIPE_PIPE] = ACTIONS(5333), + [anon_sym_LT] = ACTIONS(5335), + [anon_sym_GT] = ACTIONS(5335), + [anon_sym_GT_GT] = ACTIONS(5333), + [anon_sym_AMP_GT] = ACTIONS(5335), + [anon_sym_AMP_GT_GT] = ACTIONS(5333), + [anon_sym_LT_AMP] = ACTIONS(5333), + [anon_sym_GT_AMP] = ACTIONS(5333), + [sym__special_characters] = ACTIONS(5333), + [anon_sym_DQUOTE] = ACTIONS(5333), + [anon_sym_DOLLAR] = ACTIONS(5335), + [sym_raw_string] = ACTIONS(5333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5333), + [anon_sym_BQUOTE] = ACTIONS(5333), + [anon_sym_LT_LPAREN] = ACTIONS(5333), + [anon_sym_GT_LPAREN] = ACTIONS(5333), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5333), + }, + [2249] = { + [sym__concat] = ACTIONS(5325), + [anon_sym_DQUOTE] = ACTIONS(5327), + [anon_sym_DOLLAR] = ACTIONS(5327), + [sym__string_content] = ACTIONS(5325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5327), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5327), + [anon_sym_BQUOTE] = ACTIONS(5327), + [sym_comment] = ACTIONS(177), + }, + [2250] = { + [sym__concat] = ACTIONS(5329), + [anon_sym_DQUOTE] = ACTIONS(5331), + [anon_sym_DOLLAR] = ACTIONS(5331), + [sym__string_content] = ACTIONS(5329), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5331), + [anon_sym_BQUOTE] = ACTIONS(5331), + [sym_comment] = ACTIONS(177), + }, + [2251] = { + [sym__concat] = ACTIONS(5333), + [anon_sym_DQUOTE] = ACTIONS(5335), + [anon_sym_DOLLAR] = ACTIONS(5335), + [sym__string_content] = ACTIONS(5333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5335), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5335), + [anon_sym_BQUOTE] = ACTIONS(5335), + [sym_comment] = ACTIONS(177), + }, + [2252] = { + [sym__concat] = ACTIONS(3829), + [anon_sym_RBRACE] = ACTIONS(3829), + [sym_comment] = ACTIONS(53), + }, + [2253] = { + [sym__concat] = ACTIONS(3835), + [anon_sym_RBRACE] = ACTIONS(3835), + [sym_comment] = ACTIONS(53), + }, + [2254] = { + [sym__concat] = ACTIONS(3920), + [anon_sym_RBRACE] = ACTIONS(3920), + [sym_comment] = ACTIONS(53), + }, + [2255] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5657), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2256] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(5659), + [sym_comment] = ACTIONS(53), + }, + [2257] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(5661), + [sym_comment] = ACTIONS(53), + }, + [2258] = { + [anon_sym_RBRACE] = ACTIONS(5661), + [sym_comment] = ACTIONS(53), + }, + [2259] = { + [sym_concatenation] = STATE(2454), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2454), + [anon_sym_RBRACE] = ACTIONS(5663), + [anon_sym_EQ] = ACTIONS(5665), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5665), + [anon_sym_COLON_QMARK] = ACTIONS(5665), + [anon_sym_COLON_DASH] = ACTIONS(5665), + [anon_sym_PERCENT] = ACTIONS(5665), + [anon_sym_DASH] = ACTIONS(5665), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2260] = { + [sym__concat] = ACTIONS(3936), + [anon_sym_RBRACE] = ACTIONS(3936), + [sym_comment] = ACTIONS(53), + }, + [2261] = { + [sym_concatenation] = STATE(2456), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2456), + [anon_sym_RBRACE] = ACTIONS(5669), + [anon_sym_EQ] = ACTIONS(5671), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5673), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5671), + [anon_sym_COLON_QMARK] = ACTIONS(5671), + [anon_sym_COLON_DASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2262] = { + [sym__concat] = ACTIONS(3946), + [anon_sym_RBRACE] = ACTIONS(3946), + [sym_comment] = ACTIONS(53), + }, + [2263] = { + [sym_concatenation] = STATE(2458), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2458), + [anon_sym_RBRACE] = ACTIONS(5675), + [anon_sym_EQ] = ACTIONS(5677), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5679), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5677), + [anon_sym_COLON_QMARK] = ACTIONS(5677), + [anon_sym_COLON_DASH] = ACTIONS(5677), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_DASH] = ACTIONS(5677), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2264] = { + [sym__concat] = ACTIONS(3956), + [anon_sym_RBRACE] = ACTIONS(3956), + [sym_comment] = ACTIONS(53), + }, + [2265] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5681), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2266] = { + [sym__concat] = ACTIONS(3962), + [anon_sym_RBRACE] = ACTIONS(3962), + [sym_comment] = ACTIONS(53), + }, + [2267] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5683), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2268] = { + [sym__concat] = ACTIONS(4741), + [anon_sym_RBRACE] = ACTIONS(4741), + [anon_sym_EQ] = ACTIONS(4743), + [sym__special_characters] = ACTIONS(4743), + [anon_sym_DQUOTE] = ACTIONS(4741), + [anon_sym_DOLLAR] = ACTIONS(4743), + [sym_raw_string] = ACTIONS(4741), + [anon_sym_POUND] = ACTIONS(4741), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4741), + [anon_sym_COLON] = ACTIONS(4743), + [anon_sym_COLON_QMARK] = ACTIONS(4743), + [anon_sym_COLON_DASH] = ACTIONS(4743), + [anon_sym_PERCENT] = ACTIONS(4743), + [anon_sym_DASH] = ACTIONS(4743), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4741), + [anon_sym_BQUOTE] = ACTIONS(4741), + [anon_sym_LT_LPAREN] = ACTIONS(4741), + [anon_sym_GT_LPAREN] = ACTIONS(4741), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4743), + }, + [2269] = { + [sym__concat] = ACTIONS(4745), + [anon_sym_RBRACE] = ACTIONS(4745), + [anon_sym_EQ] = ACTIONS(4747), + [sym__special_characters] = ACTIONS(4747), + [anon_sym_DQUOTE] = ACTIONS(4745), + [anon_sym_DOLLAR] = ACTIONS(4747), + [sym_raw_string] = ACTIONS(4745), + [anon_sym_POUND] = ACTIONS(4745), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4745), + [anon_sym_COLON] = ACTIONS(4747), + [anon_sym_COLON_QMARK] = ACTIONS(4747), + [anon_sym_COLON_DASH] = ACTIONS(4747), + [anon_sym_PERCENT] = ACTIONS(4747), + [anon_sym_DASH] = ACTIONS(4747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4745), + [anon_sym_BQUOTE] = ACTIONS(4745), + [anon_sym_LT_LPAREN] = ACTIONS(4745), + [anon_sym_GT_LPAREN] = ACTIONS(4745), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4747), + }, + [2270] = { + [sym__concat] = ACTIONS(4749), + [anon_sym_RBRACE] = ACTIONS(4749), + [anon_sym_EQ] = ACTIONS(4751), + [sym__special_characters] = ACTIONS(4751), + [anon_sym_DQUOTE] = ACTIONS(4749), + [anon_sym_DOLLAR] = ACTIONS(4751), + [sym_raw_string] = ACTIONS(4749), + [anon_sym_POUND] = ACTIONS(4749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4749), + [anon_sym_COLON] = ACTIONS(4751), + [anon_sym_COLON_QMARK] = ACTIONS(4751), + [anon_sym_COLON_DASH] = ACTIONS(4751), + [anon_sym_PERCENT] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4749), + [anon_sym_BQUOTE] = ACTIONS(4749), + [anon_sym_LT_LPAREN] = ACTIONS(4749), + [anon_sym_GT_LPAREN] = ACTIONS(4749), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4751), + }, + [2271] = { + [sym__concat] = ACTIONS(4753), + [anon_sym_RBRACE] = ACTIONS(4753), + [anon_sym_EQ] = ACTIONS(4755), + [sym__special_characters] = ACTIONS(4755), + [anon_sym_DQUOTE] = ACTIONS(4753), + [anon_sym_DOLLAR] = ACTIONS(4755), + [sym_raw_string] = ACTIONS(4753), + [anon_sym_POUND] = ACTIONS(4753), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4753), + [anon_sym_COLON] = ACTIONS(4755), + [anon_sym_COLON_QMARK] = ACTIONS(4755), + [anon_sym_COLON_DASH] = ACTIONS(4755), + [anon_sym_PERCENT] = ACTIONS(4755), + [anon_sym_DASH] = ACTIONS(4755), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4753), + [anon_sym_BQUOTE] = ACTIONS(4753), + [anon_sym_LT_LPAREN] = ACTIONS(4753), + [anon_sym_GT_LPAREN] = ACTIONS(4753), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4755), + }, + [2272] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5685), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2273] = { + [sym__concat] = ACTIONS(4759), + [anon_sym_RBRACE] = ACTIONS(4759), + [anon_sym_EQ] = ACTIONS(4761), + [sym__special_characters] = ACTIONS(4761), + [anon_sym_DQUOTE] = ACTIONS(4759), + [anon_sym_DOLLAR] = ACTIONS(4761), + [sym_raw_string] = ACTIONS(4759), + [anon_sym_POUND] = ACTIONS(4759), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4759), + [anon_sym_COLON] = ACTIONS(4761), + [anon_sym_COLON_QMARK] = ACTIONS(4761), + [anon_sym_COLON_DASH] = ACTIONS(4761), + [anon_sym_PERCENT] = ACTIONS(4761), + [anon_sym_DASH] = ACTIONS(4761), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4759), + [anon_sym_BQUOTE] = ACTIONS(4759), + [anon_sym_LT_LPAREN] = ACTIONS(4759), + [anon_sym_GT_LPAREN] = ACTIONS(4759), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4761), + }, + [2274] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5687), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2275] = { + [sym__concat] = ACTIONS(4765), + [anon_sym_RBRACE] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4767), + [sym__special_characters] = ACTIONS(4767), + [anon_sym_DQUOTE] = ACTIONS(4765), + [anon_sym_DOLLAR] = ACTIONS(4767), + [sym_raw_string] = ACTIONS(4765), + [anon_sym_POUND] = ACTIONS(4765), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4765), + [anon_sym_COLON] = ACTIONS(4767), + [anon_sym_COLON_QMARK] = ACTIONS(4767), + [anon_sym_COLON_DASH] = ACTIONS(4767), + [anon_sym_PERCENT] = ACTIONS(4767), + [anon_sym_DASH] = ACTIONS(4767), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4765), + [anon_sym_BQUOTE] = ACTIONS(4765), + [anon_sym_LT_LPAREN] = ACTIONS(4765), + [anon_sym_GT_LPAREN] = ACTIONS(4765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4767), + }, + [2276] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5689), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2277] = { + [sym__concat] = ACTIONS(4771), + [anon_sym_RBRACE] = ACTIONS(4771), + [anon_sym_EQ] = ACTIONS(4773), + [sym__special_characters] = ACTIONS(4773), + [anon_sym_DQUOTE] = ACTIONS(4771), + [anon_sym_DOLLAR] = ACTIONS(4773), + [sym_raw_string] = ACTIONS(4771), + [anon_sym_POUND] = ACTIONS(4771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4771), + [anon_sym_COLON] = ACTIONS(4773), + [anon_sym_COLON_QMARK] = ACTIONS(4773), + [anon_sym_COLON_DASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4771), + [anon_sym_BQUOTE] = ACTIONS(4771), + [anon_sym_LT_LPAREN] = ACTIONS(4771), + [anon_sym_GT_LPAREN] = ACTIONS(4771), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4773), + }, + [2278] = { + [sym__concat] = ACTIONS(4775), + [anon_sym_RBRACE] = ACTIONS(4775), + [anon_sym_EQ] = ACTIONS(4777), + [sym__special_characters] = ACTIONS(4777), + [anon_sym_DQUOTE] = ACTIONS(4775), + [anon_sym_DOLLAR] = ACTIONS(4777), + [sym_raw_string] = ACTIONS(4775), + [anon_sym_POUND] = ACTIONS(4775), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4775), + [anon_sym_COLON] = ACTIONS(4777), + [anon_sym_COLON_QMARK] = ACTIONS(4777), + [anon_sym_COLON_DASH] = ACTIONS(4777), + [anon_sym_PERCENT] = ACTIONS(4777), + [anon_sym_DASH] = ACTIONS(4777), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4775), + [anon_sym_BQUOTE] = ACTIONS(4775), + [anon_sym_LT_LPAREN] = ACTIONS(4775), + [anon_sym_GT_LPAREN] = ACTIONS(4775), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4777), + }, + [2279] = { + [anon_sym_PIPE] = ACTIONS(5063), + [anon_sym_RPAREN] = ACTIONS(5065), + [anon_sym_PIPE_AMP] = ACTIONS(5065), + [anon_sym_AMP_AMP] = ACTIONS(5065), + [anon_sym_PIPE_PIPE] = ACTIONS(5065), + [anon_sym_BQUOTE] = ACTIONS(5065), + [sym_comment] = ACTIONS(53), + }, + [2280] = { + [anon_sym_PIPE] = ACTIONS(5156), + [anon_sym_RPAREN] = ACTIONS(5158), + [anon_sym_PIPE_AMP] = ACTIONS(5158), + [anon_sym_AMP_AMP] = ACTIONS(5158), + [anon_sym_PIPE_PIPE] = ACTIONS(5158), + [anon_sym_BQUOTE] = ACTIONS(5158), + [sym_comment] = ACTIONS(53), + }, + [2281] = { + [anon_sym_esac] = ACTIONS(5691), + [sym_comment] = ACTIONS(53), + }, + [2282] = { + [anon_sym_PIPE] = ACTIONS(5166), + [anon_sym_RPAREN] = ACTIONS(5168), + [anon_sym_PIPE_AMP] = ACTIONS(5168), + [anon_sym_AMP_AMP] = ACTIONS(5168), + [anon_sym_PIPE_PIPE] = ACTIONS(5168), + [anon_sym_BQUOTE] = ACTIONS(5168), + [sym_comment] = ACTIONS(53), + }, + [2283] = { + [anon_sym_esac] = ACTIONS(5693), + [sym_comment] = ACTIONS(53), + }, + [2284] = { + [aux_sym_concatenation_repeat1] = STATE(2284), + [sym__concat] = ACTIONS(4075), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_PIPE_AMP] = ACTIONS(1642), + [anon_sym_AMP_AMP] = ACTIONS(1642), + [anon_sym_PIPE_PIPE] = ACTIONS(1642), + [sym_comment] = ACTIONS(53), + }, + [2285] = { + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_PIPE_AMP] = ACTIONS(1642), + [anon_sym_AMP_AMP] = ACTIONS(1642), + [anon_sym_PIPE_PIPE] = ACTIONS(1642), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1642), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1642), + [anon_sym_LT_AMP] = ACTIONS(1642), + [anon_sym_GT_AMP] = ACTIONS(1642), + [anon_sym_LT_LT] = ACTIONS(1644), + [anon_sym_LT_LT_DASH] = ACTIONS(1642), + [anon_sym_LT_LT_LT] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), + [sym_comment] = ACTIONS(53), + }, + [2286] = { + [aux_sym_concatenation_repeat1] = STATE(2286), + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(5695), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_PIPE_AMP] = ACTIONS(1642), + [anon_sym_AMP_AMP] = ACTIONS(1642), + [anon_sym_PIPE_PIPE] = ACTIONS(1642), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1642), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1642), + [anon_sym_LT_AMP] = ACTIONS(1642), + [anon_sym_GT_AMP] = ACTIONS(1642), + [anon_sym_LT_LT] = ACTIONS(1644), + [anon_sym_LT_LT_DASH] = ACTIONS(1642), + [anon_sym_LT_LT_LT] = ACTIONS(1642), + [sym_comment] = ACTIONS(53), + }, + [2287] = { + [sym_file_descriptor] = ACTIONS(1691), + [sym__concat] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1693), + [anon_sym_RPAREN] = ACTIONS(1691), + [anon_sym_PIPE_AMP] = ACTIONS(1691), + [anon_sym_AMP_AMP] = ACTIONS(1691), + [anon_sym_PIPE_PIPE] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1693), + [anon_sym_GT] = ACTIONS(1693), + [anon_sym_GT_GT] = ACTIONS(1691), + [anon_sym_AMP_GT] = ACTIONS(1693), + [anon_sym_AMP_GT_GT] = ACTIONS(1691), + [anon_sym_LT_AMP] = ACTIONS(1691), + [anon_sym_GT_AMP] = ACTIONS(1691), + [anon_sym_LT_LT] = ACTIONS(1693), + [anon_sym_LT_LT_DASH] = ACTIONS(1691), + [anon_sym_LT_LT_LT] = ACTIONS(1691), + [anon_sym_BQUOTE] = ACTIONS(1691), + [sym_comment] = ACTIONS(53), + }, + [2288] = { + [sym_concatenation] = STATE(2469), + [sym_string] = STATE(2468), + [sym_simple_expansion] = STATE(2468), + [sym_string_expansion] = STATE(2468), + [sym_expansion] = STATE(2468), + [sym_command_substitution] = STATE(2468), + [sym_process_substitution] = STATE(2468), + [anon_sym_RBRACE] = ACTIONS(5698), + [sym__special_characters] = ACTIONS(5700), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(5702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5702), + }, + [2289] = { + [sym_file_descriptor] = ACTIONS(1732), + [sym__concat] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1732), + [anon_sym_PIPE_AMP] = ACTIONS(1732), + [anon_sym_AMP_AMP] = ACTIONS(1732), + [anon_sym_PIPE_PIPE] = ACTIONS(1732), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_GT_GT] = ACTIONS(1732), + [anon_sym_AMP_GT] = ACTIONS(1734), + [anon_sym_AMP_GT_GT] = ACTIONS(1732), + [anon_sym_LT_AMP] = ACTIONS(1732), + [anon_sym_GT_AMP] = ACTIONS(1732), + [anon_sym_LT_LT] = ACTIONS(1734), + [anon_sym_LT_LT_DASH] = ACTIONS(1732), + [anon_sym_LT_LT_LT] = ACTIONS(1732), + [anon_sym_BQUOTE] = ACTIONS(1732), + [sym_comment] = ACTIONS(53), + }, + [2290] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(5704), + }, + [2291] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5706), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2292] = { + [anon_sym_LBRACK] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(5708), + [sym_comment] = ACTIONS(53), + }, + [2293] = { + [sym_concatenation] = STATE(2475), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2475), + [anon_sym_RBRACE] = ACTIONS(5710), + [anon_sym_EQ] = ACTIONS(5712), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5714), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(5716), + [anon_sym_COLON] = ACTIONS(5712), + [anon_sym_COLON_QMARK] = ACTIONS(5712), + [anon_sym_COLON_DASH] = ACTIONS(5712), + [anon_sym_PERCENT] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2294] = { + [sym_concatenation] = STATE(2478), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2478), + [anon_sym_RBRACE] = ACTIONS(5718), + [anon_sym_EQ] = ACTIONS(5720), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(5724), + [anon_sym_COLON] = ACTIONS(5720), + [anon_sym_COLON_QMARK] = ACTIONS(5720), + [anon_sym_COLON_DASH] = ACTIONS(5720), + [anon_sym_PERCENT] = ACTIONS(5720), + [anon_sym_DASH] = ACTIONS(5720), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2295] = { + [sym_concatenation] = STATE(2480), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(2480), + [anon_sym_RBRACE] = ACTIONS(5698), + [anon_sym_EQ] = ACTIONS(5726), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [aux_sym_SLASH] = ACTIONS(5730), + [anon_sym_COLON] = ACTIONS(5726), + [anon_sym_COLON_QMARK] = ACTIONS(5726), + [anon_sym_COLON_DASH] = ACTIONS(5726), + [anon_sym_PERCENT] = ACTIONS(5726), + [anon_sym_DASH] = ACTIONS(5726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2296] = { + [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_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), + [anon_sym_BQUOTE] = ACTIONS(1798), + [sym_comment] = ACTIONS(53), + }, + [2297] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(5732), + }, + [2298] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5734), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2299] = { + [sym_file_descriptor] = ACTIONS(1806), + [sym__concat] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1808), + [anon_sym_RPAREN] = ACTIONS(1806), + [anon_sym_PIPE_AMP] = ACTIONS(1806), + [anon_sym_AMP_AMP] = ACTIONS(1806), + [anon_sym_PIPE_PIPE] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_GT_GT] = ACTIONS(1806), + [anon_sym_AMP_GT] = ACTIONS(1808), + [anon_sym_AMP_GT_GT] = ACTIONS(1806), + [anon_sym_LT_AMP] = ACTIONS(1806), + [anon_sym_GT_AMP] = ACTIONS(1806), + [anon_sym_LT_LT] = ACTIONS(1808), + [anon_sym_LT_LT_DASH] = ACTIONS(1806), + [anon_sym_LT_LT_LT] = ACTIONS(1806), + [anon_sym_BQUOTE] = ACTIONS(1806), + [sym_comment] = ACTIONS(53), + }, + [2300] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(5736), + }, + [2301] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5698), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2302] = { + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1940), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_GT_GT] = ACTIONS(1940), + [anon_sym_AMP_GT] = ACTIONS(1942), + [anon_sym_AMP_GT_GT] = ACTIONS(1940), + [anon_sym_LT_AMP] = ACTIONS(1940), + [anon_sym_GT_AMP] = ACTIONS(1940), + [anon_sym_LT_LT] = ACTIONS(1942), + [anon_sym_LT_LT_DASH] = ACTIONS(1940), + [anon_sym_LT_LT_LT] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [sym_comment] = ACTIONS(53), + }, + [2303] = { + [sym_file_descriptor] = ACTIONS(2006), + [sym__concat] = ACTIONS(2006), + [anon_sym_PIPE] = ACTIONS(2008), + [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(2008), + [anon_sym_GT] = ACTIONS(2008), + [anon_sym_GT_GT] = ACTIONS(2006), + [anon_sym_AMP_GT] = ACTIONS(2008), + [anon_sym_AMP_GT_GT] = ACTIONS(2006), + [anon_sym_LT_AMP] = ACTIONS(2006), + [anon_sym_GT_AMP] = ACTIONS(2006), + [anon_sym_LT_LT] = ACTIONS(2008), + [anon_sym_LT_LT_DASH] = ACTIONS(2006), + [anon_sym_LT_LT_LT] = ACTIONS(2006), + [anon_sym_BQUOTE] = ACTIONS(2006), + [sym_comment] = ACTIONS(53), + }, + [2304] = { + [sym__concat] = ACTIONS(4741), + [sym_variable_name] = ACTIONS(4741), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4741), + [anon_sym_PIPE_AMP] = ACTIONS(4741), + [anon_sym_AMP_AMP] = ACTIONS(4741), + [anon_sym_PIPE_PIPE] = ACTIONS(4741), + [sym__special_characters] = ACTIONS(4741), + [anon_sym_DQUOTE] = ACTIONS(4741), + [anon_sym_DOLLAR] = ACTIONS(4743), + [sym_raw_string] = ACTIONS(4741), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4741), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4741), + [anon_sym_BQUOTE] = ACTIONS(4741), + [anon_sym_LT_LPAREN] = ACTIONS(4741), + [anon_sym_GT_LPAREN] = ACTIONS(4741), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4743), + [sym_word] = ACTIONS(4743), + }, + [2305] = { + [sym__concat] = ACTIONS(4745), + [sym_variable_name] = ACTIONS(4745), + [anon_sym_PIPE] = ACTIONS(4747), + [anon_sym_RPAREN] = ACTIONS(4745), + [anon_sym_PIPE_AMP] = ACTIONS(4745), + [anon_sym_AMP_AMP] = ACTIONS(4745), + [anon_sym_PIPE_PIPE] = ACTIONS(4745), + [sym__special_characters] = ACTIONS(4745), + [anon_sym_DQUOTE] = ACTIONS(4745), + [anon_sym_DOLLAR] = ACTIONS(4747), + [sym_raw_string] = ACTIONS(4745), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4745), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4745), + [anon_sym_BQUOTE] = ACTIONS(4745), + [anon_sym_LT_LPAREN] = ACTIONS(4745), + [anon_sym_GT_LPAREN] = ACTIONS(4745), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4747), + [sym_word] = ACTIONS(4747), + }, + [2306] = { + [sym__concat] = ACTIONS(4749), + [sym_variable_name] = ACTIONS(4749), + [anon_sym_PIPE] = ACTIONS(4751), + [anon_sym_RPAREN] = ACTIONS(4749), + [anon_sym_PIPE_AMP] = ACTIONS(4749), + [anon_sym_AMP_AMP] = ACTIONS(4749), + [anon_sym_PIPE_PIPE] = ACTIONS(4749), + [sym__special_characters] = ACTIONS(4749), + [anon_sym_DQUOTE] = ACTIONS(4749), + [anon_sym_DOLLAR] = ACTIONS(4751), + [sym_raw_string] = ACTIONS(4749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4749), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4749), + [anon_sym_BQUOTE] = ACTIONS(4749), + [anon_sym_LT_LPAREN] = ACTIONS(4749), + [anon_sym_GT_LPAREN] = ACTIONS(4749), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4751), + [sym_word] = ACTIONS(4751), + }, + [2307] = { + [sym__concat] = ACTIONS(4753), + [sym_variable_name] = ACTIONS(4753), + [anon_sym_PIPE] = ACTIONS(4755), + [anon_sym_RPAREN] = ACTIONS(4753), + [anon_sym_PIPE_AMP] = ACTIONS(4753), + [anon_sym_AMP_AMP] = ACTIONS(4753), + [anon_sym_PIPE_PIPE] = ACTIONS(4753), + [sym__special_characters] = ACTIONS(4753), + [anon_sym_DQUOTE] = ACTIONS(4753), + [anon_sym_DOLLAR] = ACTIONS(4755), + [sym_raw_string] = ACTIONS(4753), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4753), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4753), + [anon_sym_BQUOTE] = ACTIONS(4753), + [anon_sym_LT_LPAREN] = ACTIONS(4753), + [anon_sym_GT_LPAREN] = ACTIONS(4753), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4755), + [sym_word] = ACTIONS(4755), + }, + [2308] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5738), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2309] = { + [sym__concat] = ACTIONS(4759), + [sym_variable_name] = ACTIONS(4759), + [anon_sym_PIPE] = ACTIONS(4761), + [anon_sym_RPAREN] = ACTIONS(4759), + [anon_sym_PIPE_AMP] = ACTIONS(4759), + [anon_sym_AMP_AMP] = ACTIONS(4759), + [anon_sym_PIPE_PIPE] = ACTIONS(4759), + [sym__special_characters] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4759), + [anon_sym_DOLLAR] = ACTIONS(4761), + [sym_raw_string] = ACTIONS(4759), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4759), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4759), + [anon_sym_BQUOTE] = ACTIONS(4759), + [anon_sym_LT_LPAREN] = ACTIONS(4759), + [anon_sym_GT_LPAREN] = ACTIONS(4759), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4761), + [sym_word] = ACTIONS(4761), + }, + [2310] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5740), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2311] = { + [sym__concat] = ACTIONS(4765), + [sym_variable_name] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4767), + [anon_sym_RPAREN] = ACTIONS(4765), + [anon_sym_PIPE_AMP] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [sym__special_characters] = ACTIONS(4765), + [anon_sym_DQUOTE] = ACTIONS(4765), + [anon_sym_DOLLAR] = ACTIONS(4767), + [sym_raw_string] = ACTIONS(4765), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4765), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4765), + [anon_sym_BQUOTE] = ACTIONS(4765), + [anon_sym_LT_LPAREN] = ACTIONS(4765), + [anon_sym_GT_LPAREN] = ACTIONS(4765), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4767), + [sym_word] = ACTIONS(4767), + }, + [2312] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5742), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2313] = { + [sym__concat] = ACTIONS(4771), + [sym_variable_name] = ACTIONS(4771), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_RPAREN] = ACTIONS(4771), + [anon_sym_PIPE_AMP] = ACTIONS(4771), + [anon_sym_AMP_AMP] = ACTIONS(4771), + [anon_sym_PIPE_PIPE] = ACTIONS(4771), + [sym__special_characters] = ACTIONS(4771), + [anon_sym_DQUOTE] = ACTIONS(4771), + [anon_sym_DOLLAR] = ACTIONS(4773), + [sym_raw_string] = ACTIONS(4771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4771), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4771), + [anon_sym_BQUOTE] = ACTIONS(4771), + [anon_sym_LT_LPAREN] = ACTIONS(4771), + [anon_sym_GT_LPAREN] = ACTIONS(4771), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4773), + [sym_word] = ACTIONS(4773), + }, + [2314] = { + [sym__concat] = ACTIONS(4775), + [sym_variable_name] = ACTIONS(4775), + [anon_sym_PIPE] = ACTIONS(4777), + [anon_sym_RPAREN] = ACTIONS(4775), + [anon_sym_PIPE_AMP] = ACTIONS(4775), + [anon_sym_AMP_AMP] = ACTIONS(4775), + [anon_sym_PIPE_PIPE] = ACTIONS(4775), + [sym__special_characters] = ACTIONS(4775), + [anon_sym_DQUOTE] = ACTIONS(4775), + [anon_sym_DOLLAR] = ACTIONS(4777), + [sym_raw_string] = ACTIONS(4775), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4775), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4775), + [anon_sym_BQUOTE] = ACTIONS(4775), + [anon_sym_LT_LPAREN] = ACTIONS(4775), + [anon_sym_GT_LPAREN] = ACTIONS(4775), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4777), + [sym_word] = ACTIONS(4777), + }, + [2315] = { + [sym__concat] = ACTIONS(4741), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4741), + [anon_sym_PIPE_AMP] = ACTIONS(4741), + [anon_sym_AMP_AMP] = ACTIONS(4741), + [anon_sym_PIPE_PIPE] = ACTIONS(4741), + [sym__special_characters] = ACTIONS(4741), + [anon_sym_DQUOTE] = ACTIONS(4741), + [anon_sym_DOLLAR] = ACTIONS(4743), + [sym_raw_string] = ACTIONS(4741), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4741), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4741), + [anon_sym_BQUOTE] = ACTIONS(4741), + [anon_sym_LT_LPAREN] = ACTIONS(4741), + [anon_sym_GT_LPAREN] = ACTIONS(4741), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4743), + [sym_word] = ACTIONS(4743), + }, + [2316] = { + [sym__concat] = ACTIONS(4745), + [anon_sym_PIPE] = ACTIONS(4747), + [anon_sym_RPAREN] = ACTIONS(4745), + [anon_sym_PIPE_AMP] = ACTIONS(4745), + [anon_sym_AMP_AMP] = ACTIONS(4745), + [anon_sym_PIPE_PIPE] = ACTIONS(4745), + [sym__special_characters] = ACTIONS(4745), + [anon_sym_DQUOTE] = ACTIONS(4745), + [anon_sym_DOLLAR] = ACTIONS(4747), + [sym_raw_string] = ACTIONS(4745), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4745), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4745), + [anon_sym_BQUOTE] = ACTIONS(4745), + [anon_sym_LT_LPAREN] = ACTIONS(4745), + [anon_sym_GT_LPAREN] = ACTIONS(4745), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4747), + [sym_word] = ACTIONS(4747), + }, + [2317] = { + [sym__concat] = ACTIONS(4749), + [anon_sym_PIPE] = ACTIONS(4751), + [anon_sym_RPAREN] = ACTIONS(4749), + [anon_sym_PIPE_AMP] = ACTIONS(4749), + [anon_sym_AMP_AMP] = ACTIONS(4749), + [anon_sym_PIPE_PIPE] = ACTIONS(4749), + [sym__special_characters] = ACTIONS(4749), + [anon_sym_DQUOTE] = ACTIONS(4749), + [anon_sym_DOLLAR] = ACTIONS(4751), + [sym_raw_string] = ACTIONS(4749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4749), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4749), + [anon_sym_BQUOTE] = ACTIONS(4749), + [anon_sym_LT_LPAREN] = ACTIONS(4749), + [anon_sym_GT_LPAREN] = ACTIONS(4749), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4751), + [sym_word] = ACTIONS(4751), + }, + [2318] = { + [sym__concat] = ACTIONS(4753), + [anon_sym_PIPE] = ACTIONS(4755), + [anon_sym_RPAREN] = ACTIONS(4753), + [anon_sym_PIPE_AMP] = ACTIONS(4753), + [anon_sym_AMP_AMP] = ACTIONS(4753), + [anon_sym_PIPE_PIPE] = ACTIONS(4753), + [sym__special_characters] = ACTIONS(4753), + [anon_sym_DQUOTE] = ACTIONS(4753), + [anon_sym_DOLLAR] = ACTIONS(4755), + [sym_raw_string] = ACTIONS(4753), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4753), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4753), + [anon_sym_BQUOTE] = ACTIONS(4753), + [anon_sym_LT_LPAREN] = ACTIONS(4753), + [anon_sym_GT_LPAREN] = ACTIONS(4753), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4755), + [sym_word] = ACTIONS(4755), + }, + [2319] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5744), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2320] = { + [sym__concat] = ACTIONS(4759), + [anon_sym_PIPE] = ACTIONS(4761), + [anon_sym_RPAREN] = ACTIONS(4759), + [anon_sym_PIPE_AMP] = ACTIONS(4759), + [anon_sym_AMP_AMP] = ACTIONS(4759), + [anon_sym_PIPE_PIPE] = ACTIONS(4759), + [sym__special_characters] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4759), + [anon_sym_DOLLAR] = ACTIONS(4761), + [sym_raw_string] = ACTIONS(4759), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4759), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4759), + [anon_sym_BQUOTE] = ACTIONS(4759), + [anon_sym_LT_LPAREN] = ACTIONS(4759), + [anon_sym_GT_LPAREN] = ACTIONS(4759), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4761), + [sym_word] = ACTIONS(4761), + }, + [2321] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5746), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2322] = { + [sym__concat] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4767), + [anon_sym_RPAREN] = ACTIONS(4765), + [anon_sym_PIPE_AMP] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [sym__special_characters] = ACTIONS(4765), + [anon_sym_DQUOTE] = ACTIONS(4765), + [anon_sym_DOLLAR] = ACTIONS(4767), + [sym_raw_string] = ACTIONS(4765), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4765), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4765), + [anon_sym_BQUOTE] = ACTIONS(4765), + [anon_sym_LT_LPAREN] = ACTIONS(4765), + [anon_sym_GT_LPAREN] = ACTIONS(4765), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4767), + [sym_word] = ACTIONS(4767), + }, + [2323] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5748), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2324] = { + [sym__concat] = ACTIONS(4771), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_RPAREN] = ACTIONS(4771), + [anon_sym_PIPE_AMP] = ACTIONS(4771), + [anon_sym_AMP_AMP] = ACTIONS(4771), + [anon_sym_PIPE_PIPE] = ACTIONS(4771), + [sym__special_characters] = ACTIONS(4771), + [anon_sym_DQUOTE] = ACTIONS(4771), + [anon_sym_DOLLAR] = ACTIONS(4773), + [sym_raw_string] = ACTIONS(4771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4771), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4771), + [anon_sym_BQUOTE] = ACTIONS(4771), + [anon_sym_LT_LPAREN] = ACTIONS(4771), + [anon_sym_GT_LPAREN] = ACTIONS(4771), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4773), + [sym_word] = ACTIONS(4773), + }, + [2325] = { + [sym__concat] = ACTIONS(4775), + [anon_sym_PIPE] = ACTIONS(4777), + [anon_sym_RPAREN] = ACTIONS(4775), + [anon_sym_PIPE_AMP] = ACTIONS(4775), + [anon_sym_AMP_AMP] = ACTIONS(4775), + [anon_sym_PIPE_PIPE] = ACTIONS(4775), + [sym__special_characters] = ACTIONS(4775), + [anon_sym_DQUOTE] = ACTIONS(4775), + [anon_sym_DOLLAR] = ACTIONS(4777), + [sym_raw_string] = ACTIONS(4775), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4775), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4775), + [anon_sym_BQUOTE] = ACTIONS(4775), + [anon_sym_LT_LPAREN] = ACTIONS(4775), + [anon_sym_GT_LPAREN] = ACTIONS(4775), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4777), + [sym_word] = ACTIONS(4777), + }, + [2326] = { + [sym__simple_heredoc_body] = ACTIONS(5325), + [sym__heredoc_body_beginning] = ACTIONS(5325), + [sym_file_descriptor] = ACTIONS(5325), + [sym__concat] = ACTIONS(5325), + [anon_sym_PIPE] = ACTIONS(5327), + [anon_sym_RPAREN] = ACTIONS(5325), + [anon_sym_PIPE_AMP] = ACTIONS(5325), + [anon_sym_AMP_AMP] = ACTIONS(5325), + [anon_sym_PIPE_PIPE] = ACTIONS(5325), + [anon_sym_EQ_TILDE] = ACTIONS(5327), + [anon_sym_EQ_EQ] = ACTIONS(5327), + [anon_sym_LT] = ACTIONS(5327), + [anon_sym_GT] = ACTIONS(5327), + [anon_sym_GT_GT] = ACTIONS(5325), + [anon_sym_AMP_GT] = ACTIONS(5327), + [anon_sym_AMP_GT_GT] = ACTIONS(5325), + [anon_sym_LT_AMP] = ACTIONS(5325), + [anon_sym_GT_AMP] = ACTIONS(5325), + [anon_sym_LT_LT] = ACTIONS(5327), + [anon_sym_LT_LT_DASH] = ACTIONS(5325), + [anon_sym_LT_LT_LT] = ACTIONS(5325), + [sym__special_characters] = ACTIONS(5325), + [anon_sym_DQUOTE] = ACTIONS(5325), + [anon_sym_DOLLAR] = ACTIONS(5327), + [sym_raw_string] = ACTIONS(5325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5325), + [anon_sym_BQUOTE] = ACTIONS(5325), + [anon_sym_LT_LPAREN] = ACTIONS(5325), + [anon_sym_GT_LPAREN] = ACTIONS(5325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5327), + }, + [2327] = { + [sym__simple_heredoc_body] = ACTIONS(5329), + [sym__heredoc_body_beginning] = ACTIONS(5329), + [sym_file_descriptor] = ACTIONS(5329), + [sym__concat] = ACTIONS(5329), + [anon_sym_PIPE] = ACTIONS(5331), + [anon_sym_RPAREN] = ACTIONS(5329), + [anon_sym_PIPE_AMP] = ACTIONS(5329), + [anon_sym_AMP_AMP] = ACTIONS(5329), + [anon_sym_PIPE_PIPE] = ACTIONS(5329), + [anon_sym_EQ_TILDE] = ACTIONS(5331), + [anon_sym_EQ_EQ] = ACTIONS(5331), + [anon_sym_LT] = ACTIONS(5331), + [anon_sym_GT] = ACTIONS(5331), + [anon_sym_GT_GT] = ACTIONS(5329), + [anon_sym_AMP_GT] = ACTIONS(5331), + [anon_sym_AMP_GT_GT] = ACTIONS(5329), + [anon_sym_LT_AMP] = ACTIONS(5329), + [anon_sym_GT_AMP] = ACTIONS(5329), + [anon_sym_LT_LT] = ACTIONS(5331), + [anon_sym_LT_LT_DASH] = ACTIONS(5329), + [anon_sym_LT_LT_LT] = ACTIONS(5329), + [sym__special_characters] = ACTIONS(5329), + [anon_sym_DQUOTE] = ACTIONS(5329), + [anon_sym_DOLLAR] = ACTIONS(5331), + [sym_raw_string] = ACTIONS(5329), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5329), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5329), + [anon_sym_BQUOTE] = ACTIONS(5329), + [anon_sym_LT_LPAREN] = ACTIONS(5329), + [anon_sym_GT_LPAREN] = ACTIONS(5329), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5331), + }, + [2328] = { + [sym__simple_heredoc_body] = ACTIONS(5333), + [sym__heredoc_body_beginning] = ACTIONS(5333), + [sym_file_descriptor] = ACTIONS(5333), + [sym__concat] = ACTIONS(5333), + [anon_sym_PIPE] = ACTIONS(5335), + [anon_sym_RPAREN] = ACTIONS(5333), + [anon_sym_PIPE_AMP] = ACTIONS(5333), + [anon_sym_AMP_AMP] = ACTIONS(5333), + [anon_sym_PIPE_PIPE] = ACTIONS(5333), + [anon_sym_EQ_TILDE] = ACTIONS(5335), + [anon_sym_EQ_EQ] = ACTIONS(5335), + [anon_sym_LT] = ACTIONS(5335), + [anon_sym_GT] = ACTIONS(5335), + [anon_sym_GT_GT] = ACTIONS(5333), + [anon_sym_AMP_GT] = ACTIONS(5335), + [anon_sym_AMP_GT_GT] = ACTIONS(5333), + [anon_sym_LT_AMP] = ACTIONS(5333), + [anon_sym_GT_AMP] = ACTIONS(5333), + [anon_sym_LT_LT] = ACTIONS(5335), + [anon_sym_LT_LT_DASH] = ACTIONS(5333), + [anon_sym_LT_LT_LT] = ACTIONS(5333), + [sym__special_characters] = ACTIONS(5333), + [anon_sym_DQUOTE] = ACTIONS(5333), + [anon_sym_DOLLAR] = ACTIONS(5335), + [sym_raw_string] = ACTIONS(5333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5333), + [anon_sym_BQUOTE] = ACTIONS(5333), + [anon_sym_LT_LPAREN] = ACTIONS(5333), + [anon_sym_GT_LPAREN] = ACTIONS(5333), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5335), + }, + [2329] = { + [aux_sym_concatenation_repeat1] = STATE(2329), + [sym__concat] = ACTIONS(4075), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1642), + [anon_sym_AMP_AMP] = ACTIONS(1642), + [anon_sym_PIPE_PIPE] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), + [sym_comment] = ACTIONS(53), + }, + [2330] = { + [aux_sym_concatenation_repeat1] = STATE(2330), + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(5695), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1642), + [anon_sym_AMP_AMP] = ACTIONS(1642), + [anon_sym_PIPE_PIPE] = ACTIONS(1642), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1642), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1642), + [anon_sym_LT_AMP] = ACTIONS(1642), + [anon_sym_GT_AMP] = ACTIONS(1642), + [anon_sym_LT_LT] = ACTIONS(1644), + [anon_sym_LT_LT_DASH] = ACTIONS(1642), + [anon_sym_LT_LT_LT] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), + [sym_comment] = ACTIONS(53), + }, + [2331] = { + [sym__heredoc_body_middle] = ACTIONS(4741), + [sym__heredoc_body_end] = ACTIONS(4741), + [anon_sym_DOLLAR] = ACTIONS(4743), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4741), + [sym_comment] = ACTIONS(53), + }, + [2332] = { + [sym__heredoc_body_middle] = ACTIONS(4745), + [sym__heredoc_body_end] = ACTIONS(4745), + [anon_sym_DOLLAR] = ACTIONS(4747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4745), + [sym_comment] = ACTIONS(53), + }, + [2333] = { + [sym__heredoc_body_middle] = ACTIONS(4749), + [sym__heredoc_body_end] = ACTIONS(4749), + [anon_sym_DOLLAR] = ACTIONS(4751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4749), + [sym_comment] = ACTIONS(53), + }, + [2334] = { + [sym__heredoc_body_middle] = ACTIONS(4753), + [sym__heredoc_body_end] = ACTIONS(4753), + [anon_sym_DOLLAR] = ACTIONS(4755), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4753), + [sym_comment] = ACTIONS(53), + }, + [2335] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5750), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), + }, + [2336] = { + [sym__heredoc_body_middle] = ACTIONS(4759), + [sym__heredoc_body_end] = ACTIONS(4759), + [anon_sym_DOLLAR] = ACTIONS(4761), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4759), + [sym_comment] = ACTIONS(53), + }, + [2337] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5752), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -63418,2773 +60007,365 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(767), }, [2338] = { - [sym_file_descriptor] = ACTIONS(2881), - [sym__concat] = ACTIONS(2881), - [anon_sym_esac] = ACTIONS(2883), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_RPAREN] = ACTIONS(2883), - [anon_sym_SEMI_SEMI] = ACTIONS(2883), - [anon_sym_PIPE_AMP] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_PIPE_PIPE] = ACTIONS(2883), - [anon_sym_LT] = ACTIONS(2883), - [anon_sym_GT] = ACTIONS(2883), - [anon_sym_GT_GT] = ACTIONS(2883), - [anon_sym_AMP_GT] = ACTIONS(2883), - [anon_sym_AMP_GT_GT] = ACTIONS(2883), - [anon_sym_LT_AMP] = ACTIONS(2883), - [anon_sym_GT_AMP] = ACTIONS(2883), - [anon_sym_LT_LT] = ACTIONS(2883), - [anon_sym_LT_LT_DASH] = ACTIONS(2883), - [anon_sym_LT_LT_LT] = ACTIONS(2883), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym_LF] = ACTIONS(2881), - [anon_sym_AMP] = ACTIONS(2883), + [sym__heredoc_body_middle] = ACTIONS(4765), + [sym__heredoc_body_end] = ACTIONS(4765), + [anon_sym_DOLLAR] = ACTIONS(4767), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4765), + [sym_comment] = ACTIONS(53), }, [2339] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5754), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5954), + [sym_word] = ACTIONS(767), }, [2340] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5956), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym__heredoc_body_middle] = ACTIONS(4771), + [sym__heredoc_body_end] = ACTIONS(4771), + [anon_sym_DOLLAR] = ACTIONS(4773), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4771), + [sym_comment] = ACTIONS(53), }, [2341] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5958), + [sym__heredoc_body_middle] = ACTIONS(4775), + [sym__heredoc_body_end] = ACTIONS(4775), + [anon_sym_DOLLAR] = ACTIONS(4777), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4775), + [sym_comment] = ACTIONS(53), }, [2342] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5938), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(4741), + [anon_sym_RPAREN] = ACTIONS(4741), + [sym__special_characters] = ACTIONS(4741), + [anon_sym_DQUOTE] = ACTIONS(4741), + [anon_sym_DOLLAR] = ACTIONS(4743), + [sym_raw_string] = ACTIONS(4741), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4741), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4741), + [anon_sym_BQUOTE] = ACTIONS(4741), + [anon_sym_LT_LPAREN] = ACTIONS(4741), + [anon_sym_GT_LPAREN] = ACTIONS(4741), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4741), }, [2343] = { - [sym_concatenation] = STATE(2603), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2603), - [anon_sym_RBRACE] = ACTIONS(5960), - [anon_sym_EQ] = ACTIONS(5962), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5964), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5962), - [anon_sym_COLON_QMARK] = ACTIONS(5962), - [anon_sym_COLON_DASH] = ACTIONS(5962), - [anon_sym_PERCENT] = ACTIONS(5962), - [anon_sym_DASH] = ACTIONS(5962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(4745), + [anon_sym_RPAREN] = ACTIONS(4745), + [sym__special_characters] = ACTIONS(4745), + [anon_sym_DQUOTE] = ACTIONS(4745), + [anon_sym_DOLLAR] = ACTIONS(4747), + [sym_raw_string] = ACTIONS(4745), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4745), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4745), + [anon_sym_BQUOTE] = ACTIONS(4745), + [anon_sym_LT_LPAREN] = ACTIONS(4745), + [anon_sym_GT_LPAREN] = ACTIONS(4745), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4745), }, [2344] = { - [sym_file_descriptor] = ACTIONS(2897), - [sym__concat] = ACTIONS(2897), - [anon_sym_esac] = ACTIONS(2899), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_RPAREN] = ACTIONS(2899), - [anon_sym_SEMI_SEMI] = ACTIONS(2899), - [anon_sym_PIPE_AMP] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_PIPE_PIPE] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [anon_sym_GT_GT] = ACTIONS(2899), - [anon_sym_AMP_GT] = ACTIONS(2899), - [anon_sym_AMP_GT_GT] = ACTIONS(2899), - [anon_sym_LT_AMP] = ACTIONS(2899), - [anon_sym_GT_AMP] = ACTIONS(2899), - [anon_sym_LT_LT] = ACTIONS(2899), - [anon_sym_LT_LT_DASH] = ACTIONS(2899), - [anon_sym_LT_LT_LT] = ACTIONS(2899), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym_LF] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2899), + [sym__concat] = ACTIONS(4749), + [anon_sym_RPAREN] = ACTIONS(4749), + [sym__special_characters] = ACTIONS(4749), + [anon_sym_DQUOTE] = ACTIONS(4749), + [anon_sym_DOLLAR] = ACTIONS(4751), + [sym_raw_string] = ACTIONS(4749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4749), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4749), + [anon_sym_BQUOTE] = ACTIONS(4749), + [anon_sym_LT_LPAREN] = ACTIONS(4749), + [anon_sym_GT_LPAREN] = ACTIONS(4749), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4749), }, [2345] = { - [sym_concatenation] = STATE(2605), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2605), - [anon_sym_RBRACE] = ACTIONS(5966), - [anon_sym_EQ] = ACTIONS(5968), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5968), - [anon_sym_COLON_QMARK] = ACTIONS(5968), - [anon_sym_COLON_DASH] = ACTIONS(5968), - [anon_sym_PERCENT] = ACTIONS(5968), - [anon_sym_DASH] = ACTIONS(5968), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(4753), + [anon_sym_RPAREN] = ACTIONS(4753), + [sym__special_characters] = ACTIONS(4753), + [anon_sym_DQUOTE] = ACTIONS(4753), + [anon_sym_DOLLAR] = ACTIONS(4755), + [sym_raw_string] = ACTIONS(4753), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4753), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4753), + [anon_sym_BQUOTE] = ACTIONS(4753), + [anon_sym_LT_LPAREN] = ACTIONS(4753), + [anon_sym_GT_LPAREN] = ACTIONS(4753), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4753), }, [2346] = { - [sym__concat] = ACTIONS(5540), - [anon_sym_PIPE] = ACTIONS(5542), - [anon_sym_RPAREN] = ACTIONS(5540), - [anon_sym_AMP_AMP] = ACTIONS(5540), - [anon_sym_PIPE_PIPE] = ACTIONS(5540), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5540), - [anon_sym_EQ_TILDE] = ACTIONS(5540), - [anon_sym_EQ_EQ] = ACTIONS(5540), - [anon_sym_EQ] = ACTIONS(5542), - [anon_sym_LT] = ACTIONS(5540), - [anon_sym_GT] = ACTIONS(5540), - [anon_sym_BANG_EQ] = ACTIONS(5540), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5540), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5756), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [2347] = { - [sym__concat] = ACTIONS(5544), - [anon_sym_PIPE] = ACTIONS(5546), - [anon_sym_RPAREN] = ACTIONS(5544), - [anon_sym_AMP_AMP] = ACTIONS(5544), - [anon_sym_PIPE_PIPE] = ACTIONS(5544), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5544), - [anon_sym_EQ_TILDE] = ACTIONS(5544), - [anon_sym_EQ_EQ] = ACTIONS(5544), - [anon_sym_EQ] = ACTIONS(5546), - [anon_sym_LT] = ACTIONS(5544), - [anon_sym_GT] = ACTIONS(5544), - [anon_sym_BANG_EQ] = ACTIONS(5544), + [sym__concat] = ACTIONS(4759), + [anon_sym_RPAREN] = ACTIONS(4759), + [sym__special_characters] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4759), + [anon_sym_DOLLAR] = ACTIONS(4761), + [sym_raw_string] = ACTIONS(4759), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4759), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4759), + [anon_sym_BQUOTE] = ACTIONS(4759), + [anon_sym_LT_LPAREN] = ACTIONS(4759), + [anon_sym_GT_LPAREN] = ACTIONS(4759), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5544), + [sym_word] = ACTIONS(4759), }, [2348] = { - [sym__concat] = ACTIONS(5548), - [anon_sym_PIPE] = ACTIONS(5550), - [anon_sym_RPAREN] = ACTIONS(5548), - [anon_sym_AMP_AMP] = ACTIONS(5548), - [anon_sym_PIPE_PIPE] = ACTIONS(5548), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5548), - [anon_sym_EQ_TILDE] = ACTIONS(5548), - [anon_sym_EQ_EQ] = ACTIONS(5548), - [anon_sym_EQ] = ACTIONS(5550), - [anon_sym_LT] = ACTIONS(5548), - [anon_sym_GT] = ACTIONS(5548), - [anon_sym_BANG_EQ] = ACTIONS(5548), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5548), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5758), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(767), }, [2349] = { - [sym__concat] = ACTIONS(5540), - [sym_variable_name] = ACTIONS(5540), - [anon_sym_PIPE] = ACTIONS(5542), - [anon_sym_RPAREN] = ACTIONS(5542), - [anon_sym_SEMI_SEMI] = ACTIONS(5542), - [anon_sym_PIPE_AMP] = ACTIONS(5542), - [anon_sym_AMP_AMP] = ACTIONS(5542), - [anon_sym_PIPE_PIPE] = ACTIONS(5542), - [sym__special_characters] = ACTIONS(5542), - [anon_sym_DQUOTE] = ACTIONS(5542), - [anon_sym_DOLLAR] = ACTIONS(5542), - [sym_raw_string] = ACTIONS(5542), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5542), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5542), - [anon_sym_BQUOTE] = ACTIONS(5542), - [anon_sym_LT_LPAREN] = ACTIONS(5542), - [anon_sym_GT_LPAREN] = ACTIONS(5542), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5542), - [sym_word] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5542), - [anon_sym_LF] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(5542), + [sym__concat] = ACTIONS(4765), + [anon_sym_RPAREN] = ACTIONS(4765), + [sym__special_characters] = ACTIONS(4765), + [anon_sym_DQUOTE] = ACTIONS(4765), + [anon_sym_DOLLAR] = ACTIONS(4767), + [sym_raw_string] = ACTIONS(4765), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4765), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4765), + [anon_sym_BQUOTE] = ACTIONS(4765), + [anon_sym_LT_LPAREN] = ACTIONS(4765), + [anon_sym_GT_LPAREN] = ACTIONS(4765), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4765), }, [2350] = { - [sym__concat] = ACTIONS(5544), - [sym_variable_name] = ACTIONS(5544), - [anon_sym_PIPE] = ACTIONS(5546), - [anon_sym_RPAREN] = ACTIONS(5546), - [anon_sym_SEMI_SEMI] = ACTIONS(5546), - [anon_sym_PIPE_AMP] = ACTIONS(5546), - [anon_sym_AMP_AMP] = ACTIONS(5546), - [anon_sym_PIPE_PIPE] = ACTIONS(5546), - [sym__special_characters] = ACTIONS(5546), - [anon_sym_DQUOTE] = ACTIONS(5546), - [anon_sym_DOLLAR] = ACTIONS(5546), - [sym_raw_string] = ACTIONS(5546), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5546), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5546), - [anon_sym_BQUOTE] = ACTIONS(5546), - [anon_sym_LT_LPAREN] = ACTIONS(5546), - [anon_sym_GT_LPAREN] = ACTIONS(5546), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(413), + [sym_simple_expansion] = STATE(413), + [sym_string_expansion] = STATE(413), + [sym_expansion] = STATE(413), + [sym_command_substitution] = STATE(413), + [sym_process_substitution] = STATE(413), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5760), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [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(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5546), - [sym_word] = ACTIONS(5546), - [anon_sym_SEMI] = ACTIONS(5546), - [anon_sym_LF] = ACTIONS(5544), - [anon_sym_AMP] = ACTIONS(5546), + [sym_word] = ACTIONS(767), }, [2351] = { - [sym__concat] = ACTIONS(5548), - [sym_variable_name] = ACTIONS(5548), - [anon_sym_PIPE] = ACTIONS(5550), - [anon_sym_RPAREN] = ACTIONS(5550), - [anon_sym_SEMI_SEMI] = ACTIONS(5550), - [anon_sym_PIPE_AMP] = ACTIONS(5550), - [anon_sym_AMP_AMP] = ACTIONS(5550), - [anon_sym_PIPE_PIPE] = ACTIONS(5550), - [sym__special_characters] = ACTIONS(5550), - [anon_sym_DQUOTE] = ACTIONS(5550), - [anon_sym_DOLLAR] = ACTIONS(5550), - [sym_raw_string] = ACTIONS(5550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5550), - [anon_sym_BQUOTE] = ACTIONS(5550), - [anon_sym_LT_LPAREN] = ACTIONS(5550), - [anon_sym_GT_LPAREN] = ACTIONS(5550), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5550), - [sym_word] = ACTIONS(5550), - [anon_sym_SEMI] = ACTIONS(5550), - [anon_sym_LF] = ACTIONS(5548), - [anon_sym_AMP] = ACTIONS(5550), + [sym__concat] = ACTIONS(4771), + [anon_sym_RPAREN] = ACTIONS(4771), + [sym__special_characters] = ACTIONS(4771), + [anon_sym_DQUOTE] = ACTIONS(4771), + [anon_sym_DOLLAR] = ACTIONS(4773), + [sym_raw_string] = ACTIONS(4771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4771), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4771), + [anon_sym_BQUOTE] = ACTIONS(4771), + [anon_sym_LT_LPAREN] = ACTIONS(4771), + [anon_sym_GT_LPAREN] = ACTIONS(4771), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4771), }, [2352] = { - [sym__concat] = ACTIONS(5540), - [anon_sym_PIPE] = ACTIONS(5542), - [anon_sym_RPAREN] = ACTIONS(5542), - [anon_sym_SEMI_SEMI] = ACTIONS(5542), - [anon_sym_PIPE_AMP] = ACTIONS(5542), - [anon_sym_AMP_AMP] = ACTIONS(5542), - [anon_sym_PIPE_PIPE] = ACTIONS(5542), - [sym__special_characters] = ACTIONS(5542), - [anon_sym_DQUOTE] = ACTIONS(5542), - [anon_sym_DOLLAR] = ACTIONS(5542), - [sym_raw_string] = ACTIONS(5542), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5542), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5542), - [anon_sym_BQUOTE] = ACTIONS(5542), - [anon_sym_LT_LPAREN] = ACTIONS(5542), - [anon_sym_GT_LPAREN] = ACTIONS(5542), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5542), - [sym_word] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5542), - [anon_sym_LF] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(5542), + [sym__concat] = ACTIONS(4775), + [anon_sym_RPAREN] = ACTIONS(4775), + [sym__special_characters] = ACTIONS(4775), + [anon_sym_DQUOTE] = ACTIONS(4775), + [anon_sym_DOLLAR] = ACTIONS(4777), + [sym_raw_string] = ACTIONS(4775), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4775), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4775), + [anon_sym_BQUOTE] = ACTIONS(4775), + [anon_sym_LT_LPAREN] = ACTIONS(4775), + [anon_sym_GT_LPAREN] = ACTIONS(4775), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4775), }, [2353] = { - [sym__concat] = ACTIONS(5544), - [anon_sym_PIPE] = ACTIONS(5546), - [anon_sym_RPAREN] = ACTIONS(5546), - [anon_sym_SEMI_SEMI] = ACTIONS(5546), - [anon_sym_PIPE_AMP] = ACTIONS(5546), - [anon_sym_AMP_AMP] = ACTIONS(5546), - [anon_sym_PIPE_PIPE] = ACTIONS(5546), - [sym__special_characters] = ACTIONS(5546), - [anon_sym_DQUOTE] = ACTIONS(5546), - [anon_sym_DOLLAR] = ACTIONS(5546), - [sym_raw_string] = ACTIONS(5546), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5546), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5546), - [anon_sym_BQUOTE] = ACTIONS(5546), - [anon_sym_LT_LPAREN] = ACTIONS(5546), - [anon_sym_GT_LPAREN] = ACTIONS(5546), + [sym_file_descriptor] = ACTIONS(5325), + [sym__concat] = ACTIONS(5325), + [sym_variable_name] = ACTIONS(5325), + [anon_sym_esac] = ACTIONS(5327), + [anon_sym_PIPE] = ACTIONS(5327), + [anon_sym_RPAREN] = ACTIONS(5327), + [anon_sym_SEMI_SEMI] = ACTIONS(5327), + [anon_sym_PIPE_AMP] = ACTIONS(5327), + [anon_sym_AMP_AMP] = ACTIONS(5327), + [anon_sym_PIPE_PIPE] = ACTIONS(5327), + [anon_sym_LT] = ACTIONS(5327), + [anon_sym_GT] = ACTIONS(5327), + [anon_sym_GT_GT] = ACTIONS(5327), + [anon_sym_AMP_GT] = ACTIONS(5327), + [anon_sym_AMP_GT_GT] = ACTIONS(5327), + [anon_sym_LT_AMP] = ACTIONS(5327), + [anon_sym_GT_AMP] = ACTIONS(5327), + [sym__special_characters] = ACTIONS(5327), + [anon_sym_DQUOTE] = ACTIONS(5327), + [anon_sym_DOLLAR] = ACTIONS(5327), + [sym_raw_string] = ACTIONS(5327), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5327), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5327), + [anon_sym_BQUOTE] = ACTIONS(5327), + [anon_sym_LT_LPAREN] = ACTIONS(5327), + [anon_sym_GT_LPAREN] = ACTIONS(5327), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5546), - [sym_word] = ACTIONS(5546), - [anon_sym_SEMI] = ACTIONS(5546), - [anon_sym_LF] = ACTIONS(5544), - [anon_sym_AMP] = ACTIONS(5546), + [sym_word] = ACTIONS(5327), + [anon_sym_SEMI] = ACTIONS(5327), + [anon_sym_LF] = ACTIONS(5325), + [anon_sym_AMP] = ACTIONS(5327), }, [2354] = { - [sym__concat] = ACTIONS(5548), - [anon_sym_PIPE] = ACTIONS(5550), - [anon_sym_RPAREN] = ACTIONS(5550), - [anon_sym_SEMI_SEMI] = ACTIONS(5550), - [anon_sym_PIPE_AMP] = ACTIONS(5550), - [anon_sym_AMP_AMP] = ACTIONS(5550), - [anon_sym_PIPE_PIPE] = ACTIONS(5550), - [sym__special_characters] = ACTIONS(5550), - [anon_sym_DQUOTE] = ACTIONS(5550), - [anon_sym_DOLLAR] = ACTIONS(5550), - [sym_raw_string] = ACTIONS(5550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5550), - [anon_sym_BQUOTE] = ACTIONS(5550), - [anon_sym_LT_LPAREN] = ACTIONS(5550), - [anon_sym_GT_LPAREN] = ACTIONS(5550), + [sym_file_descriptor] = ACTIONS(5329), + [sym__concat] = ACTIONS(5329), + [sym_variable_name] = ACTIONS(5329), + [anon_sym_esac] = ACTIONS(5331), + [anon_sym_PIPE] = ACTIONS(5331), + [anon_sym_RPAREN] = ACTIONS(5331), + [anon_sym_SEMI_SEMI] = ACTIONS(5331), + [anon_sym_PIPE_AMP] = ACTIONS(5331), + [anon_sym_AMP_AMP] = ACTIONS(5331), + [anon_sym_PIPE_PIPE] = ACTIONS(5331), + [anon_sym_LT] = ACTIONS(5331), + [anon_sym_GT] = ACTIONS(5331), + [anon_sym_GT_GT] = ACTIONS(5331), + [anon_sym_AMP_GT] = ACTIONS(5331), + [anon_sym_AMP_GT_GT] = ACTIONS(5331), + [anon_sym_LT_AMP] = ACTIONS(5331), + [anon_sym_GT_AMP] = ACTIONS(5331), + [sym__special_characters] = ACTIONS(5331), + [anon_sym_DQUOTE] = ACTIONS(5331), + [anon_sym_DOLLAR] = ACTIONS(5331), + [sym_raw_string] = ACTIONS(5331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5331), + [anon_sym_BQUOTE] = ACTIONS(5331), + [anon_sym_LT_LPAREN] = ACTIONS(5331), + [anon_sym_GT_LPAREN] = ACTIONS(5331), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5550), - [sym_word] = ACTIONS(5550), - [anon_sym_SEMI] = ACTIONS(5550), - [anon_sym_LF] = ACTIONS(5548), - [anon_sym_AMP] = ACTIONS(5550), + [sym_word] = ACTIONS(5331), + [anon_sym_SEMI] = ACTIONS(5331), + [anon_sym_LF] = ACTIONS(5329), + [anon_sym_AMP] = ACTIONS(5331), }, [2355] = { - [sym_file_descriptor] = ACTIONS(5540), - [sym__concat] = ACTIONS(5540), - [sym_variable_name] = ACTIONS(5540), - [anon_sym_PIPE] = ACTIONS(5542), - [anon_sym_RPAREN] = ACTIONS(5540), - [anon_sym_PIPE_AMP] = ACTIONS(5540), - [anon_sym_AMP_AMP] = ACTIONS(5540), - [anon_sym_PIPE_PIPE] = ACTIONS(5540), - [anon_sym_LT] = ACTIONS(5542), - [anon_sym_GT] = ACTIONS(5542), - [anon_sym_GT_GT] = ACTIONS(5540), - [anon_sym_AMP_GT] = ACTIONS(5542), - [anon_sym_AMP_GT_GT] = ACTIONS(5540), - [anon_sym_LT_AMP] = ACTIONS(5540), - [anon_sym_GT_AMP] = ACTIONS(5540), - [sym__special_characters] = ACTIONS(5540), - [anon_sym_DQUOTE] = ACTIONS(5540), - [anon_sym_DOLLAR] = ACTIONS(5542), - [sym_raw_string] = ACTIONS(5540), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5540), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5540), - [anon_sym_BQUOTE] = ACTIONS(5540), - [anon_sym_LT_LPAREN] = ACTIONS(5540), - [anon_sym_GT_LPAREN] = ACTIONS(5540), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5540), + [sym_file_descriptor] = ACTIONS(5333), + [sym__concat] = ACTIONS(5333), + [sym_variable_name] = ACTIONS(5333), + [anon_sym_esac] = ACTIONS(5335), + [anon_sym_PIPE] = ACTIONS(5335), + [anon_sym_RPAREN] = ACTIONS(5335), + [anon_sym_SEMI_SEMI] = ACTIONS(5335), + [anon_sym_PIPE_AMP] = ACTIONS(5335), + [anon_sym_AMP_AMP] = ACTIONS(5335), + [anon_sym_PIPE_PIPE] = ACTIONS(5335), + [anon_sym_LT] = ACTIONS(5335), + [anon_sym_GT] = ACTIONS(5335), + [anon_sym_GT_GT] = ACTIONS(5335), + [anon_sym_AMP_GT] = ACTIONS(5335), + [anon_sym_AMP_GT_GT] = ACTIONS(5335), + [anon_sym_LT_AMP] = ACTIONS(5335), + [anon_sym_GT_AMP] = ACTIONS(5335), + [sym__special_characters] = ACTIONS(5335), + [anon_sym_DQUOTE] = ACTIONS(5335), + [anon_sym_DOLLAR] = ACTIONS(5335), + [sym_raw_string] = ACTIONS(5335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5335), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5335), + [anon_sym_BQUOTE] = ACTIONS(5335), + [anon_sym_LT_LPAREN] = ACTIONS(5335), + [anon_sym_GT_LPAREN] = ACTIONS(5335), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(5335), + [anon_sym_SEMI] = ACTIONS(5335), + [anon_sym_LF] = ACTIONS(5333), + [anon_sym_AMP] = ACTIONS(5335), }, [2356] = { - [sym_file_descriptor] = ACTIONS(5544), - [sym__concat] = ACTIONS(5544), - [sym_variable_name] = ACTIONS(5544), - [anon_sym_PIPE] = ACTIONS(5546), - [anon_sym_RPAREN] = ACTIONS(5544), - [anon_sym_PIPE_AMP] = ACTIONS(5544), - [anon_sym_AMP_AMP] = ACTIONS(5544), - [anon_sym_PIPE_PIPE] = ACTIONS(5544), - [anon_sym_LT] = ACTIONS(5546), - [anon_sym_GT] = ACTIONS(5546), - [anon_sym_GT_GT] = ACTIONS(5544), - [anon_sym_AMP_GT] = ACTIONS(5546), - [anon_sym_AMP_GT_GT] = ACTIONS(5544), - [anon_sym_LT_AMP] = ACTIONS(5544), - [anon_sym_GT_AMP] = ACTIONS(5544), - [sym__special_characters] = ACTIONS(5544), - [anon_sym_DQUOTE] = ACTIONS(5544), - [anon_sym_DOLLAR] = ACTIONS(5546), - [sym_raw_string] = ACTIONS(5544), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5544), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5544), - [anon_sym_BQUOTE] = ACTIONS(5544), - [anon_sym_LT_LPAREN] = ACTIONS(5544), - [anon_sym_GT_LPAREN] = ACTIONS(5544), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5544), - }, - [2357] = { - [sym_file_descriptor] = ACTIONS(5548), - [sym__concat] = ACTIONS(5548), - [sym_variable_name] = ACTIONS(5548), - [anon_sym_PIPE] = ACTIONS(5550), - [anon_sym_RPAREN] = ACTIONS(5548), - [anon_sym_PIPE_AMP] = ACTIONS(5548), - [anon_sym_AMP_AMP] = ACTIONS(5548), - [anon_sym_PIPE_PIPE] = ACTIONS(5548), - [anon_sym_LT] = ACTIONS(5550), - [anon_sym_GT] = ACTIONS(5550), - [anon_sym_GT_GT] = ACTIONS(5548), - [anon_sym_AMP_GT] = ACTIONS(5550), - [anon_sym_AMP_GT_GT] = ACTIONS(5548), - [anon_sym_LT_AMP] = ACTIONS(5548), - [anon_sym_GT_AMP] = ACTIONS(5548), - [sym__special_characters] = ACTIONS(5548), - [anon_sym_DQUOTE] = ACTIONS(5548), - [anon_sym_DOLLAR] = ACTIONS(5550), - [sym_raw_string] = ACTIONS(5548), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5548), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5548), - [anon_sym_BQUOTE] = ACTIONS(5548), - [anon_sym_LT_LPAREN] = ACTIONS(5548), - [anon_sym_GT_LPAREN] = ACTIONS(5548), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5548), - }, - [2358] = { - [sym__concat] = ACTIONS(5540), - [anon_sym_DQUOTE] = ACTIONS(5542), - [anon_sym_DOLLAR] = ACTIONS(5542), - [sym__string_content] = ACTIONS(5540), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5542), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5542), - [anon_sym_BQUOTE] = ACTIONS(5542), - [sym_comment] = ACTIONS(177), - }, - [2359] = { - [sym__concat] = ACTIONS(5544), - [anon_sym_DQUOTE] = ACTIONS(5546), - [anon_sym_DOLLAR] = ACTIONS(5546), - [sym__string_content] = ACTIONS(5544), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5546), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5546), - [anon_sym_BQUOTE] = ACTIONS(5546), - [sym_comment] = ACTIONS(177), - }, - [2360] = { - [sym__concat] = ACTIONS(5548), - [anon_sym_DQUOTE] = ACTIONS(5550), - [anon_sym_DOLLAR] = ACTIONS(5550), - [sym__string_content] = ACTIONS(5548), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5550), - [anon_sym_BQUOTE] = ACTIONS(5550), - [sym_comment] = ACTIONS(177), - }, - [2361] = { - [sym__concat] = ACTIONS(3917), - [anon_sym_RBRACE] = ACTIONS(3917), - [sym_comment] = ACTIONS(53), - }, - [2362] = { - [sym__concat] = ACTIONS(3923), - [anon_sym_RBRACE] = ACTIONS(3923), - [sym_comment] = ACTIONS(53), - }, - [2363] = { - [sym__concat] = ACTIONS(4008), - [anon_sym_RBRACE] = ACTIONS(4008), - [sym_comment] = ACTIONS(53), - }, - [2364] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5972), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2365] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5974), - [sym_comment] = ACTIONS(53), - }, - [2366] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(5976), - [sym_comment] = ACTIONS(53), - }, - [2367] = { - [anon_sym_RBRACE] = ACTIONS(5976), - [sym_comment] = ACTIONS(53), - }, - [2368] = { - [sym_concatenation] = STATE(2610), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2610), - [anon_sym_RBRACE] = ACTIONS(5978), - [anon_sym_EQ] = ACTIONS(5980), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5982), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5980), - [anon_sym_COLON_QMARK] = ACTIONS(5980), - [anon_sym_COLON_DASH] = ACTIONS(5980), - [anon_sym_PERCENT] = ACTIONS(5980), - [anon_sym_DASH] = ACTIONS(5980), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2369] = { - [sym__concat] = ACTIONS(4024), - [anon_sym_RBRACE] = ACTIONS(4024), - [sym_comment] = ACTIONS(53), - }, - [2370] = { - [sym_concatenation] = STATE(2612), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2612), - [anon_sym_RBRACE] = ACTIONS(5984), - [anon_sym_EQ] = ACTIONS(5986), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5986), - [anon_sym_COLON_QMARK] = ACTIONS(5986), - [anon_sym_COLON_DASH] = ACTIONS(5986), - [anon_sym_PERCENT] = ACTIONS(5986), - [anon_sym_DASH] = ACTIONS(5986), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2371] = { - [sym__concat] = ACTIONS(4034), - [anon_sym_RBRACE] = ACTIONS(4034), - [sym_comment] = ACTIONS(53), - }, - [2372] = { - [sym_concatenation] = STATE(2614), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2614), - [anon_sym_RBRACE] = ACTIONS(5990), - [anon_sym_EQ] = ACTIONS(5992), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5994), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2373] = { - [sym__concat] = ACTIONS(4044), - [anon_sym_RBRACE] = ACTIONS(4044), - [sym_comment] = ACTIONS(53), - }, - [2374] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5996), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2375] = { - [sym__concat] = ACTIONS(4050), - [anon_sym_RBRACE] = ACTIONS(4050), - [sym_comment] = ACTIONS(53), - }, - [2376] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(5998), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2377] = { - [sym__concat] = ACTIONS(4884), - [anon_sym_RBRACE] = ACTIONS(4884), - [anon_sym_EQ] = ACTIONS(4886), - [sym__special_characters] = ACTIONS(4886), - [anon_sym_DQUOTE] = ACTIONS(4884), - [anon_sym_DOLLAR] = ACTIONS(4886), - [sym_raw_string] = ACTIONS(4884), - [anon_sym_POUND] = ACTIONS(4884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4884), - [anon_sym_COLON] = ACTIONS(4886), - [anon_sym_COLON_QMARK] = ACTIONS(4886), - [anon_sym_COLON_DASH] = ACTIONS(4886), - [anon_sym_PERCENT] = ACTIONS(4886), - [anon_sym_DASH] = ACTIONS(4886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4884), - [anon_sym_BQUOTE] = ACTIONS(4884), - [anon_sym_LT_LPAREN] = ACTIONS(4884), - [anon_sym_GT_LPAREN] = ACTIONS(4884), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4886), - }, - [2378] = { - [sym__concat] = ACTIONS(4888), - [anon_sym_RBRACE] = ACTIONS(4888), - [anon_sym_EQ] = ACTIONS(4890), - [sym__special_characters] = ACTIONS(4890), - [anon_sym_DQUOTE] = ACTIONS(4888), - [anon_sym_DOLLAR] = ACTIONS(4890), - [sym_raw_string] = ACTIONS(4888), - [anon_sym_POUND] = ACTIONS(4888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4888), - [anon_sym_COLON] = ACTIONS(4890), - [anon_sym_COLON_QMARK] = ACTIONS(4890), - [anon_sym_COLON_DASH] = ACTIONS(4890), - [anon_sym_PERCENT] = ACTIONS(4890), - [anon_sym_DASH] = ACTIONS(4890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4888), - [anon_sym_BQUOTE] = ACTIONS(4888), - [anon_sym_LT_LPAREN] = ACTIONS(4888), - [anon_sym_GT_LPAREN] = ACTIONS(4888), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4890), - }, - [2379] = { - [sym__concat] = ACTIONS(4892), - [anon_sym_RBRACE] = ACTIONS(4892), - [anon_sym_EQ] = ACTIONS(4894), - [sym__special_characters] = ACTIONS(4894), - [anon_sym_DQUOTE] = ACTIONS(4892), - [anon_sym_DOLLAR] = ACTIONS(4894), - [sym_raw_string] = ACTIONS(4892), - [anon_sym_POUND] = ACTIONS(4892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4892), - [anon_sym_COLON] = ACTIONS(4894), - [anon_sym_COLON_QMARK] = ACTIONS(4894), - [anon_sym_COLON_DASH] = ACTIONS(4894), - [anon_sym_PERCENT] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4892), - [anon_sym_BQUOTE] = ACTIONS(4892), - [anon_sym_LT_LPAREN] = ACTIONS(4892), - [anon_sym_GT_LPAREN] = ACTIONS(4892), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4894), - }, - [2380] = { - [sym__concat] = ACTIONS(4896), - [anon_sym_RBRACE] = ACTIONS(4896), - [anon_sym_EQ] = ACTIONS(4898), - [sym__special_characters] = ACTIONS(4898), - [anon_sym_DQUOTE] = ACTIONS(4896), - [anon_sym_DOLLAR] = ACTIONS(4898), - [sym_raw_string] = ACTIONS(4896), - [anon_sym_POUND] = ACTIONS(4896), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4896), - [anon_sym_COLON] = ACTIONS(4898), - [anon_sym_COLON_QMARK] = ACTIONS(4898), - [anon_sym_COLON_DASH] = ACTIONS(4898), - [anon_sym_PERCENT] = ACTIONS(4898), - [anon_sym_DASH] = ACTIONS(4898), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4896), - [anon_sym_BQUOTE] = ACTIONS(4896), - [anon_sym_LT_LPAREN] = ACTIONS(4896), - [anon_sym_GT_LPAREN] = ACTIONS(4896), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4898), - }, - [2381] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6000), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2382] = { - [sym__concat] = ACTIONS(4902), - [anon_sym_RBRACE] = ACTIONS(4902), - [anon_sym_EQ] = ACTIONS(4904), - [sym__special_characters] = ACTIONS(4904), - [anon_sym_DQUOTE] = ACTIONS(4902), - [anon_sym_DOLLAR] = ACTIONS(4904), - [sym_raw_string] = ACTIONS(4902), - [anon_sym_POUND] = ACTIONS(4902), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4902), - [anon_sym_COLON] = ACTIONS(4904), - [anon_sym_COLON_QMARK] = ACTIONS(4904), - [anon_sym_COLON_DASH] = ACTIONS(4904), - [anon_sym_PERCENT] = ACTIONS(4904), - [anon_sym_DASH] = ACTIONS(4904), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4902), - [anon_sym_BQUOTE] = ACTIONS(4902), - [anon_sym_LT_LPAREN] = ACTIONS(4902), - [anon_sym_GT_LPAREN] = ACTIONS(4902), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4904), - }, - [2383] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6002), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2384] = { - [sym__concat] = ACTIONS(4908), - [anon_sym_RBRACE] = ACTIONS(4908), - [anon_sym_EQ] = ACTIONS(4910), - [sym__special_characters] = ACTIONS(4910), - [anon_sym_DQUOTE] = ACTIONS(4908), - [anon_sym_DOLLAR] = ACTIONS(4910), - [sym_raw_string] = ACTIONS(4908), - [anon_sym_POUND] = ACTIONS(4908), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4908), - [anon_sym_COLON] = ACTIONS(4910), - [anon_sym_COLON_QMARK] = ACTIONS(4910), - [anon_sym_COLON_DASH] = ACTIONS(4910), - [anon_sym_PERCENT] = ACTIONS(4910), - [anon_sym_DASH] = ACTIONS(4910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4908), - [anon_sym_BQUOTE] = ACTIONS(4908), - [anon_sym_LT_LPAREN] = ACTIONS(4908), - [anon_sym_GT_LPAREN] = ACTIONS(4908), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4910), - }, - [2385] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6004), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2386] = { - [sym__concat] = ACTIONS(4914), - [anon_sym_RBRACE] = ACTIONS(4914), - [anon_sym_EQ] = ACTIONS(4916), - [sym__special_characters] = ACTIONS(4916), - [anon_sym_DQUOTE] = ACTIONS(4914), - [anon_sym_DOLLAR] = ACTIONS(4916), - [sym_raw_string] = ACTIONS(4914), - [anon_sym_POUND] = ACTIONS(4914), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4914), - [anon_sym_COLON] = ACTIONS(4916), - [anon_sym_COLON_QMARK] = ACTIONS(4916), - [anon_sym_COLON_DASH] = ACTIONS(4916), - [anon_sym_PERCENT] = ACTIONS(4916), - [anon_sym_DASH] = ACTIONS(4916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4914), - [anon_sym_BQUOTE] = ACTIONS(4914), - [anon_sym_LT_LPAREN] = ACTIONS(4914), - [anon_sym_GT_LPAREN] = ACTIONS(4914), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4916), - }, - [2387] = { - [sym__concat] = ACTIONS(4918), - [anon_sym_RBRACE] = ACTIONS(4918), - [anon_sym_EQ] = ACTIONS(4920), - [sym__special_characters] = ACTIONS(4920), - [anon_sym_DQUOTE] = ACTIONS(4918), - [anon_sym_DOLLAR] = ACTIONS(4920), - [sym_raw_string] = ACTIONS(4918), - [anon_sym_POUND] = ACTIONS(4918), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4918), - [anon_sym_COLON] = ACTIONS(4920), - [anon_sym_COLON_QMARK] = ACTIONS(4920), - [anon_sym_COLON_DASH] = ACTIONS(4920), - [anon_sym_PERCENT] = ACTIONS(4920), - [anon_sym_DASH] = ACTIONS(4920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4918), - [anon_sym_BQUOTE] = ACTIONS(4918), - [anon_sym_LT_LPAREN] = ACTIONS(4918), - [anon_sym_GT_LPAREN] = ACTIONS(4918), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4920), - }, - [2388] = { - [anon_sym_PIPE] = ACTIONS(5242), - [anon_sym_RPAREN] = ACTIONS(5244), - [anon_sym_PIPE_AMP] = ACTIONS(5244), - [anon_sym_AMP_AMP] = ACTIONS(5244), - [anon_sym_PIPE_PIPE] = ACTIONS(5244), - [anon_sym_BQUOTE] = ACTIONS(5244), - [sym_comment] = ACTIONS(53), - }, - [2389] = { - [anon_sym_PIPE] = ACTIONS(5371), - [anon_sym_RPAREN] = ACTIONS(5373), - [anon_sym_PIPE_AMP] = ACTIONS(5373), - [anon_sym_AMP_AMP] = ACTIONS(5373), - [anon_sym_PIPE_PIPE] = ACTIONS(5373), - [anon_sym_BQUOTE] = ACTIONS(5373), - [sym_comment] = ACTIONS(53), - }, - [2390] = { - [anon_sym_esac] = ACTIONS(6006), - [sym_comment] = ACTIONS(53), - }, - [2391] = { - [anon_sym_PIPE] = ACTIONS(5381), - [anon_sym_RPAREN] = ACTIONS(5383), - [anon_sym_PIPE_AMP] = ACTIONS(5383), - [anon_sym_AMP_AMP] = ACTIONS(5383), - [anon_sym_PIPE_PIPE] = ACTIONS(5383), - [anon_sym_BQUOTE] = ACTIONS(5383), - [sym_comment] = ACTIONS(53), - }, - [2392] = { - [anon_sym_esac] = ACTIONS(6008), - [sym_comment] = ACTIONS(53), - }, - [2393] = { - [aux_sym_concatenation_repeat1] = STATE(2393), - [sym__concat] = ACTIONS(4163), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1654), - [anon_sym_PIPE_AMP] = ACTIONS(1654), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_PIPE_PIPE] = ACTIONS(1654), - [sym_comment] = ACTIONS(53), - }, - [2394] = { - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(1654), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1654), - [anon_sym_PIPE_AMP] = ACTIONS(1654), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_PIPE_PIPE] = ACTIONS(1654), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1654), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1654), - [anon_sym_LT_AMP] = ACTIONS(1654), - [anon_sym_GT_AMP] = ACTIONS(1654), - [anon_sym_LT_LT] = ACTIONS(1656), - [anon_sym_LT_LT_DASH] = ACTIONS(1654), - [anon_sym_LT_LT_LT] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(53), - }, - [2395] = { - [aux_sym_concatenation_repeat1] = STATE(2395), - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(6010), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1654), - [anon_sym_PIPE_AMP] = ACTIONS(1654), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_PIPE_PIPE] = ACTIONS(1654), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1654), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1654), - [anon_sym_LT_AMP] = ACTIONS(1654), - [anon_sym_GT_AMP] = ACTIONS(1654), - [anon_sym_LT_LT] = ACTIONS(1656), - [anon_sym_LT_LT_DASH] = ACTIONS(1654), - [anon_sym_LT_LT_LT] = ACTIONS(1654), - [sym_comment] = ACTIONS(53), - }, - [2396] = { - [sym_file_descriptor] = ACTIONS(1703), - [sym__concat] = ACTIONS(1703), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_RPAREN] = ACTIONS(1703), - [anon_sym_PIPE_AMP] = ACTIONS(1703), - [anon_sym_AMP_AMP] = ACTIONS(1703), - [anon_sym_PIPE_PIPE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_GT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1703), - [anon_sym_AMP_GT] = ACTIONS(1705), - [anon_sym_AMP_GT_GT] = ACTIONS(1703), - [anon_sym_LT_AMP] = ACTIONS(1703), - [anon_sym_GT_AMP] = ACTIONS(1703), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_LT_LT_DASH] = ACTIONS(1703), - [anon_sym_LT_LT_LT] = ACTIONS(1703), - [anon_sym_BQUOTE] = ACTIONS(1703), - [sym_comment] = ACTIONS(53), - }, - [2397] = { - [sym_concatenation] = STATE(2625), - [sym_string] = STATE(2624), - [sym_simple_expansion] = STATE(2624), - [sym_string_expansion] = STATE(2624), - [sym_expansion] = STATE(2624), - [sym_command_substitution] = STATE(2624), - [sym_process_substitution] = STATE(2624), - [anon_sym_RBRACE] = ACTIONS(6013), - [sym__special_characters] = ACTIONS(6015), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(6017), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6017), - }, - [2398] = { - [sym_file_descriptor] = ACTIONS(1744), - [sym__concat] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1744), - [anon_sym_PIPE_AMP] = ACTIONS(1744), - [anon_sym_AMP_AMP] = ACTIONS(1744), - [anon_sym_PIPE_PIPE] = ACTIONS(1744), - [anon_sym_LT] = ACTIONS(1746), - [anon_sym_GT] = ACTIONS(1746), - [anon_sym_GT_GT] = ACTIONS(1744), - [anon_sym_AMP_GT] = ACTIONS(1746), - [anon_sym_AMP_GT_GT] = ACTIONS(1744), - [anon_sym_LT_AMP] = ACTIONS(1744), - [anon_sym_GT_AMP] = ACTIONS(1744), - [anon_sym_LT_LT] = ACTIONS(1746), - [anon_sym_LT_LT_DASH] = ACTIONS(1744), - [anon_sym_LT_LT_LT] = ACTIONS(1744), - [anon_sym_BQUOTE] = ACTIONS(1744), - [sym_comment] = ACTIONS(53), - }, - [2399] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6019), - }, - [2400] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6021), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2401] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(6023), - [sym_comment] = ACTIONS(53), - }, - [2402] = { - [sym_concatenation] = STATE(2631), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2631), - [anon_sym_RBRACE] = ACTIONS(6025), - [anon_sym_EQ] = ACTIONS(6027), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6029), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6031), - [anon_sym_COLON] = ACTIONS(6027), - [anon_sym_COLON_QMARK] = ACTIONS(6027), - [anon_sym_COLON_DASH] = ACTIONS(6027), - [anon_sym_PERCENT] = ACTIONS(6027), - [anon_sym_DASH] = ACTIONS(6027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2403] = { - [sym_concatenation] = STATE(2634), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2634), - [anon_sym_RBRACE] = ACTIONS(6033), - [anon_sym_EQ] = ACTIONS(6035), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6039), - [anon_sym_COLON] = ACTIONS(6035), - [anon_sym_COLON_QMARK] = ACTIONS(6035), - [anon_sym_COLON_DASH] = ACTIONS(6035), - [anon_sym_PERCENT] = ACTIONS(6035), - [anon_sym_DASH] = ACTIONS(6035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2404] = { - [sym_concatenation] = STATE(2636), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2636), - [anon_sym_RBRACE] = ACTIONS(6013), - [anon_sym_EQ] = ACTIONS(6041), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6045), - [anon_sym_COLON] = ACTIONS(6041), - [anon_sym_COLON_QMARK] = ACTIONS(6041), - [anon_sym_COLON_DASH] = ACTIONS(6041), - [anon_sym_PERCENT] = ACTIONS(6041), - [anon_sym_DASH] = ACTIONS(6041), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2405] = { - [sym_file_descriptor] = ACTIONS(1810), - [sym__concat] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_PIPE_AMP] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1812), - [anon_sym_GT] = ACTIONS(1812), - [anon_sym_GT_GT] = ACTIONS(1810), - [anon_sym_AMP_GT] = ACTIONS(1812), - [anon_sym_AMP_GT_GT] = ACTIONS(1810), - [anon_sym_LT_AMP] = ACTIONS(1810), - [anon_sym_GT_AMP] = ACTIONS(1810), - [anon_sym_LT_LT] = ACTIONS(1812), - [anon_sym_LT_LT_DASH] = ACTIONS(1810), - [anon_sym_LT_LT_LT] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1810), - [sym_comment] = ACTIONS(53), - }, - [2406] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6047), - }, - [2407] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6049), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2408] = { - [sym_file_descriptor] = ACTIONS(1818), - [sym__concat] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_PIPE_AMP] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1820), - [anon_sym_GT] = ACTIONS(1820), - [anon_sym_GT_GT] = ACTIONS(1818), - [anon_sym_AMP_GT] = ACTIONS(1820), - [anon_sym_AMP_GT_GT] = ACTIONS(1818), - [anon_sym_LT_AMP] = ACTIONS(1818), - [anon_sym_GT_AMP] = ACTIONS(1818), - [anon_sym_LT_LT] = ACTIONS(1820), - [anon_sym_LT_LT_DASH] = ACTIONS(1818), - [anon_sym_LT_LT_LT] = ACTIONS(1818), - [anon_sym_BQUOTE] = ACTIONS(1818), - [sym_comment] = ACTIONS(53), - }, - [2409] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6051), - }, - [2410] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6013), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2411] = { - [sym_file_descriptor] = ACTIONS(1952), - [sym__concat] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_RPAREN] = ACTIONS(1952), - [anon_sym_PIPE_AMP] = ACTIONS(1952), - [anon_sym_AMP_AMP] = ACTIONS(1952), - [anon_sym_PIPE_PIPE] = ACTIONS(1952), - [anon_sym_LT] = ACTIONS(1954), - [anon_sym_GT] = ACTIONS(1954), - [anon_sym_GT_GT] = ACTIONS(1952), - [anon_sym_AMP_GT] = ACTIONS(1954), - [anon_sym_AMP_GT_GT] = ACTIONS(1952), - [anon_sym_LT_AMP] = ACTIONS(1952), - [anon_sym_GT_AMP] = ACTIONS(1952), - [anon_sym_LT_LT] = ACTIONS(1954), - [anon_sym_LT_LT_DASH] = ACTIONS(1952), - [anon_sym_LT_LT_LT] = ACTIONS(1952), - [anon_sym_BQUOTE] = ACTIONS(1952), - [sym_comment] = ACTIONS(53), - }, - [2412] = { - [sym_file_descriptor] = ACTIONS(2018), - [sym__concat] = ACTIONS(2018), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_RPAREN] = ACTIONS(2018), - [anon_sym_PIPE_AMP] = ACTIONS(2018), - [anon_sym_AMP_AMP] = ACTIONS(2018), - [anon_sym_PIPE_PIPE] = ACTIONS(2018), - [anon_sym_LT] = ACTIONS(2020), - [anon_sym_GT] = ACTIONS(2020), - [anon_sym_GT_GT] = ACTIONS(2018), - [anon_sym_AMP_GT] = ACTIONS(2020), - [anon_sym_AMP_GT_GT] = ACTIONS(2018), - [anon_sym_LT_AMP] = ACTIONS(2018), - [anon_sym_GT_AMP] = ACTIONS(2018), - [anon_sym_LT_LT] = ACTIONS(2020), - [anon_sym_LT_LT_DASH] = ACTIONS(2018), - [anon_sym_LT_LT_LT] = ACTIONS(2018), - [anon_sym_BQUOTE] = ACTIONS(2018), - [sym_comment] = ACTIONS(53), - }, - [2413] = { - [sym__concat] = ACTIONS(4884), - [sym_variable_name] = ACTIONS(4884), - [anon_sym_PIPE] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4884), - [anon_sym_PIPE_AMP] = ACTIONS(4884), - [anon_sym_AMP_AMP] = ACTIONS(4884), - [anon_sym_PIPE_PIPE] = ACTIONS(4884), - [sym__special_characters] = ACTIONS(4884), - [anon_sym_DQUOTE] = ACTIONS(4884), - [anon_sym_DOLLAR] = ACTIONS(4886), - [sym_raw_string] = ACTIONS(4884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4884), - [anon_sym_BQUOTE] = ACTIONS(4884), - [anon_sym_LT_LPAREN] = ACTIONS(4884), - [anon_sym_GT_LPAREN] = ACTIONS(4884), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4886), - [sym_word] = ACTIONS(4886), - }, - [2414] = { - [sym__concat] = ACTIONS(4888), - [sym_variable_name] = ACTIONS(4888), - [anon_sym_PIPE] = ACTIONS(4890), - [anon_sym_RPAREN] = ACTIONS(4888), - [anon_sym_PIPE_AMP] = ACTIONS(4888), - [anon_sym_AMP_AMP] = ACTIONS(4888), - [anon_sym_PIPE_PIPE] = ACTIONS(4888), - [sym__special_characters] = ACTIONS(4888), - [anon_sym_DQUOTE] = ACTIONS(4888), - [anon_sym_DOLLAR] = ACTIONS(4890), - [sym_raw_string] = ACTIONS(4888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4888), - [anon_sym_BQUOTE] = ACTIONS(4888), - [anon_sym_LT_LPAREN] = ACTIONS(4888), - [anon_sym_GT_LPAREN] = ACTIONS(4888), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4890), - [sym_word] = ACTIONS(4890), - }, - [2415] = { - [sym__concat] = ACTIONS(4892), - [sym_variable_name] = ACTIONS(4892), - [anon_sym_PIPE] = ACTIONS(4894), - [anon_sym_RPAREN] = ACTIONS(4892), - [anon_sym_PIPE_AMP] = ACTIONS(4892), - [anon_sym_AMP_AMP] = ACTIONS(4892), - [anon_sym_PIPE_PIPE] = ACTIONS(4892), - [sym__special_characters] = ACTIONS(4892), - [anon_sym_DQUOTE] = ACTIONS(4892), - [anon_sym_DOLLAR] = ACTIONS(4894), - [sym_raw_string] = ACTIONS(4892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4892), - [anon_sym_BQUOTE] = ACTIONS(4892), - [anon_sym_LT_LPAREN] = ACTIONS(4892), - [anon_sym_GT_LPAREN] = ACTIONS(4892), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4894), - [sym_word] = ACTIONS(4894), - }, - [2416] = { - [sym__concat] = ACTIONS(4896), - [sym_variable_name] = ACTIONS(4896), - [anon_sym_PIPE] = ACTIONS(4898), - [anon_sym_RPAREN] = ACTIONS(4896), - [anon_sym_PIPE_AMP] = ACTIONS(4896), - [anon_sym_AMP_AMP] = ACTIONS(4896), - [anon_sym_PIPE_PIPE] = ACTIONS(4896), - [sym__special_characters] = ACTIONS(4896), - [anon_sym_DQUOTE] = ACTIONS(4896), - [anon_sym_DOLLAR] = ACTIONS(4898), - [sym_raw_string] = ACTIONS(4896), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4896), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4896), - [anon_sym_BQUOTE] = ACTIONS(4896), - [anon_sym_LT_LPAREN] = ACTIONS(4896), - [anon_sym_GT_LPAREN] = ACTIONS(4896), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4898), - [sym_word] = ACTIONS(4898), - }, - [2417] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6053), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2418] = { - [sym__concat] = ACTIONS(4902), - [sym_variable_name] = ACTIONS(4902), - [anon_sym_PIPE] = ACTIONS(4904), - [anon_sym_RPAREN] = ACTIONS(4902), - [anon_sym_PIPE_AMP] = ACTIONS(4902), - [anon_sym_AMP_AMP] = ACTIONS(4902), - [anon_sym_PIPE_PIPE] = ACTIONS(4902), - [sym__special_characters] = ACTIONS(4902), - [anon_sym_DQUOTE] = ACTIONS(4902), - [anon_sym_DOLLAR] = ACTIONS(4904), - [sym_raw_string] = ACTIONS(4902), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4902), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4902), - [anon_sym_BQUOTE] = ACTIONS(4902), - [anon_sym_LT_LPAREN] = ACTIONS(4902), - [anon_sym_GT_LPAREN] = ACTIONS(4902), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4904), - [sym_word] = ACTIONS(4904), - }, - [2419] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6055), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2420] = { - [sym__concat] = ACTIONS(4908), - [sym_variable_name] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4910), - [anon_sym_RPAREN] = ACTIONS(4908), - [anon_sym_PIPE_AMP] = ACTIONS(4908), - [anon_sym_AMP_AMP] = ACTIONS(4908), - [anon_sym_PIPE_PIPE] = ACTIONS(4908), - [sym__special_characters] = ACTIONS(4908), - [anon_sym_DQUOTE] = ACTIONS(4908), - [anon_sym_DOLLAR] = ACTIONS(4910), - [sym_raw_string] = ACTIONS(4908), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4908), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4908), - [anon_sym_BQUOTE] = ACTIONS(4908), - [anon_sym_LT_LPAREN] = ACTIONS(4908), - [anon_sym_GT_LPAREN] = ACTIONS(4908), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4910), - [sym_word] = ACTIONS(4910), - }, - [2421] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6057), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2422] = { - [sym__concat] = ACTIONS(4914), - [sym_variable_name] = ACTIONS(4914), - [anon_sym_PIPE] = ACTIONS(4916), - [anon_sym_RPAREN] = ACTIONS(4914), - [anon_sym_PIPE_AMP] = ACTIONS(4914), - [anon_sym_AMP_AMP] = ACTIONS(4914), - [anon_sym_PIPE_PIPE] = ACTIONS(4914), - [sym__special_characters] = ACTIONS(4914), - [anon_sym_DQUOTE] = ACTIONS(4914), - [anon_sym_DOLLAR] = ACTIONS(4916), - [sym_raw_string] = ACTIONS(4914), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4914), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4914), - [anon_sym_BQUOTE] = ACTIONS(4914), - [anon_sym_LT_LPAREN] = ACTIONS(4914), - [anon_sym_GT_LPAREN] = ACTIONS(4914), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4916), - [sym_word] = ACTIONS(4916), - }, - [2423] = { - [sym__concat] = ACTIONS(4918), - [sym_variable_name] = ACTIONS(4918), - [anon_sym_PIPE] = ACTIONS(4920), - [anon_sym_RPAREN] = ACTIONS(4918), - [anon_sym_PIPE_AMP] = ACTIONS(4918), - [anon_sym_AMP_AMP] = ACTIONS(4918), - [anon_sym_PIPE_PIPE] = ACTIONS(4918), - [sym__special_characters] = ACTIONS(4918), - [anon_sym_DQUOTE] = ACTIONS(4918), - [anon_sym_DOLLAR] = ACTIONS(4920), - [sym_raw_string] = ACTIONS(4918), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4918), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4918), - [anon_sym_BQUOTE] = ACTIONS(4918), - [anon_sym_LT_LPAREN] = ACTIONS(4918), - [anon_sym_GT_LPAREN] = ACTIONS(4918), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4920), - [sym_word] = ACTIONS(4920), - }, - [2424] = { - [sym__concat] = ACTIONS(4884), - [anon_sym_PIPE] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4884), - [anon_sym_PIPE_AMP] = ACTIONS(4884), - [anon_sym_AMP_AMP] = ACTIONS(4884), - [anon_sym_PIPE_PIPE] = ACTIONS(4884), - [sym__special_characters] = ACTIONS(4884), - [anon_sym_DQUOTE] = ACTIONS(4884), - [anon_sym_DOLLAR] = ACTIONS(4886), - [sym_raw_string] = ACTIONS(4884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4884), - [anon_sym_BQUOTE] = ACTIONS(4884), - [anon_sym_LT_LPAREN] = ACTIONS(4884), - [anon_sym_GT_LPAREN] = ACTIONS(4884), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4886), - [sym_word] = ACTIONS(4886), - }, - [2425] = { - [sym__concat] = ACTIONS(4888), - [anon_sym_PIPE] = ACTIONS(4890), - [anon_sym_RPAREN] = ACTIONS(4888), - [anon_sym_PIPE_AMP] = ACTIONS(4888), - [anon_sym_AMP_AMP] = ACTIONS(4888), - [anon_sym_PIPE_PIPE] = ACTIONS(4888), - [sym__special_characters] = ACTIONS(4888), - [anon_sym_DQUOTE] = ACTIONS(4888), - [anon_sym_DOLLAR] = ACTIONS(4890), - [sym_raw_string] = ACTIONS(4888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4888), - [anon_sym_BQUOTE] = ACTIONS(4888), - [anon_sym_LT_LPAREN] = ACTIONS(4888), - [anon_sym_GT_LPAREN] = ACTIONS(4888), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4890), - [sym_word] = ACTIONS(4890), - }, - [2426] = { - [sym__concat] = ACTIONS(4892), - [anon_sym_PIPE] = ACTIONS(4894), - [anon_sym_RPAREN] = ACTIONS(4892), - [anon_sym_PIPE_AMP] = ACTIONS(4892), - [anon_sym_AMP_AMP] = ACTIONS(4892), - [anon_sym_PIPE_PIPE] = ACTIONS(4892), - [sym__special_characters] = ACTIONS(4892), - [anon_sym_DQUOTE] = ACTIONS(4892), - [anon_sym_DOLLAR] = ACTIONS(4894), - [sym_raw_string] = ACTIONS(4892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4892), - [anon_sym_BQUOTE] = ACTIONS(4892), - [anon_sym_LT_LPAREN] = ACTIONS(4892), - [anon_sym_GT_LPAREN] = ACTIONS(4892), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4894), - [sym_word] = ACTIONS(4894), - }, - [2427] = { - [sym__concat] = ACTIONS(4896), - [anon_sym_PIPE] = ACTIONS(4898), - [anon_sym_RPAREN] = ACTIONS(4896), - [anon_sym_PIPE_AMP] = ACTIONS(4896), - [anon_sym_AMP_AMP] = ACTIONS(4896), - [anon_sym_PIPE_PIPE] = ACTIONS(4896), - [sym__special_characters] = ACTIONS(4896), - [anon_sym_DQUOTE] = ACTIONS(4896), - [anon_sym_DOLLAR] = ACTIONS(4898), - [sym_raw_string] = ACTIONS(4896), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4896), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4896), - [anon_sym_BQUOTE] = ACTIONS(4896), - [anon_sym_LT_LPAREN] = ACTIONS(4896), - [anon_sym_GT_LPAREN] = ACTIONS(4896), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4898), - [sym_word] = ACTIONS(4898), - }, - [2428] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6059), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2429] = { - [sym__concat] = ACTIONS(4902), - [anon_sym_PIPE] = ACTIONS(4904), - [anon_sym_RPAREN] = ACTIONS(4902), - [anon_sym_PIPE_AMP] = ACTIONS(4902), - [anon_sym_AMP_AMP] = ACTIONS(4902), - [anon_sym_PIPE_PIPE] = ACTIONS(4902), - [sym__special_characters] = ACTIONS(4902), - [anon_sym_DQUOTE] = ACTIONS(4902), - [anon_sym_DOLLAR] = ACTIONS(4904), - [sym_raw_string] = ACTIONS(4902), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4902), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4902), - [anon_sym_BQUOTE] = ACTIONS(4902), - [anon_sym_LT_LPAREN] = ACTIONS(4902), - [anon_sym_GT_LPAREN] = ACTIONS(4902), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4904), - [sym_word] = ACTIONS(4904), - }, - [2430] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6061), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2431] = { - [sym__concat] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4910), - [anon_sym_RPAREN] = ACTIONS(4908), - [anon_sym_PIPE_AMP] = ACTIONS(4908), - [anon_sym_AMP_AMP] = ACTIONS(4908), - [anon_sym_PIPE_PIPE] = ACTIONS(4908), - [sym__special_characters] = ACTIONS(4908), - [anon_sym_DQUOTE] = ACTIONS(4908), - [anon_sym_DOLLAR] = ACTIONS(4910), - [sym_raw_string] = ACTIONS(4908), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4908), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4908), - [anon_sym_BQUOTE] = ACTIONS(4908), - [anon_sym_LT_LPAREN] = ACTIONS(4908), - [anon_sym_GT_LPAREN] = ACTIONS(4908), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4910), - [sym_word] = ACTIONS(4910), - }, - [2432] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6063), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2433] = { - [sym__concat] = ACTIONS(4914), - [anon_sym_PIPE] = ACTIONS(4916), - [anon_sym_RPAREN] = ACTIONS(4914), - [anon_sym_PIPE_AMP] = ACTIONS(4914), - [anon_sym_AMP_AMP] = ACTIONS(4914), - [anon_sym_PIPE_PIPE] = ACTIONS(4914), - [sym__special_characters] = ACTIONS(4914), - [anon_sym_DQUOTE] = ACTIONS(4914), - [anon_sym_DOLLAR] = ACTIONS(4916), - [sym_raw_string] = ACTIONS(4914), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4914), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4914), - [anon_sym_BQUOTE] = ACTIONS(4914), - [anon_sym_LT_LPAREN] = ACTIONS(4914), - [anon_sym_GT_LPAREN] = ACTIONS(4914), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4916), - [sym_word] = ACTIONS(4916), - }, - [2434] = { - [sym__concat] = ACTIONS(4918), - [anon_sym_PIPE] = ACTIONS(4920), - [anon_sym_RPAREN] = ACTIONS(4918), - [anon_sym_PIPE_AMP] = ACTIONS(4918), - [anon_sym_AMP_AMP] = ACTIONS(4918), - [anon_sym_PIPE_PIPE] = ACTIONS(4918), - [sym__special_characters] = ACTIONS(4918), - [anon_sym_DQUOTE] = ACTIONS(4918), - [anon_sym_DOLLAR] = ACTIONS(4920), - [sym_raw_string] = ACTIONS(4918), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4918), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4918), - [anon_sym_BQUOTE] = ACTIONS(4918), - [anon_sym_LT_LPAREN] = ACTIONS(4918), - [anon_sym_GT_LPAREN] = ACTIONS(4918), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4920), - [sym_word] = ACTIONS(4920), - }, - [2435] = { - [sym__simple_heredoc_body] = ACTIONS(5540), - [sym__heredoc_body_beginning] = ACTIONS(5540), - [sym_file_descriptor] = ACTIONS(5540), - [sym__concat] = ACTIONS(5540), - [anon_sym_PIPE] = ACTIONS(5542), - [anon_sym_RPAREN] = ACTIONS(5540), - [anon_sym_PIPE_AMP] = ACTIONS(5540), - [anon_sym_AMP_AMP] = ACTIONS(5540), - [anon_sym_PIPE_PIPE] = ACTIONS(5540), - [anon_sym_EQ_TILDE] = ACTIONS(5542), - [anon_sym_EQ_EQ] = ACTIONS(5542), - [anon_sym_LT] = ACTIONS(5542), - [anon_sym_GT] = ACTIONS(5542), - [anon_sym_GT_GT] = ACTIONS(5540), - [anon_sym_AMP_GT] = ACTIONS(5542), - [anon_sym_AMP_GT_GT] = ACTIONS(5540), - [anon_sym_LT_AMP] = ACTIONS(5540), - [anon_sym_GT_AMP] = ACTIONS(5540), - [anon_sym_LT_LT] = ACTIONS(5542), - [anon_sym_LT_LT_DASH] = ACTIONS(5540), - [anon_sym_LT_LT_LT] = ACTIONS(5540), - [sym__special_characters] = ACTIONS(5540), - [anon_sym_DQUOTE] = ACTIONS(5540), - [anon_sym_DOLLAR] = ACTIONS(5542), - [sym_raw_string] = ACTIONS(5540), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5540), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5540), - [anon_sym_BQUOTE] = ACTIONS(5540), - [anon_sym_LT_LPAREN] = ACTIONS(5540), - [anon_sym_GT_LPAREN] = ACTIONS(5540), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5542), - }, - [2436] = { - [sym__simple_heredoc_body] = ACTIONS(5544), - [sym__heredoc_body_beginning] = ACTIONS(5544), - [sym_file_descriptor] = ACTIONS(5544), - [sym__concat] = ACTIONS(5544), - [anon_sym_PIPE] = ACTIONS(5546), - [anon_sym_RPAREN] = ACTIONS(5544), - [anon_sym_PIPE_AMP] = ACTIONS(5544), - [anon_sym_AMP_AMP] = ACTIONS(5544), - [anon_sym_PIPE_PIPE] = ACTIONS(5544), - [anon_sym_EQ_TILDE] = ACTIONS(5546), - [anon_sym_EQ_EQ] = ACTIONS(5546), - [anon_sym_LT] = ACTIONS(5546), - [anon_sym_GT] = ACTIONS(5546), - [anon_sym_GT_GT] = ACTIONS(5544), - [anon_sym_AMP_GT] = ACTIONS(5546), - [anon_sym_AMP_GT_GT] = ACTIONS(5544), - [anon_sym_LT_AMP] = ACTIONS(5544), - [anon_sym_GT_AMP] = ACTIONS(5544), - [anon_sym_LT_LT] = ACTIONS(5546), - [anon_sym_LT_LT_DASH] = ACTIONS(5544), - [anon_sym_LT_LT_LT] = ACTIONS(5544), - [sym__special_characters] = ACTIONS(5544), - [anon_sym_DQUOTE] = ACTIONS(5544), - [anon_sym_DOLLAR] = ACTIONS(5546), - [sym_raw_string] = ACTIONS(5544), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5544), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5544), - [anon_sym_BQUOTE] = ACTIONS(5544), - [anon_sym_LT_LPAREN] = ACTIONS(5544), - [anon_sym_GT_LPAREN] = ACTIONS(5544), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5546), - }, - [2437] = { - [sym__simple_heredoc_body] = ACTIONS(5548), - [sym__heredoc_body_beginning] = ACTIONS(5548), - [sym_file_descriptor] = ACTIONS(5548), - [sym__concat] = ACTIONS(5548), - [anon_sym_PIPE] = ACTIONS(5550), - [anon_sym_RPAREN] = ACTIONS(5548), - [anon_sym_PIPE_AMP] = ACTIONS(5548), - [anon_sym_AMP_AMP] = ACTIONS(5548), - [anon_sym_PIPE_PIPE] = ACTIONS(5548), - [anon_sym_EQ_TILDE] = ACTIONS(5550), - [anon_sym_EQ_EQ] = ACTIONS(5550), - [anon_sym_LT] = ACTIONS(5550), - [anon_sym_GT] = ACTIONS(5550), - [anon_sym_GT_GT] = ACTIONS(5548), - [anon_sym_AMP_GT] = ACTIONS(5550), - [anon_sym_AMP_GT_GT] = ACTIONS(5548), - [anon_sym_LT_AMP] = ACTIONS(5548), - [anon_sym_GT_AMP] = ACTIONS(5548), - [anon_sym_LT_LT] = ACTIONS(5550), - [anon_sym_LT_LT_DASH] = ACTIONS(5548), - [anon_sym_LT_LT_LT] = ACTIONS(5548), - [sym__special_characters] = ACTIONS(5548), - [anon_sym_DQUOTE] = ACTIONS(5548), - [anon_sym_DOLLAR] = ACTIONS(5550), - [sym_raw_string] = ACTIONS(5548), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5548), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5548), - [anon_sym_BQUOTE] = ACTIONS(5548), - [anon_sym_LT_LPAREN] = ACTIONS(5548), - [anon_sym_GT_LPAREN] = ACTIONS(5548), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5550), - }, - [2438] = { - [aux_sym_concatenation_repeat1] = STATE(2438), - [sym__concat] = ACTIONS(4163), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1654), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_PIPE_PIPE] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(53), - }, - [2439] = { - [aux_sym_concatenation_repeat1] = STATE(2439), - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(6010), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1654), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_PIPE_PIPE] = ACTIONS(1654), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1654), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1654), - [anon_sym_LT_AMP] = ACTIONS(1654), - [anon_sym_GT_AMP] = ACTIONS(1654), - [anon_sym_LT_LT] = ACTIONS(1656), - [anon_sym_LT_LT_DASH] = ACTIONS(1654), - [anon_sym_LT_LT_LT] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(53), - }, - [2440] = { - [sym__heredoc_body_middle] = ACTIONS(4884), - [sym__heredoc_body_end] = ACTIONS(4884), - [anon_sym_DOLLAR] = ACTIONS(4886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4884), - [sym_comment] = ACTIONS(53), - }, - [2441] = { - [sym__heredoc_body_middle] = ACTIONS(4888), - [sym__heredoc_body_end] = ACTIONS(4888), - [anon_sym_DOLLAR] = ACTIONS(4890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4888), - [sym_comment] = ACTIONS(53), - }, - [2442] = { - [sym__heredoc_body_middle] = ACTIONS(4892), - [sym__heredoc_body_end] = ACTIONS(4892), - [anon_sym_DOLLAR] = ACTIONS(4894), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4892), - [sym_comment] = ACTIONS(53), - }, - [2443] = { - [sym__heredoc_body_middle] = ACTIONS(4896), - [sym__heredoc_body_end] = ACTIONS(4896), - [anon_sym_DOLLAR] = ACTIONS(4898), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4896), - [sym_comment] = ACTIONS(53), - }, - [2444] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6065), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2445] = { - [sym__heredoc_body_middle] = ACTIONS(4902), - [sym__heredoc_body_end] = ACTIONS(4902), - [anon_sym_DOLLAR] = ACTIONS(4904), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4902), - [sym_comment] = ACTIONS(53), - }, - [2446] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6067), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2447] = { - [sym__heredoc_body_middle] = ACTIONS(4908), - [sym__heredoc_body_end] = ACTIONS(4908), - [anon_sym_DOLLAR] = ACTIONS(4910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4908), - [sym_comment] = ACTIONS(53), - }, - [2448] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6069), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2449] = { - [sym__heredoc_body_middle] = ACTIONS(4914), - [sym__heredoc_body_end] = ACTIONS(4914), - [anon_sym_DOLLAR] = ACTIONS(4916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4914), - [sym_comment] = ACTIONS(53), - }, - [2450] = { - [sym__heredoc_body_middle] = ACTIONS(4918), - [sym__heredoc_body_end] = ACTIONS(4918), - [anon_sym_DOLLAR] = ACTIONS(4920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4918), - [sym_comment] = ACTIONS(53), - }, - [2451] = { - [sym__concat] = ACTIONS(4884), - [anon_sym_RPAREN] = ACTIONS(4884), - [sym__special_characters] = ACTIONS(4884), - [anon_sym_DQUOTE] = ACTIONS(4884), - [anon_sym_DOLLAR] = ACTIONS(4886), - [sym_raw_string] = ACTIONS(4884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4884), - [anon_sym_BQUOTE] = ACTIONS(4884), - [anon_sym_LT_LPAREN] = ACTIONS(4884), - [anon_sym_GT_LPAREN] = ACTIONS(4884), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4884), - }, - [2452] = { - [sym__concat] = ACTIONS(4888), - [anon_sym_RPAREN] = ACTIONS(4888), - [sym__special_characters] = ACTIONS(4888), - [anon_sym_DQUOTE] = ACTIONS(4888), - [anon_sym_DOLLAR] = ACTIONS(4890), - [sym_raw_string] = ACTIONS(4888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4888), - [anon_sym_BQUOTE] = ACTIONS(4888), - [anon_sym_LT_LPAREN] = ACTIONS(4888), - [anon_sym_GT_LPAREN] = ACTIONS(4888), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4888), - }, - [2453] = { - [sym__concat] = ACTIONS(4892), - [anon_sym_RPAREN] = ACTIONS(4892), - [sym__special_characters] = ACTIONS(4892), - [anon_sym_DQUOTE] = ACTIONS(4892), - [anon_sym_DOLLAR] = ACTIONS(4894), - [sym_raw_string] = ACTIONS(4892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4892), - [anon_sym_BQUOTE] = ACTIONS(4892), - [anon_sym_LT_LPAREN] = ACTIONS(4892), - [anon_sym_GT_LPAREN] = ACTIONS(4892), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4892), - }, - [2454] = { - [sym__concat] = ACTIONS(4896), - [anon_sym_RPAREN] = ACTIONS(4896), - [sym__special_characters] = ACTIONS(4896), - [anon_sym_DQUOTE] = ACTIONS(4896), - [anon_sym_DOLLAR] = ACTIONS(4898), - [sym_raw_string] = ACTIONS(4896), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4896), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4896), - [anon_sym_BQUOTE] = ACTIONS(4896), - [anon_sym_LT_LPAREN] = ACTIONS(4896), - [anon_sym_GT_LPAREN] = ACTIONS(4896), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4896), - }, - [2455] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6071), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2456] = { - [sym__concat] = ACTIONS(4902), - [anon_sym_RPAREN] = ACTIONS(4902), - [sym__special_characters] = ACTIONS(4902), - [anon_sym_DQUOTE] = ACTIONS(4902), - [anon_sym_DOLLAR] = ACTIONS(4904), - [sym_raw_string] = ACTIONS(4902), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4902), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4902), - [anon_sym_BQUOTE] = ACTIONS(4902), - [anon_sym_LT_LPAREN] = ACTIONS(4902), - [anon_sym_GT_LPAREN] = ACTIONS(4902), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4902), - }, - [2457] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6073), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2458] = { - [sym__concat] = ACTIONS(4908), - [anon_sym_RPAREN] = ACTIONS(4908), - [sym__special_characters] = ACTIONS(4908), - [anon_sym_DQUOTE] = ACTIONS(4908), - [anon_sym_DOLLAR] = ACTIONS(4910), - [sym_raw_string] = ACTIONS(4908), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4908), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4908), - [anon_sym_BQUOTE] = ACTIONS(4908), - [anon_sym_LT_LPAREN] = ACTIONS(4908), - [anon_sym_GT_LPAREN] = ACTIONS(4908), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4908), - }, - [2459] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6075), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2460] = { - [sym__concat] = ACTIONS(4914), - [anon_sym_RPAREN] = ACTIONS(4914), - [sym__special_characters] = ACTIONS(4914), - [anon_sym_DQUOTE] = ACTIONS(4914), - [anon_sym_DOLLAR] = ACTIONS(4916), - [sym_raw_string] = ACTIONS(4914), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4914), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4914), - [anon_sym_BQUOTE] = ACTIONS(4914), - [anon_sym_LT_LPAREN] = ACTIONS(4914), - [anon_sym_GT_LPAREN] = ACTIONS(4914), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4914), - }, - [2461] = { - [sym__concat] = ACTIONS(4918), - [anon_sym_RPAREN] = ACTIONS(4918), - [sym__special_characters] = ACTIONS(4918), - [anon_sym_DQUOTE] = ACTIONS(4918), - [anon_sym_DOLLAR] = ACTIONS(4920), - [sym_raw_string] = ACTIONS(4918), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4918), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4918), - [anon_sym_BQUOTE] = ACTIONS(4918), - [anon_sym_LT_LPAREN] = ACTIONS(4918), - [anon_sym_GT_LPAREN] = ACTIONS(4918), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4918), - }, - [2462] = { - [sym_file_descriptor] = ACTIONS(5540), - [sym__concat] = ACTIONS(5540), - [sym_variable_name] = ACTIONS(5540), - [anon_sym_PIPE] = ACTIONS(5542), - [anon_sym_RPAREN] = ACTIONS(5542), - [anon_sym_SEMI_SEMI] = ACTIONS(5542), - [anon_sym_PIPE_AMP] = ACTIONS(5542), - [anon_sym_AMP_AMP] = ACTIONS(5542), - [anon_sym_PIPE_PIPE] = ACTIONS(5542), - [anon_sym_LT] = ACTIONS(5542), - [anon_sym_GT] = ACTIONS(5542), - [anon_sym_GT_GT] = ACTIONS(5542), - [anon_sym_AMP_GT] = ACTIONS(5542), - [anon_sym_AMP_GT_GT] = ACTIONS(5542), - [anon_sym_LT_AMP] = ACTIONS(5542), - [anon_sym_GT_AMP] = ACTIONS(5542), - [sym__special_characters] = ACTIONS(5542), - [anon_sym_DQUOTE] = ACTIONS(5542), - [anon_sym_DOLLAR] = ACTIONS(5542), - [sym_raw_string] = ACTIONS(5542), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5542), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5542), - [anon_sym_BQUOTE] = ACTIONS(5542), - [anon_sym_LT_LPAREN] = ACTIONS(5542), - [anon_sym_GT_LPAREN] = ACTIONS(5542), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5542), - [anon_sym_LF] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(5542), - }, - [2463] = { - [sym_file_descriptor] = ACTIONS(5544), - [sym__concat] = ACTIONS(5544), - [sym_variable_name] = ACTIONS(5544), - [anon_sym_PIPE] = ACTIONS(5546), - [anon_sym_RPAREN] = ACTIONS(5546), - [anon_sym_SEMI_SEMI] = ACTIONS(5546), - [anon_sym_PIPE_AMP] = ACTIONS(5546), - [anon_sym_AMP_AMP] = ACTIONS(5546), - [anon_sym_PIPE_PIPE] = ACTIONS(5546), - [anon_sym_LT] = ACTIONS(5546), - [anon_sym_GT] = ACTIONS(5546), - [anon_sym_GT_GT] = ACTIONS(5546), - [anon_sym_AMP_GT] = ACTIONS(5546), - [anon_sym_AMP_GT_GT] = ACTIONS(5546), - [anon_sym_LT_AMP] = ACTIONS(5546), - [anon_sym_GT_AMP] = ACTIONS(5546), - [sym__special_characters] = ACTIONS(5546), - [anon_sym_DQUOTE] = ACTIONS(5546), - [anon_sym_DOLLAR] = ACTIONS(5546), - [sym_raw_string] = ACTIONS(5546), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5546), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5546), - [anon_sym_BQUOTE] = ACTIONS(5546), - [anon_sym_LT_LPAREN] = ACTIONS(5546), - [anon_sym_GT_LPAREN] = ACTIONS(5546), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5546), - [anon_sym_SEMI] = ACTIONS(5546), - [anon_sym_LF] = ACTIONS(5544), - [anon_sym_AMP] = ACTIONS(5546), - }, - [2464] = { - [sym_file_descriptor] = ACTIONS(5548), - [sym__concat] = ACTIONS(5548), - [sym_variable_name] = ACTIONS(5548), - [anon_sym_PIPE] = ACTIONS(5550), - [anon_sym_RPAREN] = ACTIONS(5550), - [anon_sym_SEMI_SEMI] = ACTIONS(5550), - [anon_sym_PIPE_AMP] = ACTIONS(5550), - [anon_sym_AMP_AMP] = ACTIONS(5550), - [anon_sym_PIPE_PIPE] = ACTIONS(5550), - [anon_sym_LT] = ACTIONS(5550), - [anon_sym_GT] = ACTIONS(5550), - [anon_sym_GT_GT] = ACTIONS(5550), - [anon_sym_AMP_GT] = ACTIONS(5550), - [anon_sym_AMP_GT_GT] = ACTIONS(5550), - [anon_sym_LT_AMP] = ACTIONS(5550), - [anon_sym_GT_AMP] = ACTIONS(5550), - [sym__special_characters] = ACTIONS(5550), - [anon_sym_DQUOTE] = ACTIONS(5550), - [anon_sym_DOLLAR] = ACTIONS(5550), - [sym_raw_string] = ACTIONS(5550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5550), - [anon_sym_BQUOTE] = ACTIONS(5550), - [anon_sym_LT_LPAREN] = ACTIONS(5550), - [anon_sym_GT_LPAREN] = ACTIONS(5550), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5550), - [anon_sym_SEMI] = ACTIONS(5550), - [anon_sym_LF] = ACTIONS(5548), - [anon_sym_AMP] = ACTIONS(5550), - }, - [2465] = { - [sym__concat] = ACTIONS(4884), - [anon_sym_SEMI_SEMI] = ACTIONS(4886), - [sym__special_characters] = ACTIONS(4886), - [anon_sym_DQUOTE] = ACTIONS(4886), - [anon_sym_DOLLAR] = ACTIONS(4886), - [sym_raw_string] = ACTIONS(4886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4886), - [anon_sym_BQUOTE] = ACTIONS(4886), - [anon_sym_LT_LPAREN] = ACTIONS(4886), - [anon_sym_GT_LPAREN] = ACTIONS(4886), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4886), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym_LF] = ACTIONS(4884), - [anon_sym_AMP] = ACTIONS(4886), - }, - [2466] = { - [sym__concat] = ACTIONS(4888), - [anon_sym_SEMI_SEMI] = ACTIONS(4890), - [sym__special_characters] = ACTIONS(4890), - [anon_sym_DQUOTE] = ACTIONS(4890), - [anon_sym_DOLLAR] = ACTIONS(4890), - [sym_raw_string] = ACTIONS(4890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4890), - [anon_sym_BQUOTE] = ACTIONS(4890), - [anon_sym_LT_LPAREN] = ACTIONS(4890), - [anon_sym_GT_LPAREN] = ACTIONS(4890), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4890), - [anon_sym_SEMI] = ACTIONS(4890), - [anon_sym_LF] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4890), - }, - [2467] = { - [sym__concat] = ACTIONS(4892), - [anon_sym_SEMI_SEMI] = ACTIONS(4894), - [sym__special_characters] = ACTIONS(4894), - [anon_sym_DQUOTE] = ACTIONS(4894), - [anon_sym_DOLLAR] = ACTIONS(4894), - [sym_raw_string] = ACTIONS(4894), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4894), - [anon_sym_BQUOTE] = ACTIONS(4894), - [anon_sym_LT_LPAREN] = ACTIONS(4894), - [anon_sym_GT_LPAREN] = ACTIONS(4894), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4894), - [anon_sym_SEMI] = ACTIONS(4894), - [anon_sym_LF] = ACTIONS(4892), - [anon_sym_AMP] = ACTIONS(4894), - }, - [2468] = { - [sym__concat] = ACTIONS(4896), - [anon_sym_SEMI_SEMI] = ACTIONS(4898), - [sym__special_characters] = ACTIONS(4898), - [anon_sym_DQUOTE] = ACTIONS(4898), - [anon_sym_DOLLAR] = ACTIONS(4898), - [sym_raw_string] = ACTIONS(4898), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4898), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4898), - [anon_sym_BQUOTE] = ACTIONS(4898), - [anon_sym_LT_LPAREN] = ACTIONS(4898), - [anon_sym_GT_LPAREN] = ACTIONS(4898), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4898), - [anon_sym_SEMI] = ACTIONS(4898), - [anon_sym_LF] = ACTIONS(4896), - [anon_sym_AMP] = ACTIONS(4898), - }, - [2469] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6077), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2470] = { - [sym__concat] = ACTIONS(4902), - [anon_sym_SEMI_SEMI] = ACTIONS(4904), - [sym__special_characters] = ACTIONS(4904), - [anon_sym_DQUOTE] = ACTIONS(4904), - [anon_sym_DOLLAR] = ACTIONS(4904), - [sym_raw_string] = ACTIONS(4904), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4904), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4904), - [anon_sym_BQUOTE] = ACTIONS(4904), - [anon_sym_LT_LPAREN] = ACTIONS(4904), - [anon_sym_GT_LPAREN] = ACTIONS(4904), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4904), - [anon_sym_SEMI] = ACTIONS(4904), - [anon_sym_LF] = ACTIONS(4902), - [anon_sym_AMP] = ACTIONS(4904), - }, - [2471] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6079), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2472] = { - [sym__concat] = ACTIONS(4908), - [anon_sym_SEMI_SEMI] = ACTIONS(4910), - [sym__special_characters] = ACTIONS(4910), - [anon_sym_DQUOTE] = ACTIONS(4910), - [anon_sym_DOLLAR] = ACTIONS(4910), - [sym_raw_string] = ACTIONS(4910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4910), - [anon_sym_BQUOTE] = ACTIONS(4910), - [anon_sym_LT_LPAREN] = ACTIONS(4910), - [anon_sym_GT_LPAREN] = ACTIONS(4910), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4910), - [anon_sym_SEMI] = ACTIONS(4910), - [anon_sym_LF] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4910), - }, - [2473] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6081), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2474] = { - [sym__concat] = ACTIONS(4914), - [anon_sym_SEMI_SEMI] = ACTIONS(4916), - [sym__special_characters] = ACTIONS(4916), - [anon_sym_DQUOTE] = ACTIONS(4916), - [anon_sym_DOLLAR] = ACTIONS(4916), - [sym_raw_string] = ACTIONS(4916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4916), - [anon_sym_BQUOTE] = ACTIONS(4916), - [anon_sym_LT_LPAREN] = ACTIONS(4916), - [anon_sym_GT_LPAREN] = ACTIONS(4916), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4916), - [anon_sym_SEMI] = ACTIONS(4916), - [anon_sym_LF] = ACTIONS(4914), - [anon_sym_AMP] = ACTIONS(4916), - }, - [2475] = { - [sym__concat] = ACTIONS(4918), - [anon_sym_SEMI_SEMI] = ACTIONS(4920), - [sym__special_characters] = ACTIONS(4920), - [anon_sym_DQUOTE] = ACTIONS(4920), - [anon_sym_DOLLAR] = ACTIONS(4920), - [sym_raw_string] = ACTIONS(4920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4920), - [anon_sym_BQUOTE] = ACTIONS(4920), - [anon_sym_LT_LPAREN] = ACTIONS(4920), - [anon_sym_GT_LPAREN] = ACTIONS(4920), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4920), - [anon_sym_SEMI] = ACTIONS(4920), - [anon_sym_LF] = ACTIONS(4918), - [anon_sym_AMP] = ACTIONS(4920), - }, - [2476] = { - [sym_file_descriptor] = ACTIONS(1107), - [sym_variable_name] = ACTIONS(1107), - [anon_sym_esac] = ACTIONS(1109), - [anon_sym_PIPE] = ACTIONS(1109), - [anon_sym_SEMI_SEMI] = ACTIONS(1109), - [anon_sym_PIPE_AMP] = ACTIONS(1109), - [anon_sym_AMP_AMP] = ACTIONS(1109), - [anon_sym_PIPE_PIPE] = ACTIONS(1109), - [anon_sym_LT] = ACTIONS(1109), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_GT_GT] = ACTIONS(1109), - [anon_sym_AMP_GT] = ACTIONS(1109), - [anon_sym_AMP_GT_GT] = ACTIONS(1109), - [anon_sym_LT_AMP] = ACTIONS(1109), - [anon_sym_GT_AMP] = ACTIONS(1109), - [sym__special_characters] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [sym_raw_string] = ACTIONS(1109), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1109), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1109), - [anon_sym_BQUOTE] = ACTIONS(1109), - [anon_sym_LT_LPAREN] = ACTIONS(1109), - [anon_sym_GT_LPAREN] = ACTIONS(1109), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1109), - }, - [2477] = { - [sym_concatenation] = STATE(2656), - [sym_string] = STATE(563), - [sym_simple_expansion] = STATE(563), - [sym_string_expansion] = STATE(563), - [sym_expansion] = STATE(563), - [sym_command_substitution] = STATE(563), - [sym_process_substitution] = STATE(563), - [aux_sym_for_statement_repeat1] = STATE(2656), - [anon_sym_RPAREN] = ACTIONS(6083), - [sym__special_characters] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1115), - [anon_sym_DOLLAR] = ACTIONS(1117), - [sym_raw_string] = ACTIONS(1119), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), - [anon_sym_BQUOTE] = ACTIONS(1125), - [anon_sym_LT_LPAREN] = ACTIONS(1127), - [anon_sym_GT_LPAREN] = ACTIONS(1127), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1119), - }, - [2478] = { - [aux_sym_concatenation_repeat1] = STATE(2658), + [aux_sym_concatenation_repeat1] = STATE(2496), [sym_file_descriptor] = ACTIONS(1129), - [sym__concat] = ACTIONS(6085), + [sym__concat] = ACTIONS(1131), [sym_variable_name] = ACTIONS(1129), [anon_sym_esac] = ACTIONS(1133), [anon_sym_PIPE] = ACTIONS(1133), @@ -66214,38 +60395,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(1133), }, - [2479] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(2660), - [anon_sym_DQUOTE] = ACTIONS(6087), - [anon_sym_DOLLAR] = ACTIONS(229), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [2480] = { - [sym_string] = STATE(2662), - [anon_sym_DQUOTE] = ACTIONS(5758), - [anon_sym_DOLLAR] = ACTIONS(6089), - [sym_raw_string] = ACTIONS(6091), - [anon_sym_POUND] = ACTIONS(6089), - [anon_sym_DASH] = ACTIONS(6089), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6093), - [anon_sym_STAR] = ACTIONS(6089), - [anon_sym_AT] = ACTIONS(6089), - [anon_sym_QMARK] = ACTIONS(6089), - [anon_sym_0] = ACTIONS(6095), - [anon_sym__] = ACTIONS(6095), - }, - [2481] = { - [aux_sym_concatenation_repeat1] = STATE(2658), + [2357] = { + [aux_sym_concatenation_repeat1] = STATE(2496), [sym_file_descriptor] = ACTIONS(1107), - [sym__concat] = ACTIONS(6085), + [sym__concat] = ACTIONS(1131), [sym_variable_name] = ACTIONS(1107), [anon_sym_esac] = ACTIONS(1109), [anon_sym_PIPE] = ACTIONS(1109), @@ -66275,336 +60428,133 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1107), [anon_sym_AMP] = ACTIONS(1109), }, - [2482] = { - [sym_subscript] = STATE(2668), - [sym_variable_name] = ACTIONS(6097), - [anon_sym_DOLLAR] = ACTIONS(6099), - [anon_sym_POUND] = ACTIONS(6101), - [anon_sym_DASH] = ACTIONS(6099), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6103), - [anon_sym_STAR] = ACTIONS(6099), - [anon_sym_AT] = ACTIONS(6099), - [anon_sym_QMARK] = ACTIONS(6099), - [anon_sym_0] = ACTIONS(6105), - [anon_sym__] = ACTIONS(6105), - }, - [2483] = { - [sym_for_statement] = STATE(2669), - [sym_while_statement] = STATE(2669), - [sym_if_statement] = STATE(2669), - [sym_case_statement] = STATE(2669), - [sym_function_definition] = STATE(2669), - [sym_subshell] = STATE(2669), - [sym_pipeline] = STATE(2669), - [sym_list] = STATE(2669), - [sym_negated_command] = STATE(2669), - [sym_test_command] = STATE(2669), - [sym_declaration_command] = STATE(2669), - [sym_unset_command] = STATE(2669), - [sym_command] = STATE(2669), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2670), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [2484] = { - [sym_for_statement] = STATE(2671), - [sym_while_statement] = STATE(2671), - [sym_if_statement] = STATE(2671), - [sym_case_statement] = STATE(2671), - [sym_function_definition] = STATE(2671), - [sym_subshell] = STATE(2671), - [sym_pipeline] = STATE(2671), - [sym_list] = STATE(2671), - [sym_negated_command] = STATE(2671), - [sym_test_command] = STATE(2671), - [sym_declaration_command] = STATE(2671), - [sym_unset_command] = STATE(2671), - [sym_command] = STATE(2671), - [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(2672), - [sym_subscript] = STATE(183), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(303), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(305), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_typeset] = ACTIONS(315), - [anon_sym_export] = ACTIONS(315), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_unset] = ACTIONS(317), - [anon_sym_unsetenv] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), - }, - [2485] = { - [sym_for_statement] = STATE(2673), - [sym_while_statement] = STATE(2673), - [sym_if_statement] = STATE(2673), - [sym_case_statement] = STATE(2673), - [sym_function_definition] = STATE(2673), - [sym_subshell] = STATE(2673), - [sym_pipeline] = STATE(2673), - [sym_list] = STATE(2673), - [sym_negated_command] = STATE(2673), - [sym_test_command] = STATE(2673), - [sym_declaration_command] = STATE(2673), - [sym_unset_command] = STATE(2673), - [sym_command] = STATE(2673), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2674), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [2486] = { - [sym_file_redirect] = STATE(2675), - [sym_heredoc_redirect] = STATE(2675), - [sym_heredoc_body] = STATE(602), - [sym_herestring_redirect] = STATE(2675), - [aux_sym_while_statement_repeat1] = STATE(2675), + [2358] = { + [sym_file_redirect] = STATE(2497), + [sym_heredoc_redirect] = STATE(2497), + [sym_heredoc_body] = STATE(594), + [sym_herestring_redirect] = STATE(2497), + [aux_sym_while_statement_repeat1] = STATE(2497), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(5332), - [anon_sym_esac] = ACTIONS(1175), - [anon_sym_PIPE] = ACTIONS(1175), - [anon_sym_SEMI_SEMI] = ACTIONS(1175), - [anon_sym_PIPE_AMP] = ACTIONS(1175), - [anon_sym_AMP_AMP] = ACTIONS(1175), - [anon_sym_PIPE_PIPE] = ACTIONS(1175), - [anon_sym_LT] = ACTIONS(5336), - [anon_sym_GT] = ACTIONS(5336), - [anon_sym_GT_GT] = ACTIONS(5336), - [anon_sym_AMP_GT] = ACTIONS(5336), - [anon_sym_AMP_GT_GT] = ACTIONS(5336), - [anon_sym_LT_AMP] = ACTIONS(5336), - [anon_sym_GT_AMP] = ACTIONS(5336), + [sym_file_descriptor] = ACTIONS(5127), + [anon_sym_esac] = ACTIONS(1163), + [anon_sym_PIPE] = ACTIONS(1163), + [anon_sym_SEMI_SEMI] = ACTIONS(1163), + [anon_sym_PIPE_AMP] = ACTIONS(1163), + [anon_sym_AMP_AMP] = ACTIONS(1163), + [anon_sym_PIPE_PIPE] = ACTIONS(1163), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_GT_GT] = ACTIONS(5131), + [anon_sym_AMP_GT] = ACTIONS(5131), + [anon_sym_AMP_GT_GT] = ACTIONS(5131), + [anon_sym_LT_AMP] = ACTIONS(5131), + [anon_sym_GT_AMP] = ACTIONS(5131), [anon_sym_LT_LT] = ACTIONS(349), [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(5338), + [anon_sym_LT_LT_LT] = ACTIONS(5133), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_LF] = ACTIONS(1177), - [anon_sym_AMP] = ACTIONS(1175), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym_LF] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1163), }, - [2487] = { - [anon_sym_RPAREN] = ACTIONS(6107), + [2359] = { + [anon_sym_RPAREN] = ACTIONS(5762), [sym_comment] = ACTIONS(53), }, - [2488] = { - [sym_file_redirect] = STATE(643), - [sym_file_descriptor] = ACTIONS(6109), - [anon_sym_esac] = ACTIONS(1245), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_SEMI_SEMI] = ACTIONS(1245), - [anon_sym_PIPE_AMP] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_GT] = ACTIONS(6111), - [anon_sym_AMP_GT] = ACTIONS(6111), - [anon_sym_AMP_GT_GT] = ACTIONS(6111), - [anon_sym_LT_AMP] = ACTIONS(6111), - [anon_sym_GT_AMP] = ACTIONS(6111), + [2360] = { + [sym_file_redirect] = STATE(633), + [sym_file_descriptor] = ACTIONS(5764), + [anon_sym_esac] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1233), + [anon_sym_SEMI_SEMI] = ACTIONS(1233), + [anon_sym_PIPE_AMP] = ACTIONS(1233), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_LT] = ACTIONS(5766), + [anon_sym_GT] = ACTIONS(5766), + [anon_sym_GT_GT] = ACTIONS(5766), + [anon_sym_AMP_GT] = ACTIONS(5766), + [anon_sym_AMP_GT_GT] = ACTIONS(5766), + [anon_sym_LT_AMP] = ACTIONS(5766), + [anon_sym_GT_AMP] = ACTIONS(5766), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_LF] = ACTIONS(1249), - [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_LF] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(1233), }, - [2489] = { - [sym_file_redirect] = STATE(2682), - [sym_heredoc_redirect] = STATE(2682), - [sym_herestring_redirect] = STATE(2682), - [aux_sym_while_statement_repeat1] = STATE(2682), - [sym_file_descriptor] = ACTIONS(6113), - [anon_sym_esac] = ACTIONS(1353), - [anon_sym_PIPE] = ACTIONS(1353), - [anon_sym_SEMI_SEMI] = ACTIONS(1353), - [anon_sym_PIPE_AMP] = ACTIONS(1353), - [anon_sym_AMP_AMP] = ACTIONS(1353), - [anon_sym_PIPE_PIPE] = ACTIONS(1353), - [anon_sym_LT] = ACTIONS(6115), - [anon_sym_GT] = ACTIONS(6115), - [anon_sym_GT_GT] = ACTIONS(6115), - [anon_sym_AMP_GT] = ACTIONS(6115), - [anon_sym_AMP_GT_GT] = ACTIONS(6115), - [anon_sym_LT_AMP] = ACTIONS(6115), - [anon_sym_GT_AMP] = ACTIONS(6115), - [anon_sym_LT_LT] = ACTIONS(1357), - [anon_sym_LT_LT_DASH] = ACTIONS(1357), - [anon_sym_LT_LT_LT] = ACTIONS(6117), + [2361] = { + [sym_file_redirect] = STATE(2504), + [sym_heredoc_redirect] = STATE(2504), + [sym_herestring_redirect] = STATE(2504), + [aux_sym_while_statement_repeat1] = STATE(2504), + [sym_file_descriptor] = ACTIONS(5768), + [anon_sym_esac] = ACTIONS(1341), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_SEMI_SEMI] = ACTIONS(1341), + [anon_sym_PIPE_AMP] = ACTIONS(1341), + [anon_sym_AMP_AMP] = ACTIONS(1341), + [anon_sym_PIPE_PIPE] = ACTIONS(1341), + [anon_sym_LT] = ACTIONS(5770), + [anon_sym_GT] = ACTIONS(5770), + [anon_sym_GT_GT] = ACTIONS(5770), + [anon_sym_AMP_GT] = ACTIONS(5770), + [anon_sym_AMP_GT_GT] = ACTIONS(5770), + [anon_sym_LT_AMP] = ACTIONS(5770), + [anon_sym_GT_AMP] = ACTIONS(5770), + [anon_sym_LT_LT] = ACTIONS(1345), + [anon_sym_LT_LT_DASH] = ACTIONS(1345), + [anon_sym_LT_LT_LT] = ACTIONS(5772), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_LF] = ACTIONS(1361), - [anon_sym_AMP] = ACTIONS(1353), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_LF] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1341), }, - [2490] = { - [sym_concatenation] = STATE(2683), - [sym_string] = STATE(2686), - [sym_array] = STATE(2683), - [sym_simple_expansion] = STATE(2686), - [sym_string_expansion] = STATE(2686), - [sym_expansion] = STATE(2686), - [sym_command_substitution] = STATE(2686), - [sym_process_substitution] = STATE(2686), - [sym__empty_value] = ACTIONS(6119), - [anon_sym_LPAREN] = ACTIONS(6121), - [sym__special_characters] = ACTIONS(6123), - [anon_sym_DQUOTE] = ACTIONS(5782), - [anon_sym_DOLLAR] = ACTIONS(5266), - [sym_raw_string] = ACTIONS(6125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6127), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6129), - [anon_sym_BQUOTE] = ACTIONS(6131), - [anon_sym_LT_LPAREN] = ACTIONS(6133), - [anon_sym_GT_LPAREN] = ACTIONS(6133), + [2362] = { + [sym_concatenation] = STATE(2505), + [sym_string] = STATE(2508), + [sym_array] = STATE(2505), + [sym_simple_expansion] = STATE(2508), + [sym_string_expansion] = STATE(2508), + [sym_expansion] = STATE(2508), + [sym_command_substitution] = STATE(2508), + [sym_process_substitution] = STATE(2508), + [sym__empty_value] = ACTIONS(5774), + [anon_sym_LPAREN] = ACTIONS(5776), + [sym__special_characters] = ACTIONS(5778), + [anon_sym_DQUOTE] = ACTIONS(5523), + [anon_sym_DOLLAR] = ACTIONS(5087), + [sym_raw_string] = ACTIONS(5780), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5782), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5784), + [anon_sym_BQUOTE] = ACTIONS(5786), + [anon_sym_LT_LPAREN] = ACTIONS(5788), + [anon_sym_GT_LPAREN] = ACTIONS(5788), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6125), + [sym_word] = ACTIONS(5780), }, - [2491] = { - [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(6135), - [anon_sym_DQUOTE] = ACTIONS(5782), - [anon_sym_DOLLAR] = ACTIONS(5266), - [sym_raw_string] = ACTIONS(6135), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6127), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6129), - [anon_sym_BQUOTE] = ACTIONS(6131), - [anon_sym_LT_LPAREN] = ACTIONS(6133), - [anon_sym_GT_LPAREN] = ACTIONS(6133), + [2363] = { + [sym_string] = STATE(2509), + [sym_simple_expansion] = STATE(2509), + [sym_string_expansion] = STATE(2509), + [sym_expansion] = STATE(2509), + [sym_command_substitution] = STATE(2509), + [sym_process_substitution] = STATE(2509), + [sym__special_characters] = ACTIONS(5790), + [anon_sym_DQUOTE] = ACTIONS(5523), + [anon_sym_DOLLAR] = ACTIONS(5087), + [sym_raw_string] = ACTIONS(5790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5782), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5784), + [anon_sym_BQUOTE] = ACTIONS(5786), + [anon_sym_LT_LPAREN] = ACTIONS(5788), + [anon_sym_GT_LPAREN] = ACTIONS(5788), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6135), + [sym_word] = ACTIONS(5790), }, - [2492] = { - [aux_sym_concatenation_repeat1] = STATE(2688), - [sym__concat] = ACTIONS(5778), + [2364] = { + [aux_sym_concatenation_repeat1] = STATE(2510), + [sym__concat] = ACTIONS(5519), [sym_variable_name] = ACTIONS(693), [anon_sym_esac] = ACTIONS(695), [anon_sym_PIPE] = ACTIONS(695), @@ -66628,7 +60578,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(693), [anon_sym_AMP] = ACTIONS(695), }, - [2493] = { + [2365] = { [sym__concat] = ACTIONS(697), [sym_variable_name] = ACTIONS(697), [anon_sym_esac] = ACTIONS(699), @@ -66653,12 +60603,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(697), [anon_sym_AMP] = ACTIONS(699), }, - [2494] = { + [2366] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(6137), + [anon_sym_DQUOTE] = ACTIONS(5792), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -66666,7 +60616,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(237), [sym_comment] = ACTIONS(177), }, - [2495] = { + [2367] = { [sym__concat] = ACTIONS(727), [sym_variable_name] = ACTIONS(727), [anon_sym_esac] = ACTIONS(729), @@ -66691,7 +60641,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(727), [anon_sym_AMP] = ACTIONS(729), }, - [2496] = { + [2368] = { [sym__concat] = ACTIONS(731), [sym_variable_name] = ACTIONS(731), [anon_sym_esac] = ACTIONS(733), @@ -66716,7 +60666,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(731), [anon_sym_AMP] = ACTIONS(733), }, - [2497] = { + [2369] = { [sym__concat] = ACTIONS(735), [sym_variable_name] = ACTIONS(735), [anon_sym_esac] = ACTIONS(737), @@ -66741,34 +60691,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(735), [anon_sym_AMP] = ACTIONS(737), }, - [2498] = { + [2370] = { [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(6139), + [anon_sym_EQ] = ACTIONS(5794), [sym_comment] = ACTIONS(53), }, - [2499] = { - [sym_concatenation] = STATE(2693), + [2371] = { + [sym_concatenation] = STATE(2515), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2693), - [anon_sym_RBRACE] = ACTIONS(6141), - [anon_sym_EQ] = ACTIONS(6143), + [aux_sym_expansion_repeat1] = STATE(2515), + [anon_sym_RBRACE] = ACTIONS(5796), + [anon_sym_EQ] = ACTIONS(5798), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6145), + [anon_sym_POUND] = ACTIONS(5800), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6147), - [anon_sym_COLON] = ACTIONS(6143), - [anon_sym_COLON_QMARK] = ACTIONS(6143), - [anon_sym_COLON_DASH] = ACTIONS(6143), - [anon_sym_PERCENT] = ACTIONS(6143), - [anon_sym_DASH] = ACTIONS(6143), + [aux_sym_SLASH] = ACTIONS(5802), + [anon_sym_COLON] = ACTIONS(5798), + [anon_sym_COLON_QMARK] = ACTIONS(5798), + [anon_sym_COLON_DASH] = ACTIONS(5798), + [anon_sym_PERCENT] = ACTIONS(5798), + [anon_sym_DASH] = ACTIONS(5798), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -66776,42 +60726,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2500] = { - [sym_subscript] = STATE(2697), - [sym_variable_name] = ACTIONS(6149), - [anon_sym_DOLLAR] = ACTIONS(6151), - [anon_sym_DASH] = ACTIONS(6151), + [2372] = { + [sym_subscript] = STATE(2519), + [sym_variable_name] = ACTIONS(5804), + [anon_sym_DOLLAR] = ACTIONS(5806), + [anon_sym_DASH] = ACTIONS(5806), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6153), - [anon_sym_STAR] = ACTIONS(6151), - [anon_sym_AT] = ACTIONS(6151), - [anon_sym_QMARK] = ACTIONS(6151), - [anon_sym_0] = ACTIONS(6155), - [anon_sym__] = ACTIONS(6155), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5808), + [anon_sym_STAR] = ACTIONS(5806), + [anon_sym_AT] = ACTIONS(5806), + [anon_sym_QMARK] = ACTIONS(5806), + [anon_sym_0] = ACTIONS(5810), + [anon_sym__] = ACTIONS(5810), }, - [2501] = { - [sym_concatenation] = STATE(2700), + [2373] = { + [sym_concatenation] = STATE(2522), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2700), - [anon_sym_RBRACE] = ACTIONS(6157), - [anon_sym_EQ] = ACTIONS(6159), + [aux_sym_expansion_repeat1] = STATE(2522), + [anon_sym_RBRACE] = ACTIONS(5812), + [anon_sym_EQ] = ACTIONS(5814), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6161), + [anon_sym_POUND] = ACTIONS(5816), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6163), - [anon_sym_COLON] = ACTIONS(6159), - [anon_sym_COLON_QMARK] = ACTIONS(6159), - [anon_sym_COLON_DASH] = ACTIONS(6159), - [anon_sym_PERCENT] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), + [aux_sym_SLASH] = ACTIONS(5818), + [anon_sym_COLON] = ACTIONS(5814), + [anon_sym_COLON_QMARK] = ACTIONS(5814), + [anon_sym_COLON_DASH] = ACTIONS(5814), + [anon_sym_PERCENT] = ACTIONS(5814), + [anon_sym_DASH] = ACTIONS(5814), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -66819,29 +60769,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2502] = { - [sym_concatenation] = STATE(2703), + [2374] = { + [sym_concatenation] = STATE(2525), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2703), - [anon_sym_RBRACE] = ACTIONS(6165), - [anon_sym_EQ] = ACTIONS(6167), + [aux_sym_expansion_repeat1] = STATE(2525), + [anon_sym_RBRACE] = ACTIONS(5820), + [anon_sym_EQ] = ACTIONS(5822), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6169), + [anon_sym_POUND] = ACTIONS(5824), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6171), - [anon_sym_COLON] = ACTIONS(6167), - [anon_sym_COLON_QMARK] = ACTIONS(6167), - [anon_sym_COLON_DASH] = ACTIONS(6167), - [anon_sym_PERCENT] = ACTIONS(6167), - [anon_sym_DASH] = ACTIONS(6167), + [aux_sym_SLASH] = ACTIONS(5826), + [anon_sym_COLON] = ACTIONS(5822), + [anon_sym_COLON_QMARK] = ACTIONS(5822), + [anon_sym_COLON_DASH] = ACTIONS(5822), + [anon_sym_PERCENT] = ACTIONS(5822), + [anon_sym_DASH] = ACTIONS(5822), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -66849,19 +60799,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2503] = { + [2375] = { [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(6173), + [anon_sym_RPAREN] = ACTIONS(5828), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), [sym_comment] = ACTIONS(53), }, - [2504] = { + [2376] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(6173), + [anon_sym_RPAREN] = ACTIONS(5828), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -66884,15 +60834,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(369), }, - [2505] = { + [2377] = { [anon_sym_PIPE] = ACTIONS(923), [anon_sym_PIPE_AMP] = ACTIONS(925), [anon_sym_AMP_AMP] = ACTIONS(927), [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_BQUOTE] = ACTIONS(6173), + [anon_sym_BQUOTE] = ACTIONS(5828), [sym_comment] = ACTIONS(53), }, - [2506] = { + [2378] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(923), @@ -66912,25 +60862,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(369), [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(6173), + [anon_sym_BQUOTE] = ACTIONS(5828), [anon_sym_LT_LPAREN] = ACTIONS(369), [anon_sym_GT_LPAREN] = ACTIONS(369), [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(369), }, - [2507] = { + [2379] = { [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(6175), + [anon_sym_RPAREN] = ACTIONS(5830), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), [sym_comment] = ACTIONS(53), }, - [2508] = { + [2380] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(6175), + [anon_sym_RPAREN] = ACTIONS(5830), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -66953,62 +60903,62 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(369), }, - [2509] = { - [sym_variable_assignment] = STATE(2509), - [sym_subscript] = STATE(2260), - [sym_concatenation] = STATE(2509), - [sym_string] = STATE(2254), - [sym_simple_expansion] = STATE(2254), - [sym_string_expansion] = STATE(2254), - [sym_expansion] = STATE(2254), - [sym_command_substitution] = STATE(2254), - [sym_process_substitution] = STATE(2254), - [aux_sym_declaration_command_repeat1] = STATE(2509), - [sym_variable_name] = ACTIONS(6177), - [anon_sym_esac] = ACTIONS(1500), - [anon_sym_PIPE] = ACTIONS(1500), - [anon_sym_SEMI_SEMI] = ACTIONS(1500), - [anon_sym_PIPE_AMP] = ACTIONS(1500), - [anon_sym_AMP_AMP] = ACTIONS(1500), - [anon_sym_PIPE_PIPE] = ACTIONS(1500), - [sym__special_characters] = ACTIONS(6180), - [anon_sym_DQUOTE] = ACTIONS(6183), - [anon_sym_DOLLAR] = ACTIONS(6186), - [sym_raw_string] = ACTIONS(6189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6195), - [anon_sym_BQUOTE] = ACTIONS(6198), - [anon_sym_LT_LPAREN] = ACTIONS(6201), - [anon_sym_GT_LPAREN] = ACTIONS(6201), + [2381] = { + [sym_variable_assignment] = STATE(2381), + [sym_subscript] = STATE(2169), + [sym_concatenation] = STATE(2381), + [sym_string] = STATE(2163), + [sym_simple_expansion] = STATE(2163), + [sym_string_expansion] = STATE(2163), + [sym_expansion] = STATE(2163), + [sym_command_substitution] = STATE(2163), + [sym_process_substitution] = STATE(2163), + [aux_sym_declaration_command_repeat1] = STATE(2381), + [sym_variable_name] = ACTIONS(5832), + [anon_sym_esac] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_SEMI_SEMI] = ACTIONS(1488), + [anon_sym_PIPE_AMP] = ACTIONS(1488), + [anon_sym_AMP_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1488), + [sym__special_characters] = ACTIONS(5835), + [anon_sym_DQUOTE] = ACTIONS(5838), + [anon_sym_DOLLAR] = ACTIONS(5841), + [sym_raw_string] = ACTIONS(5844), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5850), + [anon_sym_BQUOTE] = ACTIONS(5853), + [anon_sym_LT_LPAREN] = ACTIONS(5856), + [anon_sym_GT_LPAREN] = ACTIONS(5856), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6204), - [sym_word] = ACTIONS(6189), - [anon_sym_SEMI] = ACTIONS(1500), - [anon_sym_LF] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1500), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5859), + [sym_word] = ACTIONS(5844), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym_LF] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(1488), }, - [2510] = { - [sym_string] = STATE(2706), - [sym_simple_expansion] = STATE(2706), - [sym_string_expansion] = STATE(2706), - [sym_expansion] = STATE(2706), - [sym_command_substitution] = STATE(2706), - [sym_process_substitution] = STATE(2706), - [sym__special_characters] = ACTIONS(6207), - [anon_sym_DQUOTE] = ACTIONS(5806), - [anon_sym_DOLLAR] = ACTIONS(5284), - [sym_raw_string] = ACTIONS(6207), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6209), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6211), - [anon_sym_BQUOTE] = ACTIONS(6213), - [anon_sym_LT_LPAREN] = ACTIONS(6215), - [anon_sym_GT_LPAREN] = ACTIONS(6215), + [2382] = { + [sym_string] = STATE(2528), + [sym_simple_expansion] = STATE(2528), + [sym_string_expansion] = STATE(2528), + [sym_expansion] = STATE(2528), + [sym_command_substitution] = STATE(2528), + [sym_process_substitution] = STATE(2528), + [sym__special_characters] = ACTIONS(5862), + [anon_sym_DQUOTE] = ACTIONS(5547), + [anon_sym_DOLLAR] = ACTIONS(5105), + [sym_raw_string] = ACTIONS(5862), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5864), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5866), + [anon_sym_BQUOTE] = ACTIONS(5868), + [anon_sym_LT_LPAREN] = ACTIONS(5870), + [anon_sym_GT_LPAREN] = ACTIONS(5870), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6207), + [sym_word] = ACTIONS(5862), }, - [2511] = { - [aux_sym_concatenation_repeat1] = STATE(2707), - [sym__concat] = ACTIONS(5802), + [2383] = { + [aux_sym_concatenation_repeat1] = STATE(2529), + [sym__concat] = ACTIONS(5543), [anon_sym_esac] = ACTIONS(695), [anon_sym_PIPE] = ACTIONS(695), [anon_sym_SEMI_SEMI] = ACTIONS(695), @@ -67031,7 +60981,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(693), [anon_sym_AMP] = ACTIONS(695), }, - [2512] = { + [2384] = { [sym__concat] = ACTIONS(697), [anon_sym_esac] = ACTIONS(699), [anon_sym_PIPE] = ACTIONS(699), @@ -67055,12 +61005,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(697), [anon_sym_AMP] = ACTIONS(699), }, - [2513] = { + [2385] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(6217), + [anon_sym_DQUOTE] = ACTIONS(5872), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -67068,7 +61018,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(237), [sym_comment] = ACTIONS(177), }, - [2514] = { + [2386] = { [sym__concat] = ACTIONS(727), [anon_sym_esac] = ACTIONS(729), [anon_sym_PIPE] = ACTIONS(729), @@ -67092,7 +61042,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(727), [anon_sym_AMP] = ACTIONS(729), }, - [2515] = { + [2387] = { [sym__concat] = ACTIONS(731), [anon_sym_esac] = ACTIONS(733), [anon_sym_PIPE] = ACTIONS(733), @@ -67116,7 +61066,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(731), [anon_sym_AMP] = ACTIONS(733), }, - [2516] = { + [2388] = { [sym__concat] = ACTIONS(735), [anon_sym_esac] = ACTIONS(737), [anon_sym_PIPE] = ACTIONS(737), @@ -67140,34 +61090,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(735), [anon_sym_AMP] = ACTIONS(737), }, - [2517] = { + [2389] = { [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(6219), + [anon_sym_EQ] = ACTIONS(5874), [sym_comment] = ACTIONS(53), }, - [2518] = { - [sym_concatenation] = STATE(2712), + [2390] = { + [sym_concatenation] = STATE(2534), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2712), - [anon_sym_RBRACE] = ACTIONS(6221), - [anon_sym_EQ] = ACTIONS(6223), + [aux_sym_expansion_repeat1] = STATE(2534), + [anon_sym_RBRACE] = ACTIONS(5876), + [anon_sym_EQ] = ACTIONS(5878), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6225), + [anon_sym_POUND] = ACTIONS(5880), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6227), - [anon_sym_COLON] = ACTIONS(6223), - [anon_sym_COLON_QMARK] = ACTIONS(6223), - [anon_sym_COLON_DASH] = ACTIONS(6223), - [anon_sym_PERCENT] = ACTIONS(6223), - [anon_sym_DASH] = ACTIONS(6223), + [aux_sym_SLASH] = ACTIONS(5882), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -67175,42 +61125,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2519] = { - [sym_subscript] = STATE(2716), - [sym_variable_name] = ACTIONS(6229), - [anon_sym_DOLLAR] = ACTIONS(6231), - [anon_sym_DASH] = ACTIONS(6231), + [2391] = { + [sym_subscript] = STATE(2538), + [sym_variable_name] = ACTIONS(5884), + [anon_sym_DOLLAR] = ACTIONS(5886), + [anon_sym_DASH] = ACTIONS(5886), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6233), - [anon_sym_STAR] = ACTIONS(6231), - [anon_sym_AT] = ACTIONS(6231), - [anon_sym_QMARK] = ACTIONS(6231), - [anon_sym_0] = ACTIONS(6235), - [anon_sym__] = ACTIONS(6235), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5888), + [anon_sym_STAR] = ACTIONS(5886), + [anon_sym_AT] = ACTIONS(5886), + [anon_sym_QMARK] = ACTIONS(5886), + [anon_sym_0] = ACTIONS(5890), + [anon_sym__] = ACTIONS(5890), }, - [2520] = { - [sym_concatenation] = STATE(2719), + [2392] = { + [sym_concatenation] = STATE(2541), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2719), - [anon_sym_RBRACE] = ACTIONS(6237), - [anon_sym_EQ] = ACTIONS(6239), + [aux_sym_expansion_repeat1] = STATE(2541), + [anon_sym_RBRACE] = ACTIONS(5892), + [anon_sym_EQ] = ACTIONS(5894), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6241), + [anon_sym_POUND] = ACTIONS(5896), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6243), - [anon_sym_COLON] = ACTIONS(6239), - [anon_sym_COLON_QMARK] = ACTIONS(6239), - [anon_sym_COLON_DASH] = ACTIONS(6239), - [anon_sym_PERCENT] = ACTIONS(6239), - [anon_sym_DASH] = ACTIONS(6239), + [aux_sym_SLASH] = ACTIONS(5898), + [anon_sym_COLON] = ACTIONS(5894), + [anon_sym_COLON_QMARK] = ACTIONS(5894), + [anon_sym_COLON_DASH] = ACTIONS(5894), + [anon_sym_PERCENT] = ACTIONS(5894), + [anon_sym_DASH] = ACTIONS(5894), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -67218,29 +61168,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2521] = { - [sym_concatenation] = STATE(2722), + [2393] = { + [sym_concatenation] = STATE(2544), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2722), - [anon_sym_RBRACE] = ACTIONS(6245), - [anon_sym_EQ] = ACTIONS(6247), + [aux_sym_expansion_repeat1] = STATE(2544), + [anon_sym_RBRACE] = ACTIONS(5900), + [anon_sym_EQ] = ACTIONS(5902), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6249), + [anon_sym_POUND] = ACTIONS(5904), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), + [aux_sym_SLASH] = ACTIONS(5906), + [anon_sym_COLON] = ACTIONS(5902), + [anon_sym_COLON_QMARK] = ACTIONS(5902), + [anon_sym_COLON_DASH] = ACTIONS(5902), + [anon_sym_PERCENT] = ACTIONS(5902), + [anon_sym_DASH] = ACTIONS(5902), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -67248,19 +61198,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2522] = { + [2394] = { [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(6253), + [anon_sym_RPAREN] = ACTIONS(5908), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), [sym_comment] = ACTIONS(53), }, - [2523] = { + [2395] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(6253), + [anon_sym_RPAREN] = ACTIONS(5908), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -67283,15 +61233,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(369), }, - [2524] = { + [2396] = { [anon_sym_PIPE] = ACTIONS(923), [anon_sym_PIPE_AMP] = ACTIONS(925), [anon_sym_AMP_AMP] = ACTIONS(927), [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_BQUOTE] = ACTIONS(6253), + [anon_sym_BQUOTE] = ACTIONS(5908), [sym_comment] = ACTIONS(53), }, - [2525] = { + [2397] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(923), @@ -67311,25 +61261,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(369), [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(6253), + [anon_sym_BQUOTE] = ACTIONS(5908), [anon_sym_LT_LPAREN] = ACTIONS(369), [anon_sym_GT_LPAREN] = ACTIONS(369), [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(369), }, - [2526] = { + [2398] = { [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(6255), + [anon_sym_RPAREN] = ACTIONS(5910), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), [sym_comment] = ACTIONS(53), }, - [2527] = { + [2399] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(6255), + [anon_sym_RPAREN] = ACTIONS(5910), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -67352,571 +61302,102 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(369), }, - [2528] = { - [sym_concatenation] = STATE(2528), - [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), - [aux_sym_unset_command_repeat1] = STATE(2528), - [anon_sym_esac] = ACTIONS(1581), - [anon_sym_PIPE] = ACTIONS(1581), - [anon_sym_SEMI_SEMI] = ACTIONS(1581), - [anon_sym_PIPE_AMP] = ACTIONS(1581), - [anon_sym_AMP_AMP] = ACTIONS(1581), - [anon_sym_PIPE_PIPE] = ACTIONS(1581), - [sym__special_characters] = ACTIONS(6257), - [anon_sym_DQUOTE] = ACTIONS(6260), - [anon_sym_DOLLAR] = ACTIONS(6263), - [sym_raw_string] = ACTIONS(6266), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6269), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6272), - [anon_sym_BQUOTE] = ACTIONS(6275), - [anon_sym_LT_LPAREN] = ACTIONS(6278), - [anon_sym_GT_LPAREN] = ACTIONS(6278), + [2400] = { + [sym_concatenation] = STATE(2400), + [sym_string] = STATE(2174), + [sym_simple_expansion] = STATE(2174), + [sym_string_expansion] = STATE(2174), + [sym_expansion] = STATE(2174), + [sym_command_substitution] = STATE(2174), + [sym_process_substitution] = STATE(2174), + [aux_sym_unset_command_repeat1] = STATE(2400), + [anon_sym_esac] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_SEMI_SEMI] = ACTIONS(1569), + [anon_sym_PIPE_AMP] = ACTIONS(1569), + [anon_sym_AMP_AMP] = ACTIONS(1569), + [anon_sym_PIPE_PIPE] = ACTIONS(1569), + [sym__special_characters] = ACTIONS(5912), + [anon_sym_DQUOTE] = ACTIONS(5915), + [anon_sym_DOLLAR] = ACTIONS(5918), + [sym_raw_string] = ACTIONS(5921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5927), + [anon_sym_BQUOTE] = ACTIONS(5930), + [anon_sym_LT_LPAREN] = ACTIONS(5933), + [anon_sym_GT_LPAREN] = ACTIONS(5933), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6281), - [sym_word] = ACTIONS(6266), - [anon_sym_SEMI] = ACTIONS(1581), - [anon_sym_LF] = ACTIONS(1610), - [anon_sym_AMP] = ACTIONS(1581), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5936), + [sym_word] = ACTIONS(5921), + [anon_sym_SEMI] = ACTIONS(1569), + [anon_sym_LF] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1569), }, - [2529] = { - [sym__simple_heredoc_body] = ACTIONS(1654), - [sym__heredoc_body_beginning] = ACTIONS(1654), - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(1654), - [anon_sym_esac] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [anon_sym_EQ_TILDE] = ACTIONS(1656), - [anon_sym_EQ_EQ] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1656), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1656), - [anon_sym_LT_AMP] = ACTIONS(1656), - [anon_sym_GT_AMP] = ACTIONS(1656), - [anon_sym_LT_LT] = ACTIONS(1656), - [anon_sym_LT_LT_DASH] = ACTIONS(1656), - [anon_sym_LT_LT_LT] = ACTIONS(1656), - [sym__special_characters] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1656), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1656), - [anon_sym_BQUOTE] = ACTIONS(1656), - [anon_sym_LT_LPAREN] = ACTIONS(1656), - [anon_sym_GT_LPAREN] = ACTIONS(1656), + [2401] = { + [aux_sym_concatenation_repeat1] = STATE(2401), + [sym__simple_heredoc_body] = ACTIONS(1642), + [sym__heredoc_body_beginning] = ACTIONS(1642), + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(1646), + [anon_sym_esac] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [anon_sym_EQ_TILDE] = ACTIONS(1644), + [anon_sym_EQ_EQ] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1644), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1644), + [anon_sym_LT_AMP] = ACTIONS(1644), + [anon_sym_GT_AMP] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1644), + [anon_sym_LT_LT_DASH] = ACTIONS(1644), + [anon_sym_LT_LT_LT] = ACTIONS(1644), + [sym__special_characters] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1644), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1644), + [anon_sym_LT_LPAREN] = ACTIONS(1644), + [anon_sym_GT_LPAREN] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), + [sym_word] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, - [2530] = { - [aux_sym_concatenation_repeat1] = STATE(2530), - [sym__simple_heredoc_body] = ACTIONS(1654), - [sym__heredoc_body_beginning] = ACTIONS(1654), - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(6284), - [anon_sym_esac] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [anon_sym_EQ_TILDE] = ACTIONS(1656), - [anon_sym_EQ_EQ] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1656), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1656), - [anon_sym_LT_AMP] = ACTIONS(1656), - [anon_sym_GT_AMP] = ACTIONS(1656), - [anon_sym_LT_LT] = ACTIONS(1656), - [anon_sym_LT_LT_DASH] = ACTIONS(1656), - [anon_sym_LT_LT_LT] = ACTIONS(1656), - [sym__special_characters] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1656), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1656), - [anon_sym_BQUOTE] = ACTIONS(1656), - [anon_sym_LT_LPAREN] = ACTIONS(1656), - [anon_sym_GT_LPAREN] = ACTIONS(1656), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), - }, - [2531] = { - [sym__simple_heredoc_body] = ACTIONS(1703), - [sym__heredoc_body_beginning] = ACTIONS(1703), - [sym_file_descriptor] = ACTIONS(1703), - [sym__concat] = ACTIONS(1703), - [anon_sym_esac] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_SEMI_SEMI] = ACTIONS(1705), - [anon_sym_PIPE_AMP] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1705), - [anon_sym_PIPE_PIPE] = ACTIONS(1705), - [anon_sym_EQ_TILDE] = ACTIONS(1705), - [anon_sym_EQ_EQ] = ACTIONS(1705), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_GT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_AMP_GT] = ACTIONS(1705), - [anon_sym_AMP_GT_GT] = ACTIONS(1705), - [anon_sym_LT_AMP] = ACTIONS(1705), - [anon_sym_GT_AMP] = ACTIONS(1705), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_LT_LT_DASH] = ACTIONS(1705), - [anon_sym_LT_LT_LT] = ACTIONS(1705), - [sym__special_characters] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1705), - [sym_raw_string] = ACTIONS(1705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1705), - [anon_sym_BQUOTE] = ACTIONS(1705), - [anon_sym_LT_LPAREN] = ACTIONS(1705), - [anon_sym_GT_LPAREN] = ACTIONS(1705), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_LF] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1705), - }, - [2532] = { - [sym_concatenation] = STATE(2728), - [sym_string] = STATE(2727), - [sym_simple_expansion] = STATE(2727), - [sym_string_expansion] = STATE(2727), - [sym_expansion] = STATE(2727), - [sym_command_substitution] = STATE(2727), - [sym_process_substitution] = STATE(2727), - [anon_sym_RBRACE] = ACTIONS(6287), - [sym__special_characters] = ACTIONS(6289), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(6291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6291), - }, - [2533] = { - [sym__simple_heredoc_body] = ACTIONS(1744), - [sym__heredoc_body_beginning] = ACTIONS(1744), - [sym_file_descriptor] = ACTIONS(1744), - [sym__concat] = ACTIONS(1744), - [anon_sym_esac] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_SEMI_SEMI] = ACTIONS(1746), - [anon_sym_PIPE_AMP] = ACTIONS(1746), - [anon_sym_AMP_AMP] = ACTIONS(1746), - [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_EQ_TILDE] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1746), - [anon_sym_GT] = ACTIONS(1746), - [anon_sym_GT_GT] = ACTIONS(1746), - [anon_sym_AMP_GT] = ACTIONS(1746), - [anon_sym_AMP_GT_GT] = ACTIONS(1746), - [anon_sym_LT_AMP] = ACTIONS(1746), - [anon_sym_GT_AMP] = ACTIONS(1746), - [anon_sym_LT_LT] = ACTIONS(1746), - [anon_sym_LT_LT_DASH] = ACTIONS(1746), - [anon_sym_LT_LT_LT] = ACTIONS(1746), - [sym__special_characters] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1746), - [sym_raw_string] = ACTIONS(1746), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1746), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_LT_LPAREN] = ACTIONS(1746), - [anon_sym_GT_LPAREN] = ACTIONS(1746), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LF] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1746), - }, - [2534] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6293), - }, - [2535] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6295), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2536] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(6297), - [sym_comment] = ACTIONS(53), - }, - [2537] = { - [sym_concatenation] = STATE(2734), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2734), - [anon_sym_RBRACE] = ACTIONS(6299), - [anon_sym_EQ] = ACTIONS(6301), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6305), - [anon_sym_COLON] = ACTIONS(6301), - [anon_sym_COLON_QMARK] = ACTIONS(6301), - [anon_sym_COLON_DASH] = ACTIONS(6301), - [anon_sym_PERCENT] = ACTIONS(6301), - [anon_sym_DASH] = ACTIONS(6301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2538] = { - [sym_concatenation] = STATE(2737), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2737), - [anon_sym_RBRACE] = ACTIONS(6307), - [anon_sym_EQ] = ACTIONS(6309), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6311), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6313), - [anon_sym_COLON] = ACTIONS(6309), - [anon_sym_COLON_QMARK] = ACTIONS(6309), - [anon_sym_COLON_DASH] = ACTIONS(6309), - [anon_sym_PERCENT] = ACTIONS(6309), - [anon_sym_DASH] = ACTIONS(6309), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2539] = { - [sym_concatenation] = STATE(2739), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2739), - [anon_sym_RBRACE] = ACTIONS(6287), - [anon_sym_EQ] = ACTIONS(6315), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6317), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6319), - [anon_sym_COLON] = ACTIONS(6315), - [anon_sym_COLON_QMARK] = ACTIONS(6315), - [anon_sym_COLON_DASH] = ACTIONS(6315), - [anon_sym_PERCENT] = ACTIONS(6315), - [anon_sym_DASH] = ACTIONS(6315), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2540] = { - [sym__simple_heredoc_body] = ACTIONS(1810), - [sym__heredoc_body_beginning] = ACTIONS(1810), - [sym_file_descriptor] = ACTIONS(1810), - [sym__concat] = ACTIONS(1810), - [anon_sym_esac] = ACTIONS(1812), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_SEMI_SEMI] = ACTIONS(1812), - [anon_sym_PIPE_AMP] = ACTIONS(1812), - [anon_sym_AMP_AMP] = ACTIONS(1812), - [anon_sym_PIPE_PIPE] = ACTIONS(1812), - [anon_sym_EQ_TILDE] = ACTIONS(1812), - [anon_sym_EQ_EQ] = ACTIONS(1812), - [anon_sym_LT] = ACTIONS(1812), - [anon_sym_GT] = ACTIONS(1812), - [anon_sym_GT_GT] = ACTIONS(1812), - [anon_sym_AMP_GT] = ACTIONS(1812), - [anon_sym_AMP_GT_GT] = ACTIONS(1812), - [anon_sym_LT_AMP] = ACTIONS(1812), - [anon_sym_GT_AMP] = ACTIONS(1812), - [anon_sym_LT_LT] = ACTIONS(1812), - [anon_sym_LT_LT_DASH] = ACTIONS(1812), - [anon_sym_LT_LT_LT] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(1812), - [anon_sym_DQUOTE] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1812), - [sym_raw_string] = ACTIONS(1812), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1812), - [anon_sym_GT_LPAREN] = ACTIONS(1812), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_LF] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1812), - }, - [2541] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6321), - }, - [2542] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6323), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2543] = { - [sym__simple_heredoc_body] = ACTIONS(1818), - [sym__heredoc_body_beginning] = ACTIONS(1818), - [sym_file_descriptor] = ACTIONS(1818), - [sym__concat] = ACTIONS(1818), - [anon_sym_esac] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_SEMI_SEMI] = ACTIONS(1820), - [anon_sym_PIPE_AMP] = ACTIONS(1820), - [anon_sym_AMP_AMP] = ACTIONS(1820), - [anon_sym_PIPE_PIPE] = ACTIONS(1820), - [anon_sym_EQ_TILDE] = ACTIONS(1820), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_LT] = ACTIONS(1820), - [anon_sym_GT] = ACTIONS(1820), - [anon_sym_GT_GT] = ACTIONS(1820), - [anon_sym_AMP_GT] = ACTIONS(1820), - [anon_sym_AMP_GT_GT] = ACTIONS(1820), - [anon_sym_LT_AMP] = ACTIONS(1820), - [anon_sym_GT_AMP] = ACTIONS(1820), - [anon_sym_LT_LT] = ACTIONS(1820), - [anon_sym_LT_LT_DASH] = ACTIONS(1820), - [anon_sym_LT_LT_LT] = ACTIONS(1820), - [sym__special_characters] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1820), - [sym_raw_string] = ACTIONS(1820), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1820), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1820), - [anon_sym_BQUOTE] = ACTIONS(1820), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_LF] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1820), - }, - [2544] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6325), - }, - [2545] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6287), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2546] = { - [sym__simple_heredoc_body] = ACTIONS(1952), - [sym__heredoc_body_beginning] = ACTIONS(1952), - [sym_file_descriptor] = ACTIONS(1952), - [sym__concat] = ACTIONS(1952), - [anon_sym_esac] = ACTIONS(1954), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_SEMI_SEMI] = ACTIONS(1954), - [anon_sym_PIPE_AMP] = ACTIONS(1954), - [anon_sym_AMP_AMP] = ACTIONS(1954), - [anon_sym_PIPE_PIPE] = ACTIONS(1954), - [anon_sym_EQ_TILDE] = ACTIONS(1954), - [anon_sym_EQ_EQ] = ACTIONS(1954), - [anon_sym_LT] = ACTIONS(1954), - [anon_sym_GT] = ACTIONS(1954), - [anon_sym_GT_GT] = ACTIONS(1954), - [anon_sym_AMP_GT] = ACTIONS(1954), - [anon_sym_AMP_GT_GT] = ACTIONS(1954), - [anon_sym_LT_AMP] = ACTIONS(1954), - [anon_sym_GT_AMP] = ACTIONS(1954), - [anon_sym_LT_LT] = ACTIONS(1954), - [anon_sym_LT_LT_DASH] = ACTIONS(1954), - [anon_sym_LT_LT_LT] = ACTIONS(1954), - [sym__special_characters] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(1954), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1954), - [anon_sym_BQUOTE] = ACTIONS(1954), - [anon_sym_LT_LPAREN] = ACTIONS(1954), - [anon_sym_GT_LPAREN] = ACTIONS(1954), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1954), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_LF] = ACTIONS(1952), - [anon_sym_AMP] = ACTIONS(1954), - }, - [2547] = { - [sym__simple_heredoc_body] = ACTIONS(2018), - [sym__heredoc_body_beginning] = ACTIONS(2018), - [sym_file_descriptor] = ACTIONS(2018), - [sym__concat] = ACTIONS(2018), - [anon_sym_esac] = ACTIONS(2020), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_SEMI_SEMI] = ACTIONS(2020), - [anon_sym_PIPE_AMP] = ACTIONS(2020), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [anon_sym_EQ_TILDE] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT] = ACTIONS(2020), - [anon_sym_GT] = ACTIONS(2020), - [anon_sym_GT_GT] = ACTIONS(2020), - [anon_sym_AMP_GT] = ACTIONS(2020), - [anon_sym_AMP_GT_GT] = ACTIONS(2020), - [anon_sym_LT_AMP] = ACTIONS(2020), - [anon_sym_GT_AMP] = ACTIONS(2020), - [anon_sym_LT_LT] = ACTIONS(2020), - [anon_sym_LT_LT_DASH] = ACTIONS(2020), - [anon_sym_LT_LT_LT] = ACTIONS(2020), - [sym__special_characters] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym_DOLLAR] = ACTIONS(2020), - [sym_raw_string] = ACTIONS(2020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2020), - [anon_sym_BQUOTE] = ACTIONS(2020), - [anon_sym_LT_LPAREN] = ACTIONS(2020), - [anon_sym_GT_LPAREN] = ACTIONS(2020), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2020), - [anon_sym_SEMI] = ACTIONS(2020), - [anon_sym_LF] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2020), - }, - [2548] = { - [sym_compound_statement] = STATE(2743), + [2402] = { + [sym_compound_statement] = STATE(2547), [anon_sym_LBRACE] = ACTIONS(455), [sym_comment] = ACTIONS(53), }, - [2549] = { + [2403] = { + [anon_sym_esac] = ACTIONS(2014), + [anon_sym_PIPE] = ACTIONS(5121), + [anon_sym_SEMI_SEMI] = ACTIONS(2014), + [anon_sym_PIPE_AMP] = ACTIONS(5121), + [anon_sym_AMP_AMP] = ACTIONS(2014), + [anon_sym_PIPE_PIPE] = ACTIONS(2014), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_LF] = ACTIONS(2016), + [anon_sym_AMP] = ACTIONS(2014), + }, + [2404] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [anon_sym_esac] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2022), - [anon_sym_SEMI_SEMI] = ACTIONS(2022), - [anon_sym_PIPE_AMP] = ACTIONS(2022), - [anon_sym_AMP_AMP] = ACTIONS(2022), - [anon_sym_PIPE_PIPE] = ACTIONS(2022), + [anon_sym_esac] = ACTIONS(2014), + [anon_sym_PIPE] = ACTIONS(5121), + [anon_sym_SEMI_SEMI] = ACTIONS(2014), + [anon_sym_PIPE_AMP] = ACTIONS(5121), + [anon_sym_AMP_AMP] = ACTIONS(2014), + [anon_sym_PIPE_PIPE] = ACTIONS(2014), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(371), @@ -67935,194 +61416,114 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(371), [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(2022), - [anon_sym_LF] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2022), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_LF] = ACTIONS(2016), + [anon_sym_AMP] = ACTIONS(2014), }, - [2550] = { - [anon_sym_esac] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(5322), - [anon_sym_SEMI_SEMI] = ACTIONS(2026), - [anon_sym_PIPE_AMP] = ACTIONS(5322), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2026), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2026), - }, - [2551] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_esac] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(5322), - [anon_sym_SEMI_SEMI] = ACTIONS(2026), - [anon_sym_PIPE_AMP] = ACTIONS(5322), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(2026), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2026), - }, - [2552] = { - [sym_concatenation] = STATE(991), - [sym_string] = STATE(2745), - [sym_simple_expansion] = STATE(2745), - [sym_string_expansion] = STATE(2745), - [sym_expansion] = STATE(2745), - [sym_command_substitution] = STATE(2745), - [sym_process_substitution] = STATE(2745), - [sym__special_characters] = ACTIONS(6327), - [anon_sym_DQUOTE] = ACTIONS(5888), - [anon_sym_DOLLAR] = ACTIONS(5890), - [sym_raw_string] = ACTIONS(6329), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5896), - [anon_sym_BQUOTE] = ACTIONS(5898), - [anon_sym_LT_LPAREN] = ACTIONS(5900), - [anon_sym_GT_LPAREN] = ACTIONS(5900), + [2405] = { + [sym_concatenation] = STATE(981), + [sym_string] = STATE(2549), + [sym_simple_expansion] = STATE(2549), + [sym_string_expansion] = STATE(2549), + [sym_expansion] = STATE(2549), + [sym_command_substitution] = STATE(2549), + [sym_process_substitution] = STATE(2549), + [sym__special_characters] = ACTIONS(5939), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6329), + [sym_word] = ACTIONS(5941), }, - [2553] = { - [aux_sym_concatenation_repeat1] = STATE(2273), - [sym__simple_heredoc_body] = ACTIONS(2058), - [sym__heredoc_body_beginning] = ACTIONS(2058), - [sym_file_descriptor] = ACTIONS(2058), - [sym__concat] = ACTIONS(5298), - [anon_sym_esac] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_SEMI_SEMI] = ACTIONS(2060), - [anon_sym_PIPE_AMP] = ACTIONS(2060), - [anon_sym_AMP_AMP] = ACTIONS(2060), - [anon_sym_PIPE_PIPE] = ACTIONS(2060), - [anon_sym_EQ_TILDE] = ACTIONS(2060), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_GT] = ACTIONS(2060), - [anon_sym_AMP_GT] = ACTIONS(2060), - [anon_sym_AMP_GT_GT] = ACTIONS(2060), - [anon_sym_LT_AMP] = ACTIONS(2060), - [anon_sym_GT_AMP] = ACTIONS(2060), - [anon_sym_LT_LT] = ACTIONS(2060), - [anon_sym_LT_LT_DASH] = ACTIONS(2060), - [anon_sym_LT_LT_LT] = ACTIONS(2060), - [sym__special_characters] = ACTIONS(2060), - [anon_sym_DQUOTE] = ACTIONS(2060), - [anon_sym_DOLLAR] = ACTIONS(2060), - [sym_raw_string] = ACTIONS(2060), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2060), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2060), - [anon_sym_BQUOTE] = ACTIONS(2060), - [anon_sym_LT_LPAREN] = ACTIONS(2060), - [anon_sym_GT_LPAREN] = ACTIONS(2060), + [2406] = { + [aux_sym_concatenation_repeat1] = STATE(2181), + [sym__simple_heredoc_body] = ACTIONS(2046), + [sym__heredoc_body_beginning] = ACTIONS(2046), + [sym_file_descriptor] = ACTIONS(2046), + [sym__concat] = ACTIONS(223), + [anon_sym_esac] = ACTIONS(2048), + [anon_sym_PIPE] = ACTIONS(2048), + [anon_sym_SEMI_SEMI] = ACTIONS(2048), + [anon_sym_PIPE_AMP] = ACTIONS(2048), + [anon_sym_AMP_AMP] = ACTIONS(2048), + [anon_sym_PIPE_PIPE] = ACTIONS(2048), + [anon_sym_EQ_TILDE] = ACTIONS(2048), + [anon_sym_EQ_EQ] = ACTIONS(2048), + [anon_sym_LT] = ACTIONS(2048), + [anon_sym_GT] = ACTIONS(2048), + [anon_sym_GT_GT] = ACTIONS(2048), + [anon_sym_AMP_GT] = ACTIONS(2048), + [anon_sym_AMP_GT_GT] = ACTIONS(2048), + [anon_sym_LT_AMP] = ACTIONS(2048), + [anon_sym_GT_AMP] = ACTIONS(2048), + [anon_sym_LT_LT] = ACTIONS(2048), + [anon_sym_LT_LT_DASH] = ACTIONS(2048), + [anon_sym_LT_LT_LT] = ACTIONS(2048), + [sym__special_characters] = ACTIONS(2048), + [anon_sym_DQUOTE] = ACTIONS(2048), + [anon_sym_DOLLAR] = ACTIONS(2048), + [sym_raw_string] = ACTIONS(2048), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2048), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2048), + [anon_sym_BQUOTE] = ACTIONS(2048), + [anon_sym_LT_LPAREN] = ACTIONS(2048), + [anon_sym_GT_LPAREN] = ACTIONS(2048), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_LF] = ACTIONS(2058), - [anon_sym_AMP] = ACTIONS(2060), + [sym_word] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_LF] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2048), }, - [2554] = { - [aux_sym_concatenation_repeat1] = STATE(2273), - [sym__simple_heredoc_body] = ACTIONS(2062), - [sym__heredoc_body_beginning] = ACTIONS(2062), - [sym_file_descriptor] = ACTIONS(2062), - [sym__concat] = ACTIONS(5298), - [anon_sym_esac] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2064), - [anon_sym_SEMI_SEMI] = ACTIONS(2064), - [anon_sym_PIPE_AMP] = ACTIONS(2064), - [anon_sym_AMP_AMP] = ACTIONS(2064), - [anon_sym_PIPE_PIPE] = ACTIONS(2064), - [anon_sym_EQ_TILDE] = ACTIONS(2064), - [anon_sym_EQ_EQ] = ACTIONS(2064), - [anon_sym_LT] = ACTIONS(2064), - [anon_sym_GT] = ACTIONS(2064), - [anon_sym_GT_GT] = ACTIONS(2064), - [anon_sym_AMP_GT] = ACTIONS(2064), - [anon_sym_AMP_GT_GT] = ACTIONS(2064), - [anon_sym_LT_AMP] = ACTIONS(2064), - [anon_sym_GT_AMP] = ACTIONS(2064), - [anon_sym_LT_LT] = ACTIONS(2064), - [anon_sym_LT_LT_DASH] = ACTIONS(2064), - [anon_sym_LT_LT_LT] = ACTIONS(2064), - [sym__special_characters] = ACTIONS(2064), - [anon_sym_DQUOTE] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2064), - [sym_raw_string] = ACTIONS(2064), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2064), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2064), - [anon_sym_BQUOTE] = ACTIONS(2064), - [anon_sym_LT_LPAREN] = ACTIONS(2064), - [anon_sym_GT_LPAREN] = ACTIONS(2064), + [2407] = { + [aux_sym_concatenation_repeat1] = STATE(2181), + [sym__simple_heredoc_body] = ACTIONS(2050), + [sym__heredoc_body_beginning] = ACTIONS(2050), + [sym_file_descriptor] = ACTIONS(2050), + [sym__concat] = ACTIONS(223), + [anon_sym_esac] = ACTIONS(2052), + [anon_sym_PIPE] = ACTIONS(2052), + [anon_sym_SEMI_SEMI] = ACTIONS(2052), + [anon_sym_PIPE_AMP] = ACTIONS(2052), + [anon_sym_AMP_AMP] = ACTIONS(2052), + [anon_sym_PIPE_PIPE] = ACTIONS(2052), + [anon_sym_EQ_TILDE] = ACTIONS(2052), + [anon_sym_EQ_EQ] = ACTIONS(2052), + [anon_sym_LT] = ACTIONS(2052), + [anon_sym_GT] = ACTIONS(2052), + [anon_sym_GT_GT] = ACTIONS(2052), + [anon_sym_AMP_GT] = ACTIONS(2052), + [anon_sym_AMP_GT_GT] = ACTIONS(2052), + [anon_sym_LT_AMP] = ACTIONS(2052), + [anon_sym_GT_AMP] = ACTIONS(2052), + [anon_sym_LT_LT] = ACTIONS(2052), + [anon_sym_LT_LT_DASH] = ACTIONS(2052), + [anon_sym_LT_LT_LT] = ACTIONS(2052), + [sym__special_characters] = ACTIONS(2052), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_DOLLAR] = ACTIONS(2052), + [sym_raw_string] = ACTIONS(2052), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2052), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2052), + [anon_sym_BQUOTE] = ACTIONS(2052), + [anon_sym_LT_LPAREN] = ACTIONS(2052), + [anon_sym_GT_LPAREN] = ACTIONS(2052), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2064), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_LF] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2064), + [sym_word] = ACTIONS(2052), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_LF] = ACTIONS(2050), + [anon_sym_AMP] = ACTIONS(2052), }, - [2555] = { - [sym__simple_heredoc_body] = ACTIONS(2062), - [sym__heredoc_body_beginning] = ACTIONS(2062), - [sym_file_descriptor] = ACTIONS(2062), - [anon_sym_esac] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2064), - [anon_sym_SEMI_SEMI] = ACTIONS(2064), - [anon_sym_PIPE_AMP] = ACTIONS(2064), - [anon_sym_AMP_AMP] = ACTIONS(2064), - [anon_sym_PIPE_PIPE] = ACTIONS(2064), - [anon_sym_EQ_TILDE] = ACTIONS(2064), - [anon_sym_EQ_EQ] = ACTIONS(2064), - [anon_sym_LT] = ACTIONS(2064), - [anon_sym_GT] = ACTIONS(2064), - [anon_sym_GT_GT] = ACTIONS(2064), - [anon_sym_AMP_GT] = ACTIONS(2064), - [anon_sym_AMP_GT_GT] = ACTIONS(2064), - [anon_sym_LT_AMP] = ACTIONS(2064), - [anon_sym_GT_AMP] = ACTIONS(2064), - [anon_sym_LT_LT] = ACTIONS(2064), - [anon_sym_LT_LT_DASH] = ACTIONS(2064), - [anon_sym_LT_LT_LT] = ACTIONS(2064), - [sym__special_characters] = ACTIONS(2064), - [anon_sym_DQUOTE] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2064), - [sym_raw_string] = ACTIONS(2064), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2064), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2064), - [anon_sym_BQUOTE] = ACTIONS(2064), - [anon_sym_LT_LPAREN] = ACTIONS(2064), - [anon_sym_GT_LPAREN] = ACTIONS(2064), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2064), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_LF] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2064), - }, - [2556] = { - [aux_sym_concatenation_repeat1] = STATE(2747), + [2408] = { + [aux_sym_concatenation_repeat1] = STATE(2550), [sym__simple_heredoc_body] = ACTIONS(661), [sym__heredoc_body_beginning] = ACTIONS(661), [sym_file_descriptor] = ACTIONS(661), - [sym__concat] = ACTIONS(6331), + [sym__concat] = ACTIONS(223), [anon_sym_esac] = ACTIONS(665), [anon_sym_PIPE] = ACTIONS(665), [anon_sym_SEMI_SEMI] = ACTIONS(665), @@ -68144,40 +61545,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(661), [anon_sym_AMP] = ACTIONS(665), }, - [2557] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(2749), - [anon_sym_DQUOTE] = ACTIONS(6333), - [anon_sym_DOLLAR] = ACTIONS(229), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [2558] = { - [sym_string] = STATE(2751), - [anon_sym_DQUOTE] = ACTIONS(5888), - [anon_sym_DOLLAR] = ACTIONS(6335), - [sym_raw_string] = ACTIONS(6337), - [anon_sym_POUND] = ACTIONS(6335), - [anon_sym_DASH] = ACTIONS(6335), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6339), - [anon_sym_STAR] = ACTIONS(6335), - [anon_sym_AT] = ACTIONS(6335), - [anon_sym_QMARK] = ACTIONS(6335), - [anon_sym_0] = ACTIONS(6341), - [anon_sym__] = ACTIONS(6341), - }, - [2559] = { - [aux_sym_concatenation_repeat1] = STATE(2747), + [2409] = { + [aux_sym_concatenation_repeat1] = STATE(2550), [sym__simple_heredoc_body] = ACTIONS(677), [sym__heredoc_body_beginning] = ACTIONS(677), [sym_file_descriptor] = ACTIONS(677), - [sym__concat] = ACTIONS(6331), + [sym__concat] = ACTIONS(223), [anon_sym_esac] = ACTIONS(679), [anon_sym_PIPE] = ACTIONS(679), [anon_sym_SEMI_SEMI] = ACTIONS(679), @@ -68199,342 +61572,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(677), [anon_sym_AMP] = ACTIONS(679), }, - [2560] = { - [sym_subscript] = STATE(2757), - [sym_variable_name] = ACTIONS(6343), - [anon_sym_DOLLAR] = ACTIONS(6345), - [anon_sym_POUND] = ACTIONS(6347), - [anon_sym_DASH] = ACTIONS(6345), + [2410] = { + [aux_sym_concatenation_repeat1] = STATE(2550), + [sym__simple_heredoc_body] = ACTIONS(2058), + [sym__heredoc_body_beginning] = ACTIONS(2058), + [sym_file_descriptor] = ACTIONS(2058), + [sym__concat] = ACTIONS(223), + [anon_sym_esac] = ACTIONS(2060), + [anon_sym_PIPE] = ACTIONS(2060), + [anon_sym_SEMI_SEMI] = ACTIONS(2060), + [anon_sym_PIPE_AMP] = ACTIONS(2060), + [anon_sym_AMP_AMP] = ACTIONS(2060), + [anon_sym_PIPE_PIPE] = ACTIONS(2060), + [anon_sym_LT] = ACTIONS(2060), + [anon_sym_GT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2060), + [anon_sym_AMP_GT] = ACTIONS(2060), + [anon_sym_AMP_GT_GT] = ACTIONS(2060), + [anon_sym_LT_AMP] = ACTIONS(2060), + [anon_sym_GT_AMP] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_LT_LT_DASH] = ACTIONS(2060), + [anon_sym_LT_LT_LT] = ACTIONS(2060), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6349), - [anon_sym_STAR] = ACTIONS(6345), - [anon_sym_AT] = ACTIONS(6345), - [anon_sym_QMARK] = ACTIONS(6345), - [anon_sym_0] = ACTIONS(6351), - [anon_sym__] = ACTIONS(6351), + [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_LF] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2060), }, - [2561] = { - [sym_for_statement] = STATE(2758), - [sym_while_statement] = STATE(2758), - [sym_if_statement] = STATE(2758), - [sym_case_statement] = STATE(2758), - [sym_function_definition] = STATE(2758), - [sym_subshell] = STATE(2758), - [sym_pipeline] = STATE(2758), - [sym_list] = STATE(2758), - [sym_negated_command] = STATE(2758), - [sym_test_command] = STATE(2758), - [sym_declaration_command] = STATE(2758), - [sym_unset_command] = STATE(2758), - [sym_command] = STATE(2758), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2759), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [2562] = { - [sym_for_statement] = STATE(2760), - [sym_while_statement] = STATE(2760), - [sym_if_statement] = STATE(2760), - [sym_case_statement] = STATE(2760), - [sym_function_definition] = STATE(2760), - [sym_subshell] = STATE(2760), - [sym_pipeline] = STATE(2760), - [sym_list] = STATE(2760), - [sym_negated_command] = STATE(2760), - [sym_test_command] = STATE(2760), - [sym_declaration_command] = STATE(2760), - [sym_unset_command] = STATE(2760), - [sym_command] = STATE(2760), - [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(2761), - [sym_subscript] = STATE(183), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(178), - [sym_simple_expansion] = STATE(178), - [sym_string_expansion] = STATE(178), - [sym_expansion] = STATE(178), - [sym_command_substitution] = STATE(178), - [sym_process_substitution] = STATE(178), - [aux_sym_command_repeat1] = STATE(184), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(303), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(305), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_typeset] = ACTIONS(315), - [anon_sym_export] = ACTIONS(315), - [anon_sym_readonly] = ACTIONS(315), - [anon_sym_local] = ACTIONS(315), - [anon_sym_unset] = ACTIONS(317), - [anon_sym_unsetenv] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), - }, - [2563] = { - [sym_for_statement] = STATE(2762), - [sym_while_statement] = STATE(2762), - [sym_if_statement] = STATE(2762), - [sym_case_statement] = STATE(2762), - [sym_function_definition] = STATE(2762), - [sym_subshell] = STATE(2762), - [sym_pipeline] = STATE(2762), - [sym_list] = STATE(2762), - [sym_negated_command] = STATE(2762), - [sym_test_command] = STATE(2762), - [sym_declaration_command] = STATE(2762), - [sym_unset_command] = STATE(2762), - [sym_command] = STATE(2762), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2763), - [sym_subscript] = STATE(166), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(167), - [sym_string] = STATE(157), - [sym_simple_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_expansion] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym_declare] = ACTIONS(281), - [anon_sym_typeset] = ACTIONS(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(281), - [anon_sym_local] = ACTIONS(281), - [anon_sym_unset] = ACTIONS(283), - [anon_sym_unsetenv] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(297), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), - }, - [2564] = { - [aux_sym_concatenation_repeat1] = STATE(2747), - [sym__simple_heredoc_body] = ACTIONS(2070), - [sym__heredoc_body_beginning] = ACTIONS(2070), - [sym_file_descriptor] = ACTIONS(2070), - [sym__concat] = ACTIONS(6331), - [anon_sym_esac] = ACTIONS(2072), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_SEMI_SEMI] = ACTIONS(2072), - [anon_sym_PIPE_AMP] = ACTIONS(2072), - [anon_sym_AMP_AMP] = ACTIONS(2072), - [anon_sym_PIPE_PIPE] = ACTIONS(2072), - [anon_sym_LT] = ACTIONS(2072), - [anon_sym_GT] = ACTIONS(2072), - [anon_sym_GT_GT] = ACTIONS(2072), - [anon_sym_AMP_GT] = ACTIONS(2072), - [anon_sym_AMP_GT_GT] = ACTIONS(2072), - [anon_sym_LT_AMP] = ACTIONS(2072), - [anon_sym_GT_AMP] = ACTIONS(2072), - [anon_sym_LT_LT] = ACTIONS(2072), - [anon_sym_LT_LT_DASH] = ACTIONS(2072), - [anon_sym_LT_LT_LT] = ACTIONS(2072), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_LF] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(2072), - }, - [2565] = { - [aux_sym_concatenation_repeat1] = STATE(2747), - [sym__simple_heredoc_body] = ACTIONS(2074), - [sym__heredoc_body_beginning] = ACTIONS(2074), - [sym_file_descriptor] = ACTIONS(2074), - [sym__concat] = ACTIONS(6331), - [anon_sym_esac] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_SEMI_SEMI] = ACTIONS(2076), - [anon_sym_PIPE_AMP] = ACTIONS(2076), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_GT_GT] = ACTIONS(2076), - [anon_sym_AMP_GT] = ACTIONS(2076), - [anon_sym_AMP_GT_GT] = ACTIONS(2076), - [anon_sym_LT_AMP] = ACTIONS(2076), - [anon_sym_GT_AMP] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(2076), - [anon_sym_LT_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT_LT] = ACTIONS(2076), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2076), - }, - [2566] = { - [sym_file_redirect] = STATE(2566), - [sym_heredoc_redirect] = STATE(2566), - [sym_herestring_redirect] = STATE(2566), - [aux_sym_while_statement_repeat1] = STATE(2566), - [sym__simple_heredoc_body] = ACTIONS(2082), - [sym__heredoc_body_beginning] = ACTIONS(2082), - [sym_file_descriptor] = ACTIONS(6353), - [anon_sym_esac] = ACTIONS(2087), - [anon_sym_PIPE] = ACTIONS(2087), - [anon_sym_SEMI_SEMI] = ACTIONS(2087), - [anon_sym_PIPE_AMP] = ACTIONS(2087), - [anon_sym_AMP_AMP] = ACTIONS(2087), - [anon_sym_PIPE_PIPE] = ACTIONS(2087), - [anon_sym_LT] = ACTIONS(6356), - [anon_sym_GT] = ACTIONS(6356), - [anon_sym_GT_GT] = ACTIONS(6356), - [anon_sym_AMP_GT] = ACTIONS(6356), - [anon_sym_AMP_GT_GT] = ACTIONS(6356), - [anon_sym_LT_AMP] = ACTIONS(6356), - [anon_sym_GT_AMP] = ACTIONS(6356), - [anon_sym_LT_LT] = ACTIONS(2092), - [anon_sym_LT_LT_DASH] = ACTIONS(2092), - [anon_sym_LT_LT_LT] = ACTIONS(6359), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym_LF] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2087), - }, - [2567] = { - [sym_file_redirect] = STATE(2566), - [sym_heredoc_redirect] = STATE(2566), - [sym_heredoc_body] = STATE(993), - [sym_herestring_redirect] = STATE(2566), - [aux_sym_while_statement_repeat1] = STATE(2566), - [sym__simple_heredoc_body] = ACTIONS(337), - [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(5332), - [anon_sym_esac] = ACTIONS(2078), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_SEMI_SEMI] = ACTIONS(2078), - [anon_sym_PIPE_AMP] = ACTIONS(2078), - [anon_sym_AMP_AMP] = ACTIONS(2078), - [anon_sym_PIPE_PIPE] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(5336), - [anon_sym_GT] = ACTIONS(5336), - [anon_sym_GT_GT] = ACTIONS(5336), - [anon_sym_AMP_GT] = ACTIONS(5336), - [anon_sym_AMP_GT_GT] = ACTIONS(5336), - [anon_sym_LT_AMP] = ACTIONS(5336), - [anon_sym_GT_AMP] = ACTIONS(5336), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(5338), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_LF] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2078), - }, - [2568] = { - [sym_concatenation] = STATE(2568), - [sym_string] = STATE(2300), - [sym_simple_expansion] = STATE(2300), - [sym_string_expansion] = STATE(2300), - [sym_expansion] = STATE(2300), - [sym_command_substitution] = STATE(2300), - [sym_process_substitution] = STATE(2300), - [aux_sym_command_repeat2] = STATE(2568), + [2411] = { + [aux_sym_concatenation_repeat1] = STATE(2550), [sym__simple_heredoc_body] = ACTIONS(2062), [sym__heredoc_body_beginning] = ACTIONS(2062), [sym_file_descriptor] = ACTIONS(2062), + [sym__concat] = ACTIONS(223), [anon_sym_esac] = ACTIONS(2064), [anon_sym_PIPE] = ACTIONS(2064), [anon_sym_SEMI_SEMI] = ACTIONS(2064), [anon_sym_PIPE_AMP] = ACTIONS(2064), [anon_sym_AMP_AMP] = ACTIONS(2064), [anon_sym_PIPE_PIPE] = ACTIONS(2064), - [anon_sym_EQ_TILDE] = ACTIONS(6362), - [anon_sym_EQ_EQ] = ACTIONS(6362), [anon_sym_LT] = ACTIONS(2064), [anon_sym_GT] = ACTIONS(2064), [anon_sym_GT_GT] = ACTIONS(2064), @@ -68545,217 +61621,123 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(2064), [anon_sym_LT_LT_DASH] = ACTIONS(2064), [anon_sym_LT_LT_LT] = ACTIONS(2064), - [sym__special_characters] = ACTIONS(6365), - [anon_sym_DQUOTE] = ACTIONS(6368), - [anon_sym_DOLLAR] = ACTIONS(6371), - [sym_raw_string] = ACTIONS(6374), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6377), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6380), - [anon_sym_BQUOTE] = ACTIONS(6383), - [anon_sym_LT_LPAREN] = ACTIONS(6386), - [anon_sym_GT_LPAREN] = ACTIONS(6386), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(6374), [anon_sym_SEMI] = ACTIONS(2064), [anon_sym_LF] = ACTIONS(2062), [anon_sym_AMP] = ACTIONS(2064), }, - [2569] = { - [sym_file_descriptor] = ACTIONS(951), - [sym_variable_name] = ACTIONS(951), - [anon_sym_for] = ACTIONS(953), - [anon_sym_while] = ACTIONS(953), - [anon_sym_if] = ACTIONS(953), - [anon_sym_case] = ACTIONS(953), - [anon_sym_esac] = ACTIONS(6389), - [anon_sym_SEMI_SEMI] = ACTIONS(951), - [anon_sym_function] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_BANG] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_LBRACK_LBRACK] = ACTIONS(951), - [anon_sym_declare] = ACTIONS(953), - [anon_sym_typeset] = ACTIONS(953), - [anon_sym_export] = ACTIONS(953), - [anon_sym_readonly] = ACTIONS(953), - [anon_sym_local] = ACTIONS(953), - [anon_sym_unset] = ACTIONS(953), - [anon_sym_unsetenv] = ACTIONS(953), - [anon_sym_LT] = ACTIONS(953), - [anon_sym_GT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_AMP_GT] = ACTIONS(953), - [anon_sym_AMP_GT_GT] = ACTIONS(951), - [anon_sym_LT_AMP] = ACTIONS(951), - [anon_sym_GT_AMP] = ACTIONS(951), - [sym__special_characters] = ACTIONS(6391), - [anon_sym_DQUOTE] = ACTIONS(6393), - [anon_sym_DOLLAR] = ACTIONS(6391), - [sym_raw_string] = ACTIONS(6393), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6393), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6393), - [anon_sym_BQUOTE] = ACTIONS(6393), - [anon_sym_LT_LPAREN] = ACTIONS(6393), - [anon_sym_GT_LPAREN] = ACTIONS(6393), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6391), - }, - [2570] = { - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(5328), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), + [2412] = { + [sym_file_redirect] = STATE(2412), + [sym_heredoc_redirect] = STATE(2412), + [sym_herestring_redirect] = STATE(2412), + [aux_sym_while_statement_repeat1] = STATE(2412), + [sym__simple_heredoc_body] = ACTIONS(2070), + [sym__heredoc_body_beginning] = ACTIONS(2070), + [sym_file_descriptor] = ACTIONS(5943), + [anon_sym_esac] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_SEMI_SEMI] = ACTIONS(2075), + [anon_sym_PIPE_AMP] = ACTIONS(2075), + [anon_sym_AMP_AMP] = ACTIONS(2075), + [anon_sym_PIPE_PIPE] = ACTIONS(2075), + [anon_sym_LT] = ACTIONS(5946), + [anon_sym_GT] = ACTIONS(5946), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_AMP_GT] = ACTIONS(5946), + [anon_sym_AMP_GT_GT] = ACTIONS(5946), + [anon_sym_LT_AMP] = ACTIONS(5946), + [anon_sym_GT_AMP] = ACTIONS(5946), + [anon_sym_LT_LT] = ACTIONS(2080), + [anon_sym_LT_LT_DASH] = ACTIONS(2080), + [anon_sym_LT_LT_LT] = ACTIONS(5949), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5328), - [anon_sym_LF] = ACTIONS(5330), - [anon_sym_AMP] = ACTIONS(5328), + [anon_sym_SEMI] = ACTIONS(2075), + [anon_sym_LF] = ACTIONS(2070), + [anon_sym_AMP] = ACTIONS(2075), }, - [2571] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(5328), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(5328), - [anon_sym_LF] = ACTIONS(5330), - [anon_sym_AMP] = ACTIONS(5328), - }, - [2572] = { - [sym_file_redirect] = STATE(2764), - [sym_heredoc_redirect] = STATE(2764), - [sym_heredoc_body] = STATE(993), - [sym_herestring_redirect] = STATE(2764), - [sym_concatenation] = STATE(2568), - [sym_string] = STATE(2300), - [sym_simple_expansion] = STATE(2300), - [sym_string_expansion] = STATE(2300), - [sym_expansion] = STATE(2300), - [sym_command_substitution] = STATE(2300), - [sym_process_substitution] = STATE(2300), - [aux_sym_while_statement_repeat1] = STATE(2764), - [aux_sym_command_repeat2] = STATE(2568), + [2413] = { + [sym_file_redirect] = STATE(2412), + [sym_heredoc_redirect] = STATE(2412), + [sym_heredoc_body] = STATE(983), + [sym_herestring_redirect] = STATE(2412), + [aux_sym_while_statement_repeat1] = STATE(2412), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(5332), - [anon_sym_esac] = ACTIONS(2078), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_SEMI_SEMI] = ACTIONS(2078), - [anon_sym_PIPE_AMP] = ACTIONS(2078), - [anon_sym_AMP_AMP] = ACTIONS(2078), - [anon_sym_PIPE_PIPE] = ACTIONS(2078), - [anon_sym_EQ_TILDE] = ACTIONS(5334), - [anon_sym_EQ_EQ] = ACTIONS(5334), - [anon_sym_LT] = ACTIONS(5336), - [anon_sym_GT] = ACTIONS(5336), - [anon_sym_GT_GT] = ACTIONS(5336), - [anon_sym_AMP_GT] = ACTIONS(5336), - [anon_sym_AMP_GT_GT] = ACTIONS(5336), - [anon_sym_LT_AMP] = ACTIONS(5336), - [anon_sym_GT_AMP] = ACTIONS(5336), + [sym_file_descriptor] = ACTIONS(5127), + [anon_sym_esac] = ACTIONS(2066), + [anon_sym_PIPE] = ACTIONS(2066), + [anon_sym_SEMI_SEMI] = ACTIONS(2066), + [anon_sym_PIPE_AMP] = ACTIONS(2066), + [anon_sym_AMP_AMP] = ACTIONS(2066), + [anon_sym_PIPE_PIPE] = ACTIONS(2066), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_GT_GT] = ACTIONS(5131), + [anon_sym_AMP_GT] = ACTIONS(5131), + [anon_sym_AMP_GT_GT] = ACTIONS(5131), + [anon_sym_LT_AMP] = ACTIONS(5131), + [anon_sym_GT_AMP] = ACTIONS(5131), [anon_sym_LT_LT] = ACTIONS(349), [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(5338), - [sym__special_characters] = ACTIONS(5340), - [anon_sym_DQUOTE] = ACTIONS(5342), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(5344), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5348), - [anon_sym_BQUOTE] = ACTIONS(5350), - [anon_sym_LT_LPAREN] = ACTIONS(5352), - [anon_sym_GT_LPAREN] = ACTIONS(5352), + [anon_sym_LT_LT_LT] = ACTIONS(5133), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5344), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_LF] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2078), + [anon_sym_SEMI] = ACTIONS(2066), + [anon_sym_LF] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2066), }, - [2573] = { - [anon_sym_esac] = ACTIONS(6389), - [sym__special_characters] = ACTIONS(6393), - [anon_sym_DQUOTE] = ACTIONS(6393), - [anon_sym_DOLLAR] = ACTIONS(6391), - [sym_raw_string] = ACTIONS(6393), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6393), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6393), - [anon_sym_BQUOTE] = ACTIONS(6393), - [anon_sym_LT_LPAREN] = ACTIONS(6393), - [anon_sym_GT_LPAREN] = ACTIONS(6393), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6391), - }, - [2574] = { - [anon_sym_esac] = ACTIONS(6389), - [anon_sym_PIPE] = ACTIONS(5322), - [anon_sym_SEMI_SEMI] = ACTIONS(6395), - [anon_sym_PIPE_AMP] = ACTIONS(5322), - [anon_sym_AMP_AMP] = ACTIONS(5326), - [anon_sym_PIPE_PIPE] = ACTIONS(5326), + [2414] = { + [sym_concatenation] = STATE(2414), + [sym_string] = STATE(2191), + [sym_simple_expansion] = STATE(2191), + [sym_string_expansion] = STATE(2191), + [sym_expansion] = STATE(2191), + [sym_command_substitution] = STATE(2191), + [sym_process_substitution] = STATE(2191), + [aux_sym_command_repeat2] = STATE(2414), + [sym__simple_heredoc_body] = ACTIONS(2050), + [sym__heredoc_body_beginning] = ACTIONS(2050), + [sym_file_descriptor] = ACTIONS(2050), + [anon_sym_esac] = ACTIONS(2052), + [anon_sym_PIPE] = ACTIONS(2052), + [anon_sym_SEMI_SEMI] = ACTIONS(2052), + [anon_sym_PIPE_AMP] = ACTIONS(2052), + [anon_sym_AMP_AMP] = ACTIONS(2052), + [anon_sym_PIPE_PIPE] = ACTIONS(2052), + [anon_sym_EQ_TILDE] = ACTIONS(5952), + [anon_sym_EQ_EQ] = ACTIONS(5952), + [anon_sym_LT] = ACTIONS(2052), + [anon_sym_GT] = ACTIONS(2052), + [anon_sym_GT_GT] = ACTIONS(2052), + [anon_sym_AMP_GT] = ACTIONS(2052), + [anon_sym_AMP_GT_GT] = ACTIONS(2052), + [anon_sym_LT_AMP] = ACTIONS(2052), + [anon_sym_GT_AMP] = ACTIONS(2052), + [anon_sym_LT_LT] = ACTIONS(2052), + [anon_sym_LT_LT_DASH] = ACTIONS(2052), + [anon_sym_LT_LT_LT] = ACTIONS(2052), + [sym__special_characters] = ACTIONS(5955), + [anon_sym_DQUOTE] = ACTIONS(2092), + [anon_sym_DOLLAR] = ACTIONS(2095), + [sym_raw_string] = ACTIONS(5958), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2101), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2104), + [anon_sym_BQUOTE] = ACTIONS(2107), + [anon_sym_LT_LPAREN] = ACTIONS(2110), + [anon_sym_GT_LPAREN] = ACTIONS(2110), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5328), - [anon_sym_LF] = ACTIONS(5330), - [anon_sym_AMP] = ACTIONS(5328), + [sym_word] = ACTIONS(5958), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_LF] = ACTIONS(2050), + [anon_sym_AMP] = ACTIONS(2052), }, - [2575] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_esac] = ACTIONS(6389), - [anon_sym_PIPE] = ACTIONS(5322), - [anon_sym_SEMI_SEMI] = ACTIONS(6395), - [anon_sym_PIPE_AMP] = ACTIONS(5322), - [anon_sym_AMP_AMP] = ACTIONS(5326), - [anon_sym_PIPE_PIPE] = ACTIONS(5326), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(5328), - [anon_sym_LF] = ACTIONS(5330), - [anon_sym_AMP] = ACTIONS(5328), - }, - [2576] = { + [2415] = { [sym_file_descriptor] = ACTIONS(951), [sym_variable_name] = ACTIONS(951), [anon_sym_for] = ACTIONS(953), [anon_sym_while] = ACTIONS(953), [anon_sym_if] = ACTIONS(953), [anon_sym_case] = ACTIONS(953), - [anon_sym_esac] = ACTIONS(6397), + [anon_sym_esac] = ACTIONS(5961), [anon_sym_SEMI_SEMI] = ACTIONS(951), [anon_sym_function] = ACTIONS(953), [anon_sym_LPAREN] = ACTIONS(951), @@ -68776,53 +61758,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(951), [anon_sym_LT_AMP] = ACTIONS(951), [anon_sym_GT_AMP] = ACTIONS(951), - [sym__special_characters] = ACTIONS(6399), - [anon_sym_DQUOTE] = ACTIONS(6401), - [anon_sym_DOLLAR] = ACTIONS(6399), - [sym_raw_string] = ACTIONS(6401), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6401), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6401), - [anon_sym_BQUOTE] = ACTIONS(6401), - [anon_sym_LT_LPAREN] = ACTIONS(6401), - [anon_sym_GT_LPAREN] = ACTIONS(6401), + [sym__special_characters] = ACTIONS(5963), + [anon_sym_DQUOTE] = ACTIONS(5965), + [anon_sym_DOLLAR] = ACTIONS(5963), + [sym_raw_string] = ACTIONS(5965), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5965), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5965), + [anon_sym_BQUOTE] = ACTIONS(5965), + [anon_sym_LT_LPAREN] = ACTIONS(5965), + [anon_sym_GT_LPAREN] = ACTIONS(5965), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6399), + [sym_word] = ACTIONS(5963), }, - [2577] = { - [anon_sym_esac] = ACTIONS(6397), - [sym__special_characters] = ACTIONS(6401), - [anon_sym_DQUOTE] = ACTIONS(6401), - [anon_sym_DOLLAR] = ACTIONS(6399), - [sym_raw_string] = ACTIONS(6401), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6401), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6401), - [anon_sym_BQUOTE] = ACTIONS(6401), - [anon_sym_LT_LPAREN] = ACTIONS(6401), - [anon_sym_GT_LPAREN] = ACTIONS(6401), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6399), - }, - [2578] = { - [anon_sym_esac] = ACTIONS(6397), - [anon_sym_PIPE] = ACTIONS(5322), - [anon_sym_SEMI_SEMI] = ACTIONS(6403), - [anon_sym_PIPE_AMP] = ACTIONS(5322), - [anon_sym_AMP_AMP] = ACTIONS(5326), - [anon_sym_PIPE_PIPE] = ACTIONS(5326), + [2416] = { + [sym_file_redirect] = STATE(2551), + [sym_heredoc_redirect] = STATE(2551), + [sym_heredoc_body] = STATE(983), + [sym_herestring_redirect] = STATE(2551), + [sym_concatenation] = STATE(2414), + [sym_string] = STATE(2191), + [sym_simple_expansion] = STATE(2191), + [sym_string_expansion] = STATE(2191), + [sym_expansion] = STATE(2191), + [sym_command_substitution] = STATE(2191), + [sym_process_substitution] = STATE(2191), + [aux_sym_while_statement_repeat1] = STATE(2551), + [aux_sym_command_repeat2] = STATE(2414), + [sym__simple_heredoc_body] = ACTIONS(337), + [sym__heredoc_body_beginning] = ACTIONS(339), + [sym_file_descriptor] = ACTIONS(5127), + [anon_sym_esac] = ACTIONS(2066), + [anon_sym_PIPE] = ACTIONS(2066), + [anon_sym_SEMI_SEMI] = ACTIONS(2066), + [anon_sym_PIPE_AMP] = ACTIONS(2066), + [anon_sym_AMP_AMP] = ACTIONS(2066), + [anon_sym_PIPE_PIPE] = ACTIONS(2066), + [anon_sym_EQ_TILDE] = ACTIONS(5129), + [anon_sym_EQ_EQ] = ACTIONS(5129), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_GT_GT] = ACTIONS(5131), + [anon_sym_AMP_GT] = ACTIONS(5131), + [anon_sym_AMP_GT_GT] = ACTIONS(5131), + [anon_sym_LT_AMP] = ACTIONS(5131), + [anon_sym_GT_AMP] = ACTIONS(5131), + [anon_sym_LT_LT] = ACTIONS(349), + [anon_sym_LT_LT_DASH] = ACTIONS(349), + [anon_sym_LT_LT_LT] = ACTIONS(5133), + [sym__special_characters] = ACTIONS(5135), + [anon_sym_DQUOTE] = ACTIONS(355), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5137), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(361), + [anon_sym_BQUOTE] = ACTIONS(363), + [anon_sym_LT_LPAREN] = ACTIONS(365), + [anon_sym_GT_LPAREN] = ACTIONS(365), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5328), - [anon_sym_LF] = ACTIONS(5330), - [anon_sym_AMP] = ACTIONS(5328), + [sym_word] = ACTIONS(5137), + [anon_sym_SEMI] = ACTIONS(2066), + [anon_sym_LF] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2066), }, - [2579] = { + [2417] = { + [anon_sym_esac] = ACTIONS(5961), + [sym__special_characters] = ACTIONS(5965), + [anon_sym_DQUOTE] = ACTIONS(5965), + [anon_sym_DOLLAR] = ACTIONS(5963), + [sym_raw_string] = ACTIONS(5965), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5965), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5965), + [anon_sym_BQUOTE] = ACTIONS(5965), + [anon_sym_LT_LPAREN] = ACTIONS(5965), + [anon_sym_GT_LPAREN] = ACTIONS(5965), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5963), + }, + [2418] = { + [anon_sym_esac] = ACTIONS(5961), + [anon_sym_PIPE] = ACTIONS(5121), + [anon_sym_SEMI_SEMI] = ACTIONS(5967), + [anon_sym_PIPE_AMP] = ACTIONS(5121), + [anon_sym_AMP_AMP] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5125), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(331), + }, + [2419] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [anon_sym_esac] = ACTIONS(6397), - [anon_sym_PIPE] = ACTIONS(5322), - [anon_sym_SEMI_SEMI] = ACTIONS(6403), - [anon_sym_PIPE_AMP] = ACTIONS(5322), - [anon_sym_AMP_AMP] = ACTIONS(5326), - [anon_sym_PIPE_PIPE] = ACTIONS(5326), + [anon_sym_esac] = ACTIONS(5961), + [anon_sym_PIPE] = ACTIONS(5121), + [anon_sym_SEMI_SEMI] = ACTIONS(5967), + [anon_sym_PIPE_AMP] = ACTIONS(5121), + [anon_sym_AMP_AMP] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5125), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(371), @@ -68841,26 +61873,123 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(371), [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(5328), - [anon_sym_LF] = ACTIONS(5330), - [anon_sym_AMP] = ACTIONS(5328), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(331), }, - [2580] = { - [sym__special_characters] = ACTIONS(5254), - [anon_sym_DQUOTE] = ACTIONS(5254), - [anon_sym_DOLLAR] = ACTIONS(5256), - [sym_raw_string] = ACTIONS(5254), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5254), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5254), - [anon_sym_BQUOTE] = ACTIONS(5254), - [anon_sym_LT_LPAREN] = ACTIONS(5254), - [anon_sym_GT_LPAREN] = ACTIONS(5254), + [2420] = { + [sym_file_descriptor] = ACTIONS(951), + [sym_variable_name] = ACTIONS(951), + [anon_sym_for] = ACTIONS(953), + [anon_sym_while] = ACTIONS(953), + [anon_sym_if] = ACTIONS(953), + [anon_sym_case] = ACTIONS(953), + [anon_sym_esac] = ACTIONS(5969), + [anon_sym_SEMI_SEMI] = ACTIONS(951), + [anon_sym_function] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_LBRACK] = ACTIONS(953), + [anon_sym_LBRACK_LBRACK] = ACTIONS(951), + [anon_sym_declare] = ACTIONS(953), + [anon_sym_typeset] = ACTIONS(953), + [anon_sym_export] = ACTIONS(953), + [anon_sym_readonly] = ACTIONS(953), + [anon_sym_local] = ACTIONS(953), + [anon_sym_unset] = ACTIONS(953), + [anon_sym_unsetenv] = ACTIONS(953), + [anon_sym_LT] = ACTIONS(953), + [anon_sym_GT] = ACTIONS(953), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_AMP_GT] = ACTIONS(953), + [anon_sym_AMP_GT_GT] = ACTIONS(951), + [anon_sym_LT_AMP] = ACTIONS(951), + [anon_sym_GT_AMP] = ACTIONS(951), + [sym__special_characters] = ACTIONS(5971), + [anon_sym_DQUOTE] = ACTIONS(5973), + [anon_sym_DOLLAR] = ACTIONS(5971), + [sym_raw_string] = ACTIONS(5973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5973), + [anon_sym_BQUOTE] = ACTIONS(5973), + [anon_sym_LT_LPAREN] = ACTIONS(5973), + [anon_sym_GT_LPAREN] = ACTIONS(5973), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5254), + [sym_word] = ACTIONS(5971), }, - [2581] = { + [2421] = { + [anon_sym_esac] = ACTIONS(5969), + [sym__special_characters] = ACTIONS(5973), + [anon_sym_DQUOTE] = ACTIONS(5973), + [anon_sym_DOLLAR] = ACTIONS(5971), + [sym_raw_string] = ACTIONS(5973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5973), + [anon_sym_BQUOTE] = ACTIONS(5973), + [anon_sym_LT_LPAREN] = ACTIONS(5973), + [anon_sym_GT_LPAREN] = ACTIONS(5973), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5971), + }, + [2422] = { + [anon_sym_esac] = ACTIONS(5969), + [anon_sym_PIPE] = ACTIONS(5121), + [anon_sym_SEMI_SEMI] = ACTIONS(5975), + [anon_sym_PIPE_AMP] = ACTIONS(5121), + [anon_sym_AMP_AMP] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5125), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(331), + }, + [2423] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_esac] = ACTIONS(5969), + [anon_sym_PIPE] = ACTIONS(5121), + [anon_sym_SEMI_SEMI] = ACTIONS(5975), + [anon_sym_PIPE_AMP] = ACTIONS(5121), + [anon_sym_AMP_AMP] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5125), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_AMP_GT] = ACTIONS(371), + [anon_sym_AMP_GT_GT] = ACTIONS(371), + [anon_sym_LT_AMP] = ACTIONS(371), + [anon_sym_GT_AMP] = ACTIONS(371), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(371), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(371), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(331), + }, + [2424] = { + [sym__special_characters] = ACTIONS(5075), + [anon_sym_DQUOTE] = ACTIONS(5075), + [anon_sym_DOLLAR] = ACTIONS(5077), + [sym_raw_string] = ACTIONS(5075), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5075), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5075), + [anon_sym_BQUOTE] = ACTIONS(5075), + [anon_sym_LT_LPAREN] = ACTIONS(5075), + [anon_sym_GT_LPAREN] = ACTIONS(5075), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5075), + }, + [2425] = { [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6405), + [anon_sym_SEMI_SEMI] = ACTIONS(5977), [anon_sym_PIPE_AMP] = ACTIONS(329), [anon_sym_AMP_AMP] = ACTIONS(333), [anon_sym_PIPE_PIPE] = ACTIONS(333), @@ -68869,11 +61998,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(335), [anon_sym_AMP] = ACTIONS(331), }, - [2582] = { + [2426] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6405), + [anon_sym_SEMI_SEMI] = ACTIONS(5977), [anon_sym_PIPE_AMP] = ACTIONS(329), [anon_sym_AMP_AMP] = ACTIONS(333), [anon_sym_PIPE_PIPE] = ACTIONS(333), @@ -68899,23 +62028,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(335), [anon_sym_AMP] = ACTIONS(331), }, - [2583] = { - [sym__terminated_statement] = STATE(2771), - [sym_for_statement] = STATE(2769), - [sym_while_statement] = STATE(2769), - [sym_if_statement] = STATE(2769), - [sym_case_statement] = STATE(2769), - [sym_function_definition] = STATE(2769), - [sym_subshell] = STATE(2769), - [sym_pipeline] = STATE(2769), - [sym_list] = STATE(2769), - [sym_negated_command] = STATE(2769), - [sym_test_command] = STATE(2769), - [sym_declaration_command] = STATE(2769), - [sym_unset_command] = STATE(2769), - [sym_command] = STATE(2769), + [2427] = { + [sym__terminated_statement] = STATE(2558), + [sym_for_statement] = STATE(2556), + [sym_while_statement] = STATE(2556), + [sym_if_statement] = STATE(2556), + [sym_case_statement] = STATE(2556), + [sym_function_definition] = STATE(2556), + [sym_subshell] = STATE(2556), + [sym_pipeline] = STATE(2556), + [sym_list] = STATE(2556), + [sym_negated_command] = STATE(2556), + [sym_test_command] = STATE(2556), + [sym_declaration_command] = STATE(2556), + [sym_unset_command] = STATE(2556), + [sym_command] = STATE(2556), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2770), + [sym_variable_assignment] = STATE(2557), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -68925,7 +62054,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2771), + [aux_sym_program_repeat1] = STATE(2558), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), @@ -68933,7 +62062,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(13), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(6407), + [anon_sym_SEMI_SEMI] = ACTIONS(5979), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -68965,23 +62094,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [2584] = { - [sym__terminated_statement] = STATE(2772), - [sym_for_statement] = STATE(2769), - [sym_while_statement] = STATE(2769), - [sym_if_statement] = STATE(2769), - [sym_case_statement] = STATE(2769), - [sym_function_definition] = STATE(2769), - [sym_subshell] = STATE(2769), - [sym_pipeline] = STATE(2769), - [sym_list] = STATE(2769), - [sym_negated_command] = STATE(2769), - [sym_test_command] = STATE(2769), - [sym_declaration_command] = STATE(2769), - [sym_unset_command] = STATE(2769), - [sym_command] = STATE(2769), + [2428] = { + [sym__terminated_statement] = STATE(2559), + [sym_for_statement] = STATE(2556), + [sym_while_statement] = STATE(2556), + [sym_if_statement] = STATE(2556), + [sym_case_statement] = STATE(2556), + [sym_function_definition] = STATE(2556), + [sym_subshell] = STATE(2556), + [sym_pipeline] = STATE(2556), + [sym_list] = STATE(2556), + [sym_negated_command] = STATE(2556), + [sym_test_command] = STATE(2556), + [sym_declaration_command] = STATE(2556), + [sym_unset_command] = STATE(2556), + [sym_command] = STATE(2556), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2770), + [sym_variable_assignment] = STATE(2557), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -68991,7 +62120,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2772), + [aux_sym_program_repeat1] = STATE(2559), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), @@ -68999,7 +62128,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(13), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(6407), + [anon_sym_SEMI_SEMI] = ACTIONS(5979), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -69031,22 +62160,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [2585] = { - [sym__special_characters] = ACTIONS(5363), - [anon_sym_DQUOTE] = ACTIONS(5363), - [anon_sym_DOLLAR] = ACTIONS(5365), - [sym_raw_string] = ACTIONS(5363), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5363), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5363), - [anon_sym_BQUOTE] = ACTIONS(5363), - [anon_sym_LT_LPAREN] = ACTIONS(5363), - [anon_sym_GT_LPAREN] = ACTIONS(5363), + [2429] = { + [sym__special_characters] = ACTIONS(5148), + [anon_sym_DQUOTE] = ACTIONS(5148), + [anon_sym_DOLLAR] = ACTIONS(5150), + [sym_raw_string] = ACTIONS(5148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5148), + [anon_sym_BQUOTE] = ACTIONS(5148), + [anon_sym_LT_LPAREN] = ACTIONS(5148), + [anon_sym_GT_LPAREN] = ACTIONS(5148), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5363), + [sym_word] = ACTIONS(5148), }, - [2586] = { + [2430] = { [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6409), + [anon_sym_SEMI_SEMI] = ACTIONS(5981), [anon_sym_PIPE_AMP] = ACTIONS(329), [anon_sym_AMP_AMP] = ACTIONS(333), [anon_sym_PIPE_PIPE] = ACTIONS(333), @@ -69055,11 +62184,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(335), [anon_sym_AMP] = ACTIONS(331), }, - [2587] = { + [2431] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6409), + [anon_sym_SEMI_SEMI] = ACTIONS(5981), [anon_sym_PIPE_AMP] = ACTIONS(329), [anon_sym_AMP_AMP] = ACTIONS(333), [anon_sym_PIPE_PIPE] = ACTIONS(333), @@ -69085,23 +62214,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(335), [anon_sym_AMP] = ACTIONS(331), }, - [2588] = { - [sym__terminated_statement] = STATE(2771), - [sym_for_statement] = STATE(2775), - [sym_while_statement] = STATE(2775), - [sym_if_statement] = STATE(2775), - [sym_case_statement] = STATE(2775), - [sym_function_definition] = STATE(2775), - [sym_subshell] = STATE(2775), - [sym_pipeline] = STATE(2775), - [sym_list] = STATE(2775), - [sym_negated_command] = STATE(2775), - [sym_test_command] = STATE(2775), - [sym_declaration_command] = STATE(2775), - [sym_unset_command] = STATE(2775), - [sym_command] = STATE(2775), + [2432] = { + [sym__terminated_statement] = STATE(2558), + [sym_for_statement] = STATE(2562), + [sym_while_statement] = STATE(2562), + [sym_if_statement] = STATE(2562), + [sym_case_statement] = STATE(2562), + [sym_function_definition] = STATE(2562), + [sym_subshell] = STATE(2562), + [sym_pipeline] = STATE(2562), + [sym_list] = STATE(2562), + [sym_negated_command] = STATE(2562), + [sym_test_command] = STATE(2562), + [sym_declaration_command] = STATE(2562), + [sym_unset_command] = STATE(2562), + [sym_command] = STATE(2562), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2776), + [sym_variable_assignment] = STATE(2563), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -69111,7 +62240,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2771), + [aux_sym_program_repeat1] = STATE(2558), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), @@ -69119,7 +62248,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(13), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(6411), + [anon_sym_SEMI_SEMI] = ACTIONS(5983), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -69151,23 +62280,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [2589] = { - [sym__terminated_statement] = STATE(2777), - [sym_for_statement] = STATE(2775), - [sym_while_statement] = STATE(2775), - [sym_if_statement] = STATE(2775), - [sym_case_statement] = STATE(2775), - [sym_function_definition] = STATE(2775), - [sym_subshell] = STATE(2775), - [sym_pipeline] = STATE(2775), - [sym_list] = STATE(2775), - [sym_negated_command] = STATE(2775), - [sym_test_command] = STATE(2775), - [sym_declaration_command] = STATE(2775), - [sym_unset_command] = STATE(2775), - [sym_command] = STATE(2775), + [2433] = { + [sym__terminated_statement] = STATE(2564), + [sym_for_statement] = STATE(2562), + [sym_while_statement] = STATE(2562), + [sym_if_statement] = STATE(2562), + [sym_case_statement] = STATE(2562), + [sym_function_definition] = STATE(2562), + [sym_subshell] = STATE(2562), + [sym_pipeline] = STATE(2562), + [sym_list] = STATE(2562), + [sym_negated_command] = STATE(2562), + [sym_test_command] = STATE(2562), + [sym_declaration_command] = STATE(2562), + [sym_unset_command] = STATE(2562), + [sym_command] = STATE(2562), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2776), + [sym_variable_assignment] = STATE(2563), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -69177,7 +62306,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2777), + [aux_sym_program_repeat1] = STATE(2564), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), @@ -69185,7 +62314,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(13), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(6411), + [anon_sym_SEMI_SEMI] = ACTIONS(5983), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -69217,103 +62346,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [2590] = { - [sym_file_descriptor] = ACTIONS(3917), - [sym__concat] = ACTIONS(3917), - [anon_sym_esac] = ACTIONS(3919), - [anon_sym_PIPE] = ACTIONS(3919), - [anon_sym_RPAREN] = ACTIONS(3919), - [anon_sym_SEMI_SEMI] = ACTIONS(3919), - [anon_sym_PIPE_AMP] = ACTIONS(3919), - [anon_sym_AMP_AMP] = ACTIONS(3919), - [anon_sym_PIPE_PIPE] = ACTIONS(3919), - [anon_sym_LT] = ACTIONS(3919), - [anon_sym_GT] = ACTIONS(3919), - [anon_sym_GT_GT] = ACTIONS(3919), - [anon_sym_AMP_GT] = ACTIONS(3919), - [anon_sym_AMP_GT_GT] = ACTIONS(3919), - [anon_sym_LT_AMP] = ACTIONS(3919), - [anon_sym_GT_AMP] = ACTIONS(3919), - [anon_sym_LT_LT] = ACTIONS(3919), - [anon_sym_LT_LT_DASH] = ACTIONS(3919), - [anon_sym_LT_LT_LT] = ACTIONS(3919), + [2434] = { + [sym_file_descriptor] = ACTIONS(3829), + [sym__concat] = ACTIONS(3829), + [anon_sym_esac] = ACTIONS(3831), + [anon_sym_PIPE] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(3831), + [anon_sym_SEMI_SEMI] = ACTIONS(3831), + [anon_sym_PIPE_AMP] = ACTIONS(3831), + [anon_sym_AMP_AMP] = ACTIONS(3831), + [anon_sym_PIPE_PIPE] = ACTIONS(3831), + [anon_sym_LT] = ACTIONS(3831), + [anon_sym_GT] = ACTIONS(3831), + [anon_sym_GT_GT] = ACTIONS(3831), + [anon_sym_AMP_GT] = ACTIONS(3831), + [anon_sym_AMP_GT_GT] = ACTIONS(3831), + [anon_sym_LT_AMP] = ACTIONS(3831), + [anon_sym_GT_AMP] = ACTIONS(3831), + [anon_sym_LT_LT] = ACTIONS(3831), + [anon_sym_LT_LT_DASH] = ACTIONS(3831), + [anon_sym_LT_LT_LT] = ACTIONS(3831), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3919), - [anon_sym_LF] = ACTIONS(3917), - [anon_sym_AMP] = ACTIONS(3919), + [anon_sym_SEMI] = ACTIONS(3831), + [anon_sym_LF] = ACTIONS(3829), + [anon_sym_AMP] = ACTIONS(3831), }, - [2591] = { - [sym_file_descriptor] = ACTIONS(3923), - [sym__concat] = ACTIONS(3923), - [anon_sym_esac] = ACTIONS(3925), - [anon_sym_PIPE] = ACTIONS(3925), - [anon_sym_RPAREN] = ACTIONS(3925), - [anon_sym_SEMI_SEMI] = ACTIONS(3925), - [anon_sym_PIPE_AMP] = ACTIONS(3925), - [anon_sym_AMP_AMP] = ACTIONS(3925), - [anon_sym_PIPE_PIPE] = ACTIONS(3925), - [anon_sym_LT] = ACTIONS(3925), - [anon_sym_GT] = ACTIONS(3925), - [anon_sym_GT_GT] = ACTIONS(3925), - [anon_sym_AMP_GT] = ACTIONS(3925), - [anon_sym_AMP_GT_GT] = ACTIONS(3925), - [anon_sym_LT_AMP] = ACTIONS(3925), - [anon_sym_GT_AMP] = ACTIONS(3925), - [anon_sym_LT_LT] = ACTIONS(3925), - [anon_sym_LT_LT_DASH] = ACTIONS(3925), - [anon_sym_LT_LT_LT] = ACTIONS(3925), + [2435] = { + [sym_file_descriptor] = ACTIONS(3835), + [sym__concat] = ACTIONS(3835), + [anon_sym_esac] = ACTIONS(3837), + [anon_sym_PIPE] = ACTIONS(3837), + [anon_sym_RPAREN] = ACTIONS(3837), + [anon_sym_SEMI_SEMI] = ACTIONS(3837), + [anon_sym_PIPE_AMP] = ACTIONS(3837), + [anon_sym_AMP_AMP] = ACTIONS(3837), + [anon_sym_PIPE_PIPE] = ACTIONS(3837), + [anon_sym_LT] = ACTIONS(3837), + [anon_sym_GT] = ACTIONS(3837), + [anon_sym_GT_GT] = ACTIONS(3837), + [anon_sym_AMP_GT] = ACTIONS(3837), + [anon_sym_AMP_GT_GT] = ACTIONS(3837), + [anon_sym_LT_AMP] = ACTIONS(3837), + [anon_sym_GT_AMP] = ACTIONS(3837), + [anon_sym_LT_LT] = ACTIONS(3837), + [anon_sym_LT_LT_DASH] = ACTIONS(3837), + [anon_sym_LT_LT_LT] = ACTIONS(3837), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3925), - [anon_sym_LF] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_SEMI] = ACTIONS(3837), + [anon_sym_LF] = ACTIONS(3835), + [anon_sym_AMP] = ACTIONS(3837), }, - [2592] = { - [sym_file_descriptor] = ACTIONS(4008), - [sym__concat] = ACTIONS(4008), - [anon_sym_esac] = ACTIONS(4010), - [anon_sym_PIPE] = ACTIONS(4010), - [anon_sym_RPAREN] = ACTIONS(4010), - [anon_sym_SEMI_SEMI] = ACTIONS(4010), - [anon_sym_PIPE_AMP] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_GT_GT] = ACTIONS(4010), - [anon_sym_AMP_GT] = ACTIONS(4010), - [anon_sym_AMP_GT_GT] = ACTIONS(4010), - [anon_sym_LT_AMP] = ACTIONS(4010), - [anon_sym_GT_AMP] = ACTIONS(4010), - [anon_sym_LT_LT] = ACTIONS(4010), - [anon_sym_LT_LT_DASH] = ACTIONS(4010), - [anon_sym_LT_LT_LT] = ACTIONS(4010), + [2436] = { + [sym_file_descriptor] = ACTIONS(3920), + [sym__concat] = ACTIONS(3920), + [anon_sym_esac] = ACTIONS(3922), + [anon_sym_PIPE] = ACTIONS(3922), + [anon_sym_RPAREN] = ACTIONS(3922), + [anon_sym_SEMI_SEMI] = ACTIONS(3922), + [anon_sym_PIPE_AMP] = ACTIONS(3922), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3922), + [anon_sym_LT] = ACTIONS(3922), + [anon_sym_GT] = ACTIONS(3922), + [anon_sym_GT_GT] = ACTIONS(3922), + [anon_sym_AMP_GT] = ACTIONS(3922), + [anon_sym_AMP_GT_GT] = ACTIONS(3922), + [anon_sym_LT_AMP] = ACTIONS(3922), + [anon_sym_GT_AMP] = ACTIONS(3922), + [anon_sym_LT_LT] = ACTIONS(3922), + [anon_sym_LT_LT_DASH] = ACTIONS(3922), + [anon_sym_LT_LT_LT] = ACTIONS(3922), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4010), - [anon_sym_LF] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4010), + [anon_sym_SEMI] = ACTIONS(3922), + [anon_sym_LF] = ACTIONS(3920), + [anon_sym_AMP] = ACTIONS(3922), }, - [2593] = { - [sym_concatenation] = STATE(839), + [2437] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6413), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(5985), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -69321,44 +62450,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2594] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(6415), + [2438] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(5987), [sym_comment] = ACTIONS(53), }, - [2595] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(6417), + [2439] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(5989), [sym_comment] = ACTIONS(53), }, - [2596] = { - [anon_sym_RBRACE] = ACTIONS(6417), + [2440] = { + [anon_sym_RBRACE] = ACTIONS(5989), [sym_comment] = ACTIONS(53), }, - [2597] = { - [sym_concatenation] = STATE(2782), + [2441] = { + [sym_concatenation] = STATE(2569), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2782), - [anon_sym_RBRACE] = ACTIONS(6419), - [anon_sym_EQ] = ACTIONS(6421), + [aux_sym_expansion_repeat1] = STATE(2569), + [anon_sym_RBRACE] = ACTIONS(5991), + [anon_sym_EQ] = ACTIONS(5993), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6423), + [anon_sym_POUND] = ACTIONS(5995), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6421), - [anon_sym_COLON_QMARK] = ACTIONS(6421), - [anon_sym_COLON_DASH] = ACTIONS(6421), - [anon_sym_PERCENT] = ACTIONS(6421), - [anon_sym_DASH] = ACTIONS(6421), + [anon_sym_COLON] = ACTIONS(5993), + [anon_sym_COLON_QMARK] = ACTIONS(5993), + [anon_sym_COLON_DASH] = ACTIONS(5993), + [anon_sym_PERCENT] = ACTIONS(5993), + [anon_sym_DASH] = ACTIONS(5993), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -69366,53 +62495,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2598] = { - [sym_file_descriptor] = ACTIONS(4024), - [sym__concat] = ACTIONS(4024), - [anon_sym_esac] = ACTIONS(4026), - [anon_sym_PIPE] = ACTIONS(4026), - [anon_sym_RPAREN] = ACTIONS(4026), - [anon_sym_SEMI_SEMI] = ACTIONS(4026), - [anon_sym_PIPE_AMP] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [anon_sym_LT] = ACTIONS(4026), - [anon_sym_GT] = ACTIONS(4026), - [anon_sym_GT_GT] = ACTIONS(4026), - [anon_sym_AMP_GT] = ACTIONS(4026), - [anon_sym_AMP_GT_GT] = ACTIONS(4026), - [anon_sym_LT_AMP] = ACTIONS(4026), - [anon_sym_GT_AMP] = ACTIONS(4026), - [anon_sym_LT_LT] = ACTIONS(4026), - [anon_sym_LT_LT_DASH] = ACTIONS(4026), - [anon_sym_LT_LT_LT] = ACTIONS(4026), + [2442] = { + [sym_file_descriptor] = ACTIONS(3936), + [sym__concat] = ACTIONS(3936), + [anon_sym_esac] = ACTIONS(3938), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_RPAREN] = ACTIONS(3938), + [anon_sym_SEMI_SEMI] = ACTIONS(3938), + [anon_sym_PIPE_AMP] = ACTIONS(3938), + [anon_sym_AMP_AMP] = ACTIONS(3938), + [anon_sym_PIPE_PIPE] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_GT_GT] = ACTIONS(3938), + [anon_sym_AMP_GT] = ACTIONS(3938), + [anon_sym_AMP_GT_GT] = ACTIONS(3938), + [anon_sym_LT_AMP] = ACTIONS(3938), + [anon_sym_GT_AMP] = ACTIONS(3938), + [anon_sym_LT_LT] = ACTIONS(3938), + [anon_sym_LT_LT_DASH] = ACTIONS(3938), + [anon_sym_LT_LT_LT] = ACTIONS(3938), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym_LF] = ACTIONS(4024), - [anon_sym_AMP] = ACTIONS(4026), + [anon_sym_SEMI] = ACTIONS(3938), + [anon_sym_LF] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3938), }, - [2599] = { - [sym_concatenation] = STATE(2784), + [2443] = { + [sym_concatenation] = STATE(2571), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2784), - [anon_sym_RBRACE] = ACTIONS(6425), - [anon_sym_EQ] = ACTIONS(6427), + [aux_sym_expansion_repeat1] = STATE(2571), + [anon_sym_RBRACE] = ACTIONS(5997), + [anon_sym_EQ] = ACTIONS(5999), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6429), + [anon_sym_POUND] = ACTIONS(6001), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6427), - [anon_sym_COLON_QMARK] = ACTIONS(6427), - [anon_sym_COLON_DASH] = ACTIONS(6427), - [anon_sym_PERCENT] = ACTIONS(6427), - [anon_sym_DASH] = ACTIONS(6427), + [anon_sym_COLON] = ACTIONS(5999), + [anon_sym_COLON_QMARK] = ACTIONS(5999), + [anon_sym_COLON_DASH] = ACTIONS(5999), + [anon_sym_PERCENT] = ACTIONS(5999), + [anon_sym_DASH] = ACTIONS(5999), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -69420,53 +62549,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2600] = { - [sym_file_descriptor] = ACTIONS(4034), - [sym__concat] = ACTIONS(4034), - [anon_sym_esac] = ACTIONS(4036), - [anon_sym_PIPE] = ACTIONS(4036), - [anon_sym_RPAREN] = ACTIONS(4036), - [anon_sym_SEMI_SEMI] = ACTIONS(4036), - [anon_sym_PIPE_AMP] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [anon_sym_LT] = ACTIONS(4036), - [anon_sym_GT] = ACTIONS(4036), - [anon_sym_GT_GT] = ACTIONS(4036), - [anon_sym_AMP_GT] = ACTIONS(4036), - [anon_sym_AMP_GT_GT] = ACTIONS(4036), - [anon_sym_LT_AMP] = ACTIONS(4036), - [anon_sym_GT_AMP] = ACTIONS(4036), - [anon_sym_LT_LT] = ACTIONS(4036), - [anon_sym_LT_LT_DASH] = ACTIONS(4036), - [anon_sym_LT_LT_LT] = ACTIONS(4036), + [2444] = { + [sym_file_descriptor] = ACTIONS(3946), + [sym__concat] = ACTIONS(3946), + [anon_sym_esac] = ACTIONS(3948), + [anon_sym_PIPE] = ACTIONS(3948), + [anon_sym_RPAREN] = ACTIONS(3948), + [anon_sym_SEMI_SEMI] = ACTIONS(3948), + [anon_sym_PIPE_AMP] = ACTIONS(3948), + [anon_sym_AMP_AMP] = ACTIONS(3948), + [anon_sym_PIPE_PIPE] = ACTIONS(3948), + [anon_sym_LT] = ACTIONS(3948), + [anon_sym_GT] = ACTIONS(3948), + [anon_sym_GT_GT] = ACTIONS(3948), + [anon_sym_AMP_GT] = ACTIONS(3948), + [anon_sym_AMP_GT_GT] = ACTIONS(3948), + [anon_sym_LT_AMP] = ACTIONS(3948), + [anon_sym_GT_AMP] = ACTIONS(3948), + [anon_sym_LT_LT] = ACTIONS(3948), + [anon_sym_LT_LT_DASH] = ACTIONS(3948), + [anon_sym_LT_LT_LT] = ACTIONS(3948), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_LF] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4036), + [anon_sym_SEMI] = ACTIONS(3948), + [anon_sym_LF] = ACTIONS(3946), + [anon_sym_AMP] = ACTIONS(3948), }, - [2601] = { - [sym_concatenation] = STATE(2786), + [2445] = { + [sym_concatenation] = STATE(2573), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2786), - [anon_sym_RBRACE] = ACTIONS(6431), - [anon_sym_EQ] = ACTIONS(6433), + [aux_sym_expansion_repeat1] = STATE(2573), + [anon_sym_RBRACE] = ACTIONS(6003), + [anon_sym_EQ] = ACTIONS(6005), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6435), + [anon_sym_POUND] = ACTIONS(6007), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6433), - [anon_sym_COLON_QMARK] = ACTIONS(6433), - [anon_sym_COLON_DASH] = ACTIONS(6433), - [anon_sym_PERCENT] = ACTIONS(6433), - [anon_sym_DASH] = ACTIONS(6433), + [anon_sym_COLON] = ACTIONS(6005), + [anon_sym_COLON_QMARK] = ACTIONS(6005), + [anon_sym_COLON_DASH] = ACTIONS(6005), + [anon_sym_PERCENT] = ACTIONS(6005), + [anon_sym_DASH] = ACTIONS(6005), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -69474,53 +62603,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2602] = { - [sym_file_descriptor] = ACTIONS(4044), - [sym__concat] = ACTIONS(4044), - [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), + [2446] = { + [sym_file_descriptor] = ACTIONS(3956), + [sym__concat] = ACTIONS(3956), + [anon_sym_esac] = ACTIONS(3958), + [anon_sym_PIPE] = ACTIONS(3958), + [anon_sym_RPAREN] = ACTIONS(3958), + [anon_sym_SEMI_SEMI] = ACTIONS(3958), + [anon_sym_PIPE_AMP] = ACTIONS(3958), + [anon_sym_AMP_AMP] = ACTIONS(3958), + [anon_sym_PIPE_PIPE] = ACTIONS(3958), + [anon_sym_LT] = ACTIONS(3958), + [anon_sym_GT] = ACTIONS(3958), + [anon_sym_GT_GT] = ACTIONS(3958), + [anon_sym_AMP_GT] = ACTIONS(3958), + [anon_sym_AMP_GT_GT] = ACTIONS(3958), + [anon_sym_LT_AMP] = ACTIONS(3958), + [anon_sym_GT_AMP] = ACTIONS(3958), + [anon_sym_LT_LT] = ACTIONS(3958), + [anon_sym_LT_LT_DASH] = ACTIONS(3958), + [anon_sym_LT_LT_LT] = ACTIONS(3958), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4046), - [anon_sym_LF] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4046), + [anon_sym_SEMI] = ACTIONS(3958), + [anon_sym_LF] = ACTIONS(3956), + [anon_sym_AMP] = ACTIONS(3958), }, - [2603] = { - [sym_concatenation] = STATE(839), + [2447] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6437), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6009), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -69528,53 +62657,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2604] = { - [sym_file_descriptor] = ACTIONS(4050), - [sym__concat] = ACTIONS(4050), - [anon_sym_esac] = ACTIONS(4052), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_RPAREN] = ACTIONS(4052), - [anon_sym_SEMI_SEMI] = ACTIONS(4052), - [anon_sym_PIPE_AMP] = ACTIONS(4052), - [anon_sym_AMP_AMP] = ACTIONS(4052), - [anon_sym_PIPE_PIPE] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_GT_GT] = ACTIONS(4052), - [anon_sym_AMP_GT] = ACTIONS(4052), - [anon_sym_AMP_GT_GT] = ACTIONS(4052), - [anon_sym_LT_AMP] = ACTIONS(4052), - [anon_sym_GT_AMP] = ACTIONS(4052), - [anon_sym_LT_LT] = ACTIONS(4052), - [anon_sym_LT_LT_DASH] = ACTIONS(4052), - [anon_sym_LT_LT_LT] = ACTIONS(4052), + [2448] = { + [sym_file_descriptor] = ACTIONS(3962), + [sym__concat] = ACTIONS(3962), + [anon_sym_esac] = ACTIONS(3964), + [anon_sym_PIPE] = ACTIONS(3964), + [anon_sym_RPAREN] = ACTIONS(3964), + [anon_sym_SEMI_SEMI] = ACTIONS(3964), + [anon_sym_PIPE_AMP] = ACTIONS(3964), + [anon_sym_AMP_AMP] = ACTIONS(3964), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_LT] = ACTIONS(3964), + [anon_sym_GT] = ACTIONS(3964), + [anon_sym_GT_GT] = ACTIONS(3964), + [anon_sym_AMP_GT] = ACTIONS(3964), + [anon_sym_AMP_GT_GT] = ACTIONS(3964), + [anon_sym_LT_AMP] = ACTIONS(3964), + [anon_sym_GT_AMP] = ACTIONS(3964), + [anon_sym_LT_LT] = ACTIONS(3964), + [anon_sym_LT_LT_DASH] = ACTIONS(3964), + [anon_sym_LT_LT_LT] = ACTIONS(3964), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4052), + [anon_sym_SEMI] = ACTIONS(3964), + [anon_sym_LF] = ACTIONS(3962), + [anon_sym_AMP] = ACTIONS(3964), }, - [2605] = { - [sym_concatenation] = STATE(839), + [2449] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6439), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6011), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -69582,48 +62711,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2606] = { - [sym__concat] = ACTIONS(4884), - [anon_sym_RBRACE] = ACTIONS(4884), + [2450] = { + [sym__concat] = ACTIONS(4741), + [anon_sym_RBRACE] = ACTIONS(4741), [sym_comment] = ACTIONS(53), }, - [2607] = { - [sym__concat] = ACTIONS(4888), - [anon_sym_RBRACE] = ACTIONS(4888), + [2451] = { + [sym__concat] = ACTIONS(4745), + [anon_sym_RBRACE] = ACTIONS(4745), [sym_comment] = ACTIONS(53), }, - [2608] = { - [sym__concat] = ACTIONS(4892), - [anon_sym_RBRACE] = ACTIONS(4892), + [2452] = { + [sym__concat] = ACTIONS(4749), + [anon_sym_RBRACE] = ACTIONS(4749), [sym_comment] = ACTIONS(53), }, - [2609] = { - [sym__concat] = ACTIONS(4896), - [anon_sym_RBRACE] = ACTIONS(4896), + [2453] = { + [sym__concat] = ACTIONS(4753), + [anon_sym_RBRACE] = ACTIONS(4753), [sym_comment] = ACTIONS(53), }, - [2610] = { - [sym_concatenation] = STATE(839), + [2454] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6441), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6013), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -69631,33 +62760,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2611] = { - [sym__concat] = ACTIONS(4902), - [anon_sym_RBRACE] = ACTIONS(4902), + [2455] = { + [sym__concat] = ACTIONS(4759), + [anon_sym_RBRACE] = ACTIONS(4759), [sym_comment] = ACTIONS(53), }, - [2612] = { - [sym_concatenation] = STATE(839), + [2456] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6443), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6015), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -69665,33 +62794,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2613] = { - [sym__concat] = ACTIONS(4908), - [anon_sym_RBRACE] = ACTIONS(4908), + [2457] = { + [sym__concat] = ACTIONS(4765), + [anon_sym_RBRACE] = ACTIONS(4765), [sym_comment] = ACTIONS(53), }, - [2614] = { - [sym_concatenation] = STATE(839), + [2458] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6445), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6017), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -69699,159 +62828,159 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2615] = { - [sym__concat] = ACTIONS(4914), - [anon_sym_RBRACE] = ACTIONS(4914), + [2459] = { + [sym__concat] = ACTIONS(4771), + [anon_sym_RBRACE] = ACTIONS(4771), [sym_comment] = ACTIONS(53), }, - [2616] = { - [sym__concat] = ACTIONS(4918), - [anon_sym_RBRACE] = ACTIONS(4918), + [2460] = { + [sym__concat] = ACTIONS(4775), + [anon_sym_RBRACE] = ACTIONS(4775), [sym_comment] = ACTIONS(53), }, - [2617] = { - [sym__concat] = ACTIONS(5540), - [anon_sym_RBRACE] = ACTIONS(5540), - [anon_sym_EQ] = ACTIONS(5542), - [sym__special_characters] = ACTIONS(5542), - [anon_sym_DQUOTE] = ACTIONS(5540), - [anon_sym_DOLLAR] = ACTIONS(5542), - [sym_raw_string] = ACTIONS(5540), - [anon_sym_POUND] = ACTIONS(5540), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5540), - [anon_sym_COLON] = ACTIONS(5542), - [anon_sym_COLON_QMARK] = ACTIONS(5542), - [anon_sym_COLON_DASH] = ACTIONS(5542), - [anon_sym_PERCENT] = ACTIONS(5542), - [anon_sym_DASH] = ACTIONS(5542), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5540), - [anon_sym_BQUOTE] = ACTIONS(5540), - [anon_sym_LT_LPAREN] = ACTIONS(5540), - [anon_sym_GT_LPAREN] = ACTIONS(5540), + [2461] = { + [sym__concat] = ACTIONS(5325), + [anon_sym_RBRACE] = ACTIONS(5325), + [anon_sym_EQ] = ACTIONS(5327), + [sym__special_characters] = ACTIONS(5327), + [anon_sym_DQUOTE] = ACTIONS(5325), + [anon_sym_DOLLAR] = ACTIONS(5327), + [sym_raw_string] = ACTIONS(5325), + [anon_sym_POUND] = ACTIONS(5325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5325), + [anon_sym_COLON] = ACTIONS(5327), + [anon_sym_COLON_QMARK] = ACTIONS(5327), + [anon_sym_COLON_DASH] = ACTIONS(5327), + [anon_sym_PERCENT] = ACTIONS(5327), + [anon_sym_DASH] = ACTIONS(5327), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5325), + [anon_sym_BQUOTE] = ACTIONS(5325), + [anon_sym_LT_LPAREN] = ACTIONS(5325), + [anon_sym_GT_LPAREN] = ACTIONS(5325), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5542), + [sym_word] = ACTIONS(5327), }, - [2618] = { - [sym__concat] = ACTIONS(5544), - [anon_sym_RBRACE] = ACTIONS(5544), - [anon_sym_EQ] = ACTIONS(5546), - [sym__special_characters] = ACTIONS(5546), - [anon_sym_DQUOTE] = ACTIONS(5544), - [anon_sym_DOLLAR] = ACTIONS(5546), - [sym_raw_string] = ACTIONS(5544), - [anon_sym_POUND] = ACTIONS(5544), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5544), - [anon_sym_COLON] = ACTIONS(5546), - [anon_sym_COLON_QMARK] = ACTIONS(5546), - [anon_sym_COLON_DASH] = ACTIONS(5546), - [anon_sym_PERCENT] = ACTIONS(5546), - [anon_sym_DASH] = ACTIONS(5546), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5544), - [anon_sym_BQUOTE] = ACTIONS(5544), - [anon_sym_LT_LPAREN] = ACTIONS(5544), - [anon_sym_GT_LPAREN] = ACTIONS(5544), + [2462] = { + [sym__concat] = ACTIONS(5329), + [anon_sym_RBRACE] = ACTIONS(5329), + [anon_sym_EQ] = ACTIONS(5331), + [sym__special_characters] = ACTIONS(5331), + [anon_sym_DQUOTE] = ACTIONS(5329), + [anon_sym_DOLLAR] = ACTIONS(5331), + [sym_raw_string] = ACTIONS(5329), + [anon_sym_POUND] = ACTIONS(5329), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5329), + [anon_sym_COLON] = ACTIONS(5331), + [anon_sym_COLON_QMARK] = ACTIONS(5331), + [anon_sym_COLON_DASH] = ACTIONS(5331), + [anon_sym_PERCENT] = ACTIONS(5331), + [anon_sym_DASH] = ACTIONS(5331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5329), + [anon_sym_BQUOTE] = ACTIONS(5329), + [anon_sym_LT_LPAREN] = ACTIONS(5329), + [anon_sym_GT_LPAREN] = ACTIONS(5329), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5546), + [sym_word] = ACTIONS(5331), }, - [2619] = { - [sym__concat] = ACTIONS(5548), - [anon_sym_RBRACE] = ACTIONS(5548), - [anon_sym_EQ] = ACTIONS(5550), - [sym__special_characters] = ACTIONS(5550), - [anon_sym_DQUOTE] = ACTIONS(5548), - [anon_sym_DOLLAR] = ACTIONS(5550), - [sym_raw_string] = ACTIONS(5548), - [anon_sym_POUND] = ACTIONS(5548), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5548), - [anon_sym_COLON] = ACTIONS(5550), - [anon_sym_COLON_QMARK] = ACTIONS(5550), - [anon_sym_COLON_DASH] = ACTIONS(5550), - [anon_sym_PERCENT] = ACTIONS(5550), - [anon_sym_DASH] = ACTIONS(5550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5548), - [anon_sym_BQUOTE] = ACTIONS(5548), - [anon_sym_LT_LPAREN] = ACTIONS(5548), - [anon_sym_GT_LPAREN] = ACTIONS(5548), + [2463] = { + [sym__concat] = ACTIONS(5333), + [anon_sym_RBRACE] = ACTIONS(5333), + [anon_sym_EQ] = ACTIONS(5335), + [sym__special_characters] = ACTIONS(5335), + [anon_sym_DQUOTE] = ACTIONS(5333), + [anon_sym_DOLLAR] = ACTIONS(5335), + [sym_raw_string] = ACTIONS(5333), + [anon_sym_POUND] = ACTIONS(5333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5333), + [anon_sym_COLON] = ACTIONS(5335), + [anon_sym_COLON_QMARK] = ACTIONS(5335), + [anon_sym_COLON_DASH] = ACTIONS(5335), + [anon_sym_PERCENT] = ACTIONS(5335), + [anon_sym_DASH] = ACTIONS(5335), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5333), + [anon_sym_BQUOTE] = ACTIONS(5333), + [anon_sym_LT_LPAREN] = ACTIONS(5333), + [anon_sym_GT_LPAREN] = ACTIONS(5333), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5550), + [sym_word] = ACTIONS(5335), }, - [2620] = { - [anon_sym_PIPE] = ACTIONS(5928), - [anon_sym_RPAREN] = ACTIONS(5930), - [anon_sym_PIPE_AMP] = ACTIONS(5930), - [anon_sym_AMP_AMP] = ACTIONS(5930), - [anon_sym_PIPE_PIPE] = ACTIONS(5930), - [anon_sym_BQUOTE] = ACTIONS(5930), + [2464] = { + [anon_sym_PIPE] = ACTIONS(5613), + [anon_sym_RPAREN] = ACTIONS(5615), + [anon_sym_PIPE_AMP] = ACTIONS(5615), + [anon_sym_AMP_AMP] = ACTIONS(5615), + [anon_sym_PIPE_PIPE] = ACTIONS(5615), + [anon_sym_BQUOTE] = ACTIONS(5615), [sym_comment] = ACTIONS(53), }, - [2621] = { - [anon_sym_PIPE] = ACTIONS(5932), - [anon_sym_RPAREN] = ACTIONS(5934), - [anon_sym_PIPE_AMP] = ACTIONS(5934), - [anon_sym_AMP_AMP] = ACTIONS(5934), - [anon_sym_PIPE_PIPE] = ACTIONS(5934), - [anon_sym_BQUOTE] = ACTIONS(5934), + [2465] = { + [anon_sym_PIPE] = ACTIONS(5617), + [anon_sym_RPAREN] = ACTIONS(5619), + [anon_sym_PIPE_AMP] = ACTIONS(5619), + [anon_sym_AMP_AMP] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5619), + [anon_sym_BQUOTE] = ACTIONS(5619), [sym_comment] = ACTIONS(53), }, - [2622] = { - [sym_file_descriptor] = ACTIONS(2752), - [sym__concat] = ACTIONS(2752), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_RPAREN] = ACTIONS(2752), - [anon_sym_PIPE_AMP] = ACTIONS(2752), - [anon_sym_AMP_AMP] = ACTIONS(2752), - [anon_sym_PIPE_PIPE] = ACTIONS(2752), - [anon_sym_LT] = ACTIONS(2754), - [anon_sym_GT] = ACTIONS(2754), - [anon_sym_GT_GT] = ACTIONS(2752), - [anon_sym_AMP_GT] = ACTIONS(2754), - [anon_sym_AMP_GT_GT] = ACTIONS(2752), - [anon_sym_LT_AMP] = ACTIONS(2752), - [anon_sym_GT_AMP] = ACTIONS(2752), - [anon_sym_LT_LT] = ACTIONS(2754), - [anon_sym_LT_LT_DASH] = ACTIONS(2752), - [anon_sym_LT_LT_LT] = ACTIONS(2752), - [anon_sym_BQUOTE] = ACTIONS(2752), + [2466] = { + [sym_file_descriptor] = ACTIONS(2710), + [sym__concat] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2712), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_PIPE_AMP] = ACTIONS(2710), + [anon_sym_AMP_AMP] = ACTIONS(2710), + [anon_sym_PIPE_PIPE] = ACTIONS(2710), + [anon_sym_LT] = ACTIONS(2712), + [anon_sym_GT] = ACTIONS(2712), + [anon_sym_GT_GT] = ACTIONS(2710), + [anon_sym_AMP_GT] = ACTIONS(2712), + [anon_sym_AMP_GT_GT] = ACTIONS(2710), + [anon_sym_LT_AMP] = ACTIONS(2710), + [anon_sym_GT_AMP] = ACTIONS(2710), + [anon_sym_LT_LT] = ACTIONS(2712), + [anon_sym_LT_LT_DASH] = ACTIONS(2710), + [anon_sym_LT_LT_LT] = ACTIONS(2710), + [anon_sym_BQUOTE] = ACTIONS(2710), [sym_comment] = ACTIONS(53), }, - [2623] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(6447), + [2467] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(6019), [sym_comment] = ACTIONS(53), }, - [2624] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(6449), + [2468] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(6021), [sym_comment] = ACTIONS(53), }, - [2625] = { - [anon_sym_RBRACE] = ACTIONS(6449), + [2469] = { + [anon_sym_RBRACE] = ACTIONS(6021), [sym_comment] = ACTIONS(53), }, - [2626] = { - [sym_concatenation] = STATE(2795), + [2470] = { + [sym_concatenation] = STATE(2582), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2795), - [anon_sym_RBRACE] = ACTIONS(6451), - [anon_sym_EQ] = ACTIONS(6453), + [aux_sym_expansion_repeat1] = STATE(2582), + [anon_sym_RBRACE] = ACTIONS(6023), + [anon_sym_EQ] = ACTIONS(6025), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6455), + [anon_sym_POUND] = ACTIONS(6027), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6453), - [anon_sym_COLON_QMARK] = ACTIONS(6453), - [anon_sym_COLON_DASH] = ACTIONS(6453), - [anon_sym_PERCENT] = ACTIONS(6453), - [anon_sym_DASH] = ACTIONS(6453), + [anon_sym_COLON] = ACTIONS(6025), + [anon_sym_COLON_QMARK] = ACTIONS(6025), + [anon_sym_COLON_DASH] = ACTIONS(6025), + [anon_sym_PERCENT] = ACTIONS(6025), + [anon_sym_DASH] = ACTIONS(6025), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -69859,95 +62988,95 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2627] = { - [sym_file_descriptor] = ACTIONS(2830), - [sym__concat] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_RPAREN] = ACTIONS(2830), - [anon_sym_PIPE_AMP] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_GT_GT] = ACTIONS(2830), - [anon_sym_AMP_GT] = ACTIONS(2832), - [anon_sym_AMP_GT_GT] = ACTIONS(2830), - [anon_sym_LT_AMP] = ACTIONS(2830), - [anon_sym_GT_AMP] = ACTIONS(2830), - [anon_sym_LT_LT] = ACTIONS(2832), - [anon_sym_LT_LT_DASH] = ACTIONS(2830), - [anon_sym_LT_LT_LT] = ACTIONS(2830), - [anon_sym_BQUOTE] = ACTIONS(2830), + [2471] = { + [sym_file_descriptor] = ACTIONS(2788), + [sym__concat] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_RPAREN] = ACTIONS(2788), + [anon_sym_PIPE_AMP] = ACTIONS(2788), + [anon_sym_AMP_AMP] = ACTIONS(2788), + [anon_sym_PIPE_PIPE] = ACTIONS(2788), + [anon_sym_LT] = ACTIONS(2790), + [anon_sym_GT] = ACTIONS(2790), + [anon_sym_GT_GT] = ACTIONS(2788), + [anon_sym_AMP_GT] = ACTIONS(2790), + [anon_sym_AMP_GT_GT] = ACTIONS(2788), + [anon_sym_LT_AMP] = ACTIONS(2788), + [anon_sym_GT_AMP] = ACTIONS(2788), + [anon_sym_LT_LT] = ACTIONS(2790), + [anon_sym_LT_LT_DASH] = ACTIONS(2788), + [anon_sym_LT_LT_LT] = ACTIONS(2788), + [anon_sym_BQUOTE] = ACTIONS(2788), [sym_comment] = ACTIONS(53), }, - [2628] = { - [sym_concatenation] = STATE(2798), - [sym_string] = STATE(2797), - [sym_simple_expansion] = STATE(2797), - [sym_string_expansion] = STATE(2797), - [sym_expansion] = STATE(2797), - [sym_command_substitution] = STATE(2797), - [sym_process_substitution] = STATE(2797), - [anon_sym_RBRACE] = ACTIONS(6449), - [sym__special_characters] = ACTIONS(6457), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(6459), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), + [2472] = { + [sym_concatenation] = STATE(2585), + [sym_string] = STATE(2584), + [sym_simple_expansion] = STATE(2584), + [sym_string_expansion] = STATE(2584), + [sym_expansion] = STATE(2584), + [sym_command_substitution] = STATE(2584), + [sym_process_substitution] = STATE(2584), + [anon_sym_RBRACE] = ACTIONS(6021), + [sym__special_characters] = ACTIONS(6029), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(6031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6459), + [sym_word] = ACTIONS(6031), }, - [2629] = { - [sym_file_descriptor] = ACTIONS(2873), - [sym__concat] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(2875), - [anon_sym_RPAREN] = ACTIONS(2873), - [anon_sym_PIPE_AMP] = ACTIONS(2873), - [anon_sym_AMP_AMP] = ACTIONS(2873), - [anon_sym_PIPE_PIPE] = ACTIONS(2873), - [anon_sym_LT] = ACTIONS(2875), - [anon_sym_GT] = ACTIONS(2875), - [anon_sym_GT_GT] = ACTIONS(2873), - [anon_sym_AMP_GT] = ACTIONS(2875), - [anon_sym_AMP_GT_GT] = ACTIONS(2873), - [anon_sym_LT_AMP] = ACTIONS(2873), - [anon_sym_GT_AMP] = ACTIONS(2873), - [anon_sym_LT_LT] = ACTIONS(2875), - [anon_sym_LT_LT_DASH] = ACTIONS(2873), - [anon_sym_LT_LT_LT] = ACTIONS(2873), - [anon_sym_BQUOTE] = ACTIONS(2873), + [2473] = { + [sym_file_descriptor] = ACTIONS(2831), + [sym__concat] = ACTIONS(2831), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_RPAREN] = ACTIONS(2831), + [anon_sym_PIPE_AMP] = ACTIONS(2831), + [anon_sym_AMP_AMP] = ACTIONS(2831), + [anon_sym_PIPE_PIPE] = ACTIONS(2831), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_GT_GT] = ACTIONS(2831), + [anon_sym_AMP_GT] = ACTIONS(2833), + [anon_sym_AMP_GT_GT] = ACTIONS(2831), + [anon_sym_LT_AMP] = ACTIONS(2831), + [anon_sym_GT_AMP] = ACTIONS(2831), + [anon_sym_LT_LT] = ACTIONS(2833), + [anon_sym_LT_LT_DASH] = ACTIONS(2831), + [anon_sym_LT_LT_LT] = ACTIONS(2831), + [anon_sym_BQUOTE] = ACTIONS(2831), [sym_comment] = ACTIONS(53), }, - [2630] = { + [2474] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6461), + [sym_regex_without_right_brace] = ACTIONS(6033), }, - [2631] = { - [sym_concatenation] = STATE(839), + [2475] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6463), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6035), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -69955,53 +63084,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2632] = { - [sym_file_descriptor] = ACTIONS(2881), - [sym__concat] = ACTIONS(2881), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_RPAREN] = ACTIONS(2881), - [anon_sym_PIPE_AMP] = ACTIONS(2881), - [anon_sym_AMP_AMP] = ACTIONS(2881), - [anon_sym_PIPE_PIPE] = ACTIONS(2881), - [anon_sym_LT] = ACTIONS(2883), - [anon_sym_GT] = ACTIONS(2883), - [anon_sym_GT_GT] = ACTIONS(2881), - [anon_sym_AMP_GT] = ACTIONS(2883), - [anon_sym_AMP_GT_GT] = ACTIONS(2881), - [anon_sym_LT_AMP] = ACTIONS(2881), - [anon_sym_GT_AMP] = ACTIONS(2881), - [anon_sym_LT_LT] = ACTIONS(2883), - [anon_sym_LT_LT_DASH] = ACTIONS(2881), - [anon_sym_LT_LT_LT] = ACTIONS(2881), - [anon_sym_BQUOTE] = ACTIONS(2881), + [2476] = { + [sym_file_descriptor] = ACTIONS(2839), + [sym__concat] = ACTIONS(2839), + [anon_sym_PIPE] = ACTIONS(2841), + [anon_sym_RPAREN] = ACTIONS(2839), + [anon_sym_PIPE_AMP] = ACTIONS(2839), + [anon_sym_AMP_AMP] = ACTIONS(2839), + [anon_sym_PIPE_PIPE] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2841), + [anon_sym_GT] = ACTIONS(2841), + [anon_sym_GT_GT] = ACTIONS(2839), + [anon_sym_AMP_GT] = ACTIONS(2841), + [anon_sym_AMP_GT_GT] = ACTIONS(2839), + [anon_sym_LT_AMP] = ACTIONS(2839), + [anon_sym_GT_AMP] = ACTIONS(2839), + [anon_sym_LT_LT] = ACTIONS(2841), + [anon_sym_LT_LT_DASH] = ACTIONS(2839), + [anon_sym_LT_LT_LT] = ACTIONS(2839), + [anon_sym_BQUOTE] = ACTIONS(2839), [sym_comment] = ACTIONS(53), }, - [2633] = { + [2477] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6465), + [sym_regex_without_right_brace] = ACTIONS(6037), }, - [2634] = { - [sym_concatenation] = STATE(839), + [2478] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6467), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6039), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -70009,32 +63138,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2635] = { + [2479] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6469), + [sym_regex_without_right_brace] = ACTIONS(6041), }, - [2636] = { - [sym_concatenation] = STATE(839), + [2480] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6449), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6021), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -70042,28 +63171,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2637] = { - [sym_concatenation] = STATE(2805), + [2481] = { + [sym_concatenation] = STATE(2592), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2805), - [anon_sym_RBRACE] = ACTIONS(6471), - [anon_sym_EQ] = ACTIONS(6473), + [aux_sym_expansion_repeat1] = STATE(2592), + [anon_sym_RBRACE] = ACTIONS(6043), + [anon_sym_EQ] = ACTIONS(6045), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6475), + [anon_sym_POUND] = ACTIONS(6047), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6473), - [anon_sym_COLON_QMARK] = ACTIONS(6473), - [anon_sym_COLON_DASH] = ACTIONS(6473), - [anon_sym_PERCENT] = ACTIONS(6473), - [anon_sym_DASH] = ACTIONS(6473), + [anon_sym_COLON] = ACTIONS(6045), + [anon_sym_COLON_QMARK] = ACTIONS(6045), + [anon_sym_COLON_DASH] = ACTIONS(6045), + [anon_sym_PERCENT] = ACTIONS(6045), + [anon_sym_DASH] = ACTIONS(6045), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -70071,49 +63200,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2638] = { - [sym_file_descriptor] = ACTIONS(2897), - [sym__concat] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_RPAREN] = ACTIONS(2897), - [anon_sym_PIPE_AMP] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2897), - [anon_sym_PIPE_PIPE] = ACTIONS(2897), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [anon_sym_GT_GT] = ACTIONS(2897), - [anon_sym_AMP_GT] = ACTIONS(2899), - [anon_sym_AMP_GT_GT] = ACTIONS(2897), - [anon_sym_LT_AMP] = ACTIONS(2897), - [anon_sym_GT_AMP] = ACTIONS(2897), - [anon_sym_LT_LT] = ACTIONS(2899), - [anon_sym_LT_LT_DASH] = ACTIONS(2897), - [anon_sym_LT_LT_LT] = ACTIONS(2897), - [anon_sym_BQUOTE] = ACTIONS(2897), + [2482] = { + [sym_file_descriptor] = ACTIONS(2855), + [sym__concat] = ACTIONS(2855), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2855), + [anon_sym_PIPE_AMP] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [anon_sym_LT] = ACTIONS(2857), + [anon_sym_GT] = ACTIONS(2857), + [anon_sym_GT_GT] = ACTIONS(2855), + [anon_sym_AMP_GT] = ACTIONS(2857), + [anon_sym_AMP_GT_GT] = ACTIONS(2855), + [anon_sym_LT_AMP] = ACTIONS(2855), + [anon_sym_GT_AMP] = ACTIONS(2855), + [anon_sym_LT_LT] = ACTIONS(2857), + [anon_sym_LT_LT_DASH] = ACTIONS(2855), + [anon_sym_LT_LT_LT] = ACTIONS(2855), + [anon_sym_BQUOTE] = ACTIONS(2855), [sym_comment] = ACTIONS(53), }, - [2639] = { - [sym_concatenation] = STATE(2807), + [2483] = { + [sym_concatenation] = STATE(2594), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2807), - [anon_sym_RBRACE] = ACTIONS(6477), - [anon_sym_EQ] = ACTIONS(6479), + [aux_sym_expansion_repeat1] = STATE(2594), + [anon_sym_RBRACE] = ACTIONS(6049), + [anon_sym_EQ] = ACTIONS(6051), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6481), + [anon_sym_POUND] = ACTIONS(6053), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6479), - [anon_sym_COLON_QMARK] = ACTIONS(6479), - [anon_sym_COLON_DASH] = ACTIONS(6479), - [anon_sym_PERCENT] = ACTIONS(6479), - [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_COLON] = ACTIONS(6051), + [anon_sym_COLON_QMARK] = ACTIONS(6051), + [anon_sym_COLON_DASH] = ACTIONS(6051), + [anon_sym_PERCENT] = ACTIONS(6051), + [anon_sym_DASH] = ACTIONS(6051), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -70121,325 +63250,199 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2640] = { - [sym__concat] = ACTIONS(5540), - [sym_variable_name] = ACTIONS(5540), - [anon_sym_PIPE] = ACTIONS(5542), - [anon_sym_RPAREN] = ACTIONS(5540), - [anon_sym_PIPE_AMP] = ACTIONS(5540), - [anon_sym_AMP_AMP] = ACTIONS(5540), - [anon_sym_PIPE_PIPE] = ACTIONS(5540), - [sym__special_characters] = ACTIONS(5540), - [anon_sym_DQUOTE] = ACTIONS(5540), - [anon_sym_DOLLAR] = ACTIONS(5542), - [sym_raw_string] = ACTIONS(5540), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5540), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5540), - [anon_sym_BQUOTE] = ACTIONS(5540), - [anon_sym_LT_LPAREN] = ACTIONS(5540), - [anon_sym_GT_LPAREN] = ACTIONS(5540), + [2484] = { + [sym__concat] = ACTIONS(5325), + [sym_variable_name] = ACTIONS(5325), + [anon_sym_PIPE] = ACTIONS(5327), + [anon_sym_RPAREN] = ACTIONS(5325), + [anon_sym_PIPE_AMP] = ACTIONS(5325), + [anon_sym_AMP_AMP] = ACTIONS(5325), + [anon_sym_PIPE_PIPE] = ACTIONS(5325), + [sym__special_characters] = ACTIONS(5325), + [anon_sym_DQUOTE] = ACTIONS(5325), + [anon_sym_DOLLAR] = ACTIONS(5327), + [sym_raw_string] = ACTIONS(5325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5325), + [anon_sym_BQUOTE] = ACTIONS(5325), + [anon_sym_LT_LPAREN] = ACTIONS(5325), + [anon_sym_GT_LPAREN] = ACTIONS(5325), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5542), - [sym_word] = ACTIONS(5542), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5327), + [sym_word] = ACTIONS(5327), }, - [2641] = { - [sym__concat] = ACTIONS(5544), - [sym_variable_name] = ACTIONS(5544), - [anon_sym_PIPE] = ACTIONS(5546), - [anon_sym_RPAREN] = ACTIONS(5544), - [anon_sym_PIPE_AMP] = ACTIONS(5544), - [anon_sym_AMP_AMP] = ACTIONS(5544), - [anon_sym_PIPE_PIPE] = ACTIONS(5544), - [sym__special_characters] = ACTIONS(5544), - [anon_sym_DQUOTE] = ACTIONS(5544), - [anon_sym_DOLLAR] = ACTIONS(5546), - [sym_raw_string] = ACTIONS(5544), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5544), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5544), - [anon_sym_BQUOTE] = ACTIONS(5544), - [anon_sym_LT_LPAREN] = ACTIONS(5544), - [anon_sym_GT_LPAREN] = ACTIONS(5544), + [2485] = { + [sym__concat] = ACTIONS(5329), + [sym_variable_name] = ACTIONS(5329), + [anon_sym_PIPE] = ACTIONS(5331), + [anon_sym_RPAREN] = ACTIONS(5329), + [anon_sym_PIPE_AMP] = ACTIONS(5329), + [anon_sym_AMP_AMP] = ACTIONS(5329), + [anon_sym_PIPE_PIPE] = ACTIONS(5329), + [sym__special_characters] = ACTIONS(5329), + [anon_sym_DQUOTE] = ACTIONS(5329), + [anon_sym_DOLLAR] = ACTIONS(5331), + [sym_raw_string] = ACTIONS(5329), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5329), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5329), + [anon_sym_BQUOTE] = ACTIONS(5329), + [anon_sym_LT_LPAREN] = ACTIONS(5329), + [anon_sym_GT_LPAREN] = ACTIONS(5329), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5546), - [sym_word] = ACTIONS(5546), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5331), + [sym_word] = ACTIONS(5331), }, - [2642] = { - [sym__concat] = ACTIONS(5548), - [sym_variable_name] = ACTIONS(5548), - [anon_sym_PIPE] = ACTIONS(5550), - [anon_sym_RPAREN] = ACTIONS(5548), - [anon_sym_PIPE_AMP] = ACTIONS(5548), - [anon_sym_AMP_AMP] = ACTIONS(5548), - [anon_sym_PIPE_PIPE] = ACTIONS(5548), - [sym__special_characters] = ACTIONS(5548), - [anon_sym_DQUOTE] = ACTIONS(5548), - [anon_sym_DOLLAR] = ACTIONS(5550), - [sym_raw_string] = ACTIONS(5548), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5548), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5548), - [anon_sym_BQUOTE] = ACTIONS(5548), - [anon_sym_LT_LPAREN] = ACTIONS(5548), - [anon_sym_GT_LPAREN] = ACTIONS(5548), + [2486] = { + [sym__concat] = ACTIONS(5333), + [sym_variable_name] = ACTIONS(5333), + [anon_sym_PIPE] = ACTIONS(5335), + [anon_sym_RPAREN] = ACTIONS(5333), + [anon_sym_PIPE_AMP] = ACTIONS(5333), + [anon_sym_AMP_AMP] = ACTIONS(5333), + [anon_sym_PIPE_PIPE] = ACTIONS(5333), + [sym__special_characters] = ACTIONS(5333), + [anon_sym_DQUOTE] = ACTIONS(5333), + [anon_sym_DOLLAR] = ACTIONS(5335), + [sym_raw_string] = ACTIONS(5333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5333), + [anon_sym_BQUOTE] = ACTIONS(5333), + [anon_sym_LT_LPAREN] = ACTIONS(5333), + [anon_sym_GT_LPAREN] = ACTIONS(5333), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5550), - [sym_word] = ACTIONS(5550), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5335), + [sym_word] = ACTIONS(5335), }, - [2643] = { - [sym__concat] = ACTIONS(5540), - [anon_sym_PIPE] = ACTIONS(5542), - [anon_sym_RPAREN] = ACTIONS(5540), - [anon_sym_PIPE_AMP] = ACTIONS(5540), - [anon_sym_AMP_AMP] = ACTIONS(5540), - [anon_sym_PIPE_PIPE] = ACTIONS(5540), - [sym__special_characters] = ACTIONS(5540), - [anon_sym_DQUOTE] = ACTIONS(5540), - [anon_sym_DOLLAR] = ACTIONS(5542), - [sym_raw_string] = ACTIONS(5540), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5540), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5540), - [anon_sym_BQUOTE] = ACTIONS(5540), - [anon_sym_LT_LPAREN] = ACTIONS(5540), - [anon_sym_GT_LPAREN] = ACTIONS(5540), + [2487] = { + [sym__concat] = ACTIONS(5325), + [anon_sym_PIPE] = ACTIONS(5327), + [anon_sym_RPAREN] = ACTIONS(5325), + [anon_sym_PIPE_AMP] = ACTIONS(5325), + [anon_sym_AMP_AMP] = ACTIONS(5325), + [anon_sym_PIPE_PIPE] = ACTIONS(5325), + [sym__special_characters] = ACTIONS(5325), + [anon_sym_DQUOTE] = ACTIONS(5325), + [anon_sym_DOLLAR] = ACTIONS(5327), + [sym_raw_string] = ACTIONS(5325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5325), + [anon_sym_BQUOTE] = ACTIONS(5325), + [anon_sym_LT_LPAREN] = ACTIONS(5325), + [anon_sym_GT_LPAREN] = ACTIONS(5325), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5542), - [sym_word] = ACTIONS(5542), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5327), + [sym_word] = ACTIONS(5327), }, - [2644] = { - [sym__concat] = ACTIONS(5544), - [anon_sym_PIPE] = ACTIONS(5546), - [anon_sym_RPAREN] = ACTIONS(5544), - [anon_sym_PIPE_AMP] = ACTIONS(5544), - [anon_sym_AMP_AMP] = ACTIONS(5544), - [anon_sym_PIPE_PIPE] = ACTIONS(5544), - [sym__special_characters] = ACTIONS(5544), - [anon_sym_DQUOTE] = ACTIONS(5544), - [anon_sym_DOLLAR] = ACTIONS(5546), - [sym_raw_string] = ACTIONS(5544), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5544), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5544), - [anon_sym_BQUOTE] = ACTIONS(5544), - [anon_sym_LT_LPAREN] = ACTIONS(5544), - [anon_sym_GT_LPAREN] = ACTIONS(5544), + [2488] = { + [sym__concat] = ACTIONS(5329), + [anon_sym_PIPE] = ACTIONS(5331), + [anon_sym_RPAREN] = ACTIONS(5329), + [anon_sym_PIPE_AMP] = ACTIONS(5329), + [anon_sym_AMP_AMP] = ACTIONS(5329), + [anon_sym_PIPE_PIPE] = ACTIONS(5329), + [sym__special_characters] = ACTIONS(5329), + [anon_sym_DQUOTE] = ACTIONS(5329), + [anon_sym_DOLLAR] = ACTIONS(5331), + [sym_raw_string] = ACTIONS(5329), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5329), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5329), + [anon_sym_BQUOTE] = ACTIONS(5329), + [anon_sym_LT_LPAREN] = ACTIONS(5329), + [anon_sym_GT_LPAREN] = ACTIONS(5329), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5546), - [sym_word] = ACTIONS(5546), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5331), + [sym_word] = ACTIONS(5331), }, - [2645] = { - [sym__concat] = ACTIONS(5548), - [anon_sym_PIPE] = ACTIONS(5550), - [anon_sym_RPAREN] = ACTIONS(5548), - [anon_sym_PIPE_AMP] = ACTIONS(5548), - [anon_sym_AMP_AMP] = ACTIONS(5548), - [anon_sym_PIPE_PIPE] = ACTIONS(5548), - [sym__special_characters] = ACTIONS(5548), - [anon_sym_DQUOTE] = ACTIONS(5548), - [anon_sym_DOLLAR] = ACTIONS(5550), - [sym_raw_string] = ACTIONS(5548), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5548), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5548), - [anon_sym_BQUOTE] = ACTIONS(5548), - [anon_sym_LT_LPAREN] = ACTIONS(5548), - [anon_sym_GT_LPAREN] = ACTIONS(5548), + [2489] = { + [sym__concat] = ACTIONS(5333), + [anon_sym_PIPE] = ACTIONS(5335), + [anon_sym_RPAREN] = ACTIONS(5333), + [anon_sym_PIPE_AMP] = ACTIONS(5333), + [anon_sym_AMP_AMP] = ACTIONS(5333), + [anon_sym_PIPE_PIPE] = ACTIONS(5333), + [sym__special_characters] = ACTIONS(5333), + [anon_sym_DQUOTE] = ACTIONS(5333), + [anon_sym_DOLLAR] = ACTIONS(5335), + [sym_raw_string] = ACTIONS(5333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5333), + [anon_sym_BQUOTE] = ACTIONS(5333), + [anon_sym_LT_LPAREN] = ACTIONS(5333), + [anon_sym_GT_LPAREN] = ACTIONS(5333), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5550), - [sym_word] = ACTIONS(5550), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5335), + [sym_word] = ACTIONS(5335), }, - [2646] = { - [sym__heredoc_body_middle] = ACTIONS(5540), - [sym__heredoc_body_end] = ACTIONS(5540), - [anon_sym_DOLLAR] = ACTIONS(5542), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5540), + [2490] = { + [sym__heredoc_body_middle] = ACTIONS(5325), + [sym__heredoc_body_end] = ACTIONS(5325), + [anon_sym_DOLLAR] = ACTIONS(5327), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5325), [sym_comment] = ACTIONS(53), }, - [2647] = { - [sym__heredoc_body_middle] = ACTIONS(5544), - [sym__heredoc_body_end] = ACTIONS(5544), - [anon_sym_DOLLAR] = ACTIONS(5546), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5544), + [2491] = { + [sym__heredoc_body_middle] = ACTIONS(5329), + [sym__heredoc_body_end] = ACTIONS(5329), + [anon_sym_DOLLAR] = ACTIONS(5331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5329), [sym_comment] = ACTIONS(53), }, - [2648] = { - [sym__heredoc_body_middle] = ACTIONS(5548), - [sym__heredoc_body_end] = ACTIONS(5548), - [anon_sym_DOLLAR] = ACTIONS(5550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5548), + [2492] = { + [sym__heredoc_body_middle] = ACTIONS(5333), + [sym__heredoc_body_end] = ACTIONS(5333), + [anon_sym_DOLLAR] = ACTIONS(5335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5333), [sym_comment] = ACTIONS(53), }, - [2649] = { - [sym__concat] = ACTIONS(5540), - [anon_sym_RPAREN] = ACTIONS(5540), - [sym__special_characters] = ACTIONS(5540), - [anon_sym_DQUOTE] = ACTIONS(5540), - [anon_sym_DOLLAR] = ACTIONS(5542), - [sym_raw_string] = ACTIONS(5540), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5540), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5540), - [anon_sym_BQUOTE] = ACTIONS(5540), - [anon_sym_LT_LPAREN] = ACTIONS(5540), - [anon_sym_GT_LPAREN] = ACTIONS(5540), + [2493] = { + [sym__concat] = ACTIONS(5325), + [anon_sym_RPAREN] = ACTIONS(5325), + [sym__special_characters] = ACTIONS(5325), + [anon_sym_DQUOTE] = ACTIONS(5325), + [anon_sym_DOLLAR] = ACTIONS(5327), + [sym_raw_string] = ACTIONS(5325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5325), + [anon_sym_BQUOTE] = ACTIONS(5325), + [anon_sym_LT_LPAREN] = ACTIONS(5325), + [anon_sym_GT_LPAREN] = ACTIONS(5325), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5540), + [sym_word] = ACTIONS(5325), }, - [2650] = { - [sym__concat] = ACTIONS(5544), - [anon_sym_RPAREN] = ACTIONS(5544), - [sym__special_characters] = ACTIONS(5544), - [anon_sym_DQUOTE] = ACTIONS(5544), - [anon_sym_DOLLAR] = ACTIONS(5546), - [sym_raw_string] = ACTIONS(5544), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5544), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5544), - [anon_sym_BQUOTE] = ACTIONS(5544), - [anon_sym_LT_LPAREN] = ACTIONS(5544), - [anon_sym_GT_LPAREN] = ACTIONS(5544), + [2494] = { + [sym__concat] = ACTIONS(5329), + [anon_sym_RPAREN] = ACTIONS(5329), + [sym__special_characters] = ACTIONS(5329), + [anon_sym_DQUOTE] = ACTIONS(5329), + [anon_sym_DOLLAR] = ACTIONS(5331), + [sym_raw_string] = ACTIONS(5329), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5329), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5329), + [anon_sym_BQUOTE] = ACTIONS(5329), + [anon_sym_LT_LPAREN] = ACTIONS(5329), + [anon_sym_GT_LPAREN] = ACTIONS(5329), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5544), + [sym_word] = ACTIONS(5329), }, - [2651] = { - [sym__concat] = ACTIONS(5548), - [anon_sym_RPAREN] = ACTIONS(5548), - [sym__special_characters] = ACTIONS(5548), - [anon_sym_DQUOTE] = ACTIONS(5548), - [anon_sym_DOLLAR] = ACTIONS(5550), - [sym_raw_string] = ACTIONS(5548), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5548), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5548), - [anon_sym_BQUOTE] = ACTIONS(5548), - [anon_sym_LT_LPAREN] = ACTIONS(5548), - [anon_sym_GT_LPAREN] = ACTIONS(5548), + [2495] = { + [sym__concat] = ACTIONS(5333), + [anon_sym_RPAREN] = ACTIONS(5333), + [sym__special_characters] = ACTIONS(5333), + [anon_sym_DQUOTE] = ACTIONS(5333), + [anon_sym_DOLLAR] = ACTIONS(5335), + [sym_raw_string] = ACTIONS(5333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5333), + [anon_sym_BQUOTE] = ACTIONS(5333), + [anon_sym_LT_LPAREN] = ACTIONS(5333), + [anon_sym_GT_LPAREN] = ACTIONS(5333), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5548), + [sym_word] = ACTIONS(5333), }, - [2652] = { - [sym__concat] = ACTIONS(5540), - [anon_sym_SEMI_SEMI] = ACTIONS(5542), - [sym__special_characters] = ACTIONS(5542), - [anon_sym_DQUOTE] = ACTIONS(5542), - [anon_sym_DOLLAR] = ACTIONS(5542), - [sym_raw_string] = ACTIONS(5542), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5542), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5542), - [anon_sym_BQUOTE] = ACTIONS(5542), - [anon_sym_LT_LPAREN] = ACTIONS(5542), - [anon_sym_GT_LPAREN] = ACTIONS(5542), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5542), - [anon_sym_LF] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(5542), - }, - [2653] = { - [sym__concat] = ACTIONS(5544), - [anon_sym_SEMI_SEMI] = ACTIONS(5546), - [sym__special_characters] = ACTIONS(5546), - [anon_sym_DQUOTE] = ACTIONS(5546), - [anon_sym_DOLLAR] = ACTIONS(5546), - [sym_raw_string] = ACTIONS(5546), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5546), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5546), - [anon_sym_BQUOTE] = ACTIONS(5546), - [anon_sym_LT_LPAREN] = ACTIONS(5546), - [anon_sym_GT_LPAREN] = ACTIONS(5546), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5546), - [anon_sym_SEMI] = ACTIONS(5546), - [anon_sym_LF] = ACTIONS(5544), - [anon_sym_AMP] = ACTIONS(5546), - }, - [2654] = { - [sym__concat] = ACTIONS(5548), - [anon_sym_SEMI_SEMI] = ACTIONS(5550), - [sym__special_characters] = ACTIONS(5550), - [anon_sym_DQUOTE] = ACTIONS(5550), - [anon_sym_DOLLAR] = ACTIONS(5550), - [sym_raw_string] = ACTIONS(5550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5550), - [anon_sym_BQUOTE] = ACTIONS(5550), - [anon_sym_LT_LPAREN] = ACTIONS(5550), - [anon_sym_GT_LPAREN] = ACTIONS(5550), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5550), - [anon_sym_SEMI] = ACTIONS(5550), - [anon_sym_LF] = ACTIONS(5548), - [anon_sym_AMP] = ACTIONS(5550), - }, - [2655] = { - [sym_file_descriptor] = ACTIONS(2139), - [sym_variable_name] = ACTIONS(2139), - [anon_sym_esac] = ACTIONS(2141), - [anon_sym_PIPE] = ACTIONS(2141), - [anon_sym_SEMI_SEMI] = ACTIONS(2141), - [anon_sym_PIPE_AMP] = ACTIONS(2141), - [anon_sym_AMP_AMP] = ACTIONS(2141), - [anon_sym_PIPE_PIPE] = ACTIONS(2141), - [anon_sym_LT] = ACTIONS(2141), - [anon_sym_GT] = ACTIONS(2141), - [anon_sym_GT_GT] = ACTIONS(2141), - [anon_sym_AMP_GT] = ACTIONS(2141), - [anon_sym_AMP_GT_GT] = ACTIONS(2141), - [anon_sym_LT_AMP] = ACTIONS(2141), - [anon_sym_GT_AMP] = ACTIONS(2141), - [sym__special_characters] = ACTIONS(2141), - [anon_sym_DQUOTE] = ACTIONS(2141), - [anon_sym_DOLLAR] = ACTIONS(2141), - [sym_raw_string] = ACTIONS(2141), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2141), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2141), - [anon_sym_BQUOTE] = ACTIONS(2141), - [anon_sym_LT_LPAREN] = ACTIONS(2141), - [anon_sym_GT_LPAREN] = ACTIONS(2141), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2141), - [anon_sym_SEMI] = ACTIONS(2141), - [anon_sym_LF] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2141), - }, - [2656] = { - [sym_concatenation] = STATE(1019), - [sym_string] = STATE(563), - [sym_simple_expansion] = STATE(563), - [sym_string_expansion] = STATE(563), - [sym_expansion] = STATE(563), - [sym_command_substitution] = STATE(563), - [sym_process_substitution] = STATE(563), - [aux_sym_for_statement_repeat1] = STATE(1019), - [anon_sym_RPAREN] = ACTIONS(6483), - [sym__special_characters] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1115), - [anon_sym_DOLLAR] = ACTIONS(1117), - [sym_raw_string] = ACTIONS(1119), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), - [anon_sym_BQUOTE] = ACTIONS(1125), - [anon_sym_LT_LPAREN] = ACTIONS(1127), - [anon_sym_GT_LPAREN] = ACTIONS(1127), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1119), - }, - [2657] = { - [sym_string] = STATE(2809), - [sym_simple_expansion] = STATE(2809), - [sym_string_expansion] = STATE(2809), - [sym_expansion] = STATE(2809), - [sym_command_substitution] = STATE(2809), - [sym_process_substitution] = STATE(2809), - [sym__special_characters] = ACTIONS(6485), - [anon_sym_DQUOTE] = ACTIONS(5758), - [anon_sym_DOLLAR] = ACTIONS(5760), - [sym_raw_string] = ACTIONS(6485), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5764), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5766), - [anon_sym_BQUOTE] = ACTIONS(5768), - [anon_sym_LT_LPAREN] = ACTIONS(5770), - [anon_sym_GT_LPAREN] = ACTIONS(5770), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6485), - }, - [2658] = { - [aux_sym_concatenation_repeat1] = STATE(2810), + [2496] = { + [aux_sym_concatenation_repeat1] = STATE(2595), [sym_file_descriptor] = ACTIONS(693), - [sym__concat] = ACTIONS(6085), + [sym__concat] = ACTIONS(1131), [sym_variable_name] = ACTIONS(693), [anon_sym_esac] = ACTIONS(695), [anon_sym_PIPE] = ACTIONS(695), @@ -70469,502 +63472,149 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(693), [anon_sym_AMP] = ACTIONS(695), }, - [2659] = { - [sym_file_descriptor] = ACTIONS(697), - [sym__concat] = ACTIONS(697), - [sym_variable_name] = ACTIONS(697), - [anon_sym_esac] = ACTIONS(699), - [anon_sym_PIPE] = ACTIONS(699), - [anon_sym_SEMI_SEMI] = ACTIONS(699), - [anon_sym_PIPE_AMP] = ACTIONS(699), - [anon_sym_AMP_AMP] = ACTIONS(699), - [anon_sym_PIPE_PIPE] = ACTIONS(699), - [anon_sym_LT] = ACTIONS(699), - [anon_sym_GT] = ACTIONS(699), - [anon_sym_GT_GT] = ACTIONS(699), - [anon_sym_AMP_GT] = ACTIONS(699), - [anon_sym_AMP_GT_GT] = ACTIONS(699), - [anon_sym_LT_AMP] = ACTIONS(699), - [anon_sym_GT_AMP] = ACTIONS(699), - [sym__special_characters] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(699), - [sym_raw_string] = ACTIONS(699), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(699), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(699), - [anon_sym_BQUOTE] = ACTIONS(699), - [anon_sym_LT_LPAREN] = ACTIONS(699), - [anon_sym_GT_LPAREN] = ACTIONS(699), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(699), - [anon_sym_SEMI] = ACTIONS(699), - [anon_sym_LF] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), - }, - [2660] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(6487), - [anon_sym_DOLLAR] = ACTIONS(229), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [2661] = { - [sym_file_descriptor] = ACTIONS(727), - [sym__concat] = ACTIONS(727), - [sym_variable_name] = ACTIONS(727), - [anon_sym_esac] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_SEMI_SEMI] = ACTIONS(729), - [anon_sym_PIPE_AMP] = ACTIONS(729), - [anon_sym_AMP_AMP] = ACTIONS(729), - [anon_sym_PIPE_PIPE] = ACTIONS(729), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_GT_GT] = ACTIONS(729), - [anon_sym_AMP_GT] = ACTIONS(729), - [anon_sym_AMP_GT_GT] = ACTIONS(729), - [anon_sym_LT_AMP] = ACTIONS(729), - [anon_sym_GT_AMP] = ACTIONS(729), - [sym__special_characters] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(729), - [anon_sym_DOLLAR] = ACTIONS(729), - [sym_raw_string] = ACTIONS(729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(729), - [anon_sym_LT_LPAREN] = ACTIONS(729), - [anon_sym_GT_LPAREN] = ACTIONS(729), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [anon_sym_LF] = ACTIONS(727), - [anon_sym_AMP] = ACTIONS(729), - }, - [2662] = { - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(731), - [sym_variable_name] = ACTIONS(731), - [anon_sym_esac] = ACTIONS(733), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(733), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(733), - [anon_sym_LT_AMP] = ACTIONS(733), - [anon_sym_GT_AMP] = ACTIONS(733), - [sym__special_characters] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), - }, - [2663] = { - [sym_file_descriptor] = ACTIONS(735), - [sym__concat] = ACTIONS(735), - [sym_variable_name] = ACTIONS(735), - [anon_sym_esac] = ACTIONS(737), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [anon_sym_LT] = ACTIONS(737), - [anon_sym_GT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(737), - [anon_sym_AMP_GT] = ACTIONS(737), - [anon_sym_AMP_GT_GT] = ACTIONS(737), - [anon_sym_LT_AMP] = ACTIONS(737), - [anon_sym_GT_AMP] = ACTIONS(737), - [sym__special_characters] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), - [anon_sym_BQUOTE] = ACTIONS(737), - [anon_sym_LT_LPAREN] = ACTIONS(737), - [anon_sym_GT_LPAREN] = ACTIONS(737), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(737), - }, - [2664] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(6489), - [sym_comment] = ACTIONS(53), - }, - [2665] = { - [sym_concatenation] = STATE(2815), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2815), - [anon_sym_RBRACE] = ACTIONS(6491), - [anon_sym_EQ] = ACTIONS(6493), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6497), - [anon_sym_COLON] = ACTIONS(6493), - [anon_sym_COLON_QMARK] = ACTIONS(6493), - [anon_sym_COLON_DASH] = ACTIONS(6493), - [anon_sym_PERCENT] = ACTIONS(6493), - [anon_sym_DASH] = ACTIONS(6493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2666] = { - [sym_subscript] = STATE(2819), - [sym_variable_name] = ACTIONS(6499), - [anon_sym_DOLLAR] = ACTIONS(6501), - [anon_sym_DASH] = ACTIONS(6501), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6503), - [anon_sym_STAR] = ACTIONS(6501), - [anon_sym_AT] = ACTIONS(6501), - [anon_sym_QMARK] = ACTIONS(6501), - [anon_sym_0] = ACTIONS(6505), - [anon_sym__] = ACTIONS(6505), - }, - [2667] = { - [sym_concatenation] = STATE(2822), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2822), - [anon_sym_RBRACE] = ACTIONS(6507), - [anon_sym_EQ] = ACTIONS(6509), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6511), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6513), - [anon_sym_COLON] = ACTIONS(6509), - [anon_sym_COLON_QMARK] = ACTIONS(6509), - [anon_sym_COLON_DASH] = ACTIONS(6509), - [anon_sym_PERCENT] = ACTIONS(6509), - [anon_sym_DASH] = ACTIONS(6509), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2668] = { - [sym_concatenation] = STATE(2825), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2825), - [anon_sym_RBRACE] = ACTIONS(6515), - [anon_sym_EQ] = ACTIONS(6517), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6519), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6521), - [anon_sym_COLON] = ACTIONS(6517), - [anon_sym_COLON_QMARK] = ACTIONS(6517), - [anon_sym_COLON_DASH] = ACTIONS(6517), - [anon_sym_PERCENT] = ACTIONS(6517), - [anon_sym_DASH] = ACTIONS(6517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2669] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(6523), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [sym_comment] = ACTIONS(53), - }, - [2670] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(6523), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [2671] = { - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_PIPE_AMP] = ACTIONS(925), - [anon_sym_AMP_AMP] = ACTIONS(927), - [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_BQUOTE] = ACTIONS(6523), - [sym_comment] = ACTIONS(53), - }, - [2672] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_PIPE_AMP] = ACTIONS(925), - [anon_sym_AMP_AMP] = ACTIONS(927), - [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(6523), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [2673] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(6525), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [sym_comment] = ACTIONS(53), - }, - [2674] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(6525), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [2675] = { - [sym_file_redirect] = STATE(2566), - [sym_heredoc_redirect] = STATE(2566), - [sym_heredoc_body] = STATE(1064), - [sym_herestring_redirect] = STATE(2566), - [aux_sym_while_statement_repeat1] = STATE(2566), + [2497] = { + [sym_file_redirect] = STATE(2412), + [sym_heredoc_redirect] = STATE(2412), + [sym_heredoc_body] = STATE(1036), + [sym_herestring_redirect] = STATE(2412), + [aux_sym_while_statement_repeat1] = STATE(2412), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(5332), - [anon_sym_esac] = ACTIONS(2273), - [anon_sym_PIPE] = ACTIONS(2273), - [anon_sym_SEMI_SEMI] = ACTIONS(2273), - [anon_sym_PIPE_AMP] = ACTIONS(2273), - [anon_sym_AMP_AMP] = ACTIONS(2273), - [anon_sym_PIPE_PIPE] = ACTIONS(2273), - [anon_sym_LT] = ACTIONS(5336), - [anon_sym_GT] = ACTIONS(5336), - [anon_sym_GT_GT] = ACTIONS(5336), - [anon_sym_AMP_GT] = ACTIONS(5336), - [anon_sym_AMP_GT_GT] = ACTIONS(5336), - [anon_sym_LT_AMP] = ACTIONS(5336), - [anon_sym_GT_AMP] = ACTIONS(5336), + [sym_file_descriptor] = ACTIONS(5127), + [anon_sym_esac] = ACTIONS(2235), + [anon_sym_PIPE] = ACTIONS(2235), + [anon_sym_SEMI_SEMI] = ACTIONS(2235), + [anon_sym_PIPE_AMP] = ACTIONS(2235), + [anon_sym_AMP_AMP] = ACTIONS(2235), + [anon_sym_PIPE_PIPE] = ACTIONS(2235), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_GT_GT] = ACTIONS(5131), + [anon_sym_AMP_GT] = ACTIONS(5131), + [anon_sym_AMP_GT_GT] = ACTIONS(5131), + [anon_sym_LT_AMP] = ACTIONS(5131), + [anon_sym_GT_AMP] = ACTIONS(5131), [anon_sym_LT_LT] = ACTIONS(349), [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(5338), + [anon_sym_LT_LT_LT] = ACTIONS(5133), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2273), - [anon_sym_LF] = ACTIONS(2275), - [anon_sym_AMP] = ACTIONS(2273), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_LF] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(2235), }, - [2676] = { - [sym_compound_statement] = STATE(2828), + [2498] = { + [sym_compound_statement] = STATE(2596), [anon_sym_LBRACE] = ACTIONS(455), [sym_comment] = ACTIONS(53), }, - [2677] = { - [anon_sym_LT] = ACTIONS(6527), - [anon_sym_GT] = ACTIONS(6527), - [anon_sym_GT_GT] = ACTIONS(6529), - [anon_sym_AMP_GT] = ACTIONS(6527), - [anon_sym_AMP_GT_GT] = ACTIONS(6529), - [anon_sym_LT_AMP] = ACTIONS(6529), - [anon_sym_GT_AMP] = ACTIONS(6529), + [2499] = { + [anon_sym_LT] = ACTIONS(6055), + [anon_sym_GT] = ACTIONS(6055), + [anon_sym_GT_GT] = ACTIONS(6057), + [anon_sym_AMP_GT] = ACTIONS(6055), + [anon_sym_AMP_GT_GT] = ACTIONS(6057), + [anon_sym_LT_AMP] = ACTIONS(6057), + [anon_sym_GT_AMP] = ACTIONS(6057), [sym_comment] = ACTIONS(53), }, - [2678] = { - [sym_concatenation] = STATE(1111), - [sym_string] = STATE(2833), - [sym_simple_expansion] = STATE(2833), - [sym_string_expansion] = STATE(2833), - [sym_expansion] = STATE(2833), - [sym_command_substitution] = STATE(2833), - [sym_process_substitution] = STATE(2833), - [sym__special_characters] = ACTIONS(6531), - [anon_sym_DQUOTE] = ACTIONS(6533), - [anon_sym_DOLLAR] = ACTIONS(6535), - [sym_raw_string] = ACTIONS(6537), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6539), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6541), - [anon_sym_BQUOTE] = ACTIONS(6543), - [anon_sym_LT_LPAREN] = ACTIONS(6545), - [anon_sym_GT_LPAREN] = ACTIONS(6545), + [2500] = { + [sym_concatenation] = STATE(1080), + [sym_string] = STATE(2601), + [sym_simple_expansion] = STATE(2601), + [sym_string_expansion] = STATE(2601), + [sym_expansion] = STATE(2601), + [sym_command_substitution] = STATE(2601), + [sym_process_substitution] = STATE(2601), + [sym__special_characters] = ACTIONS(6059), + [anon_sym_DQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR] = ACTIONS(6063), + [sym_raw_string] = ACTIONS(6065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6069), + [anon_sym_BQUOTE] = ACTIONS(6071), + [anon_sym_LT_LPAREN] = ACTIONS(6073), + [anon_sym_GT_LPAREN] = ACTIONS(6073), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6537), + [sym_word] = ACTIONS(6065), }, - [2679] = { - [anon_sym_LT] = ACTIONS(6547), - [anon_sym_GT] = ACTIONS(6547), - [anon_sym_GT_GT] = ACTIONS(6549), - [anon_sym_AMP_GT] = ACTIONS(6547), - [anon_sym_AMP_GT_GT] = ACTIONS(6549), - [anon_sym_LT_AMP] = ACTIONS(6549), - [anon_sym_GT_AMP] = ACTIONS(6549), + [2501] = { + [anon_sym_LT] = ACTIONS(6075), + [anon_sym_GT] = ACTIONS(6075), + [anon_sym_GT_GT] = ACTIONS(6077), + [anon_sym_AMP_GT] = ACTIONS(6075), + [anon_sym_AMP_GT_GT] = ACTIONS(6077), + [anon_sym_LT_AMP] = ACTIONS(6077), + [anon_sym_GT_AMP] = ACTIONS(6077), [sym_comment] = ACTIONS(53), }, - [2680] = { - [sym_concatenation] = STATE(1161), - [sym_string] = STATE(2840), - [sym_simple_expansion] = STATE(2840), - [sym_string_expansion] = STATE(2840), - [sym_expansion] = STATE(2840), - [sym_command_substitution] = STATE(2840), - [sym_process_substitution] = STATE(2840), - [sym__special_characters] = ACTIONS(6551), - [anon_sym_DQUOTE] = ACTIONS(2500), - [anon_sym_DOLLAR] = ACTIONS(2502), - [sym_raw_string] = ACTIONS(6553), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2506), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2508), - [anon_sym_BQUOTE] = ACTIONS(2510), - [anon_sym_LT_LPAREN] = ACTIONS(2512), - [anon_sym_GT_LPAREN] = ACTIONS(2512), + [2502] = { + [sym_concatenation] = STATE(1130), + [sym_string] = STATE(2608), + [sym_simple_expansion] = STATE(2608), + [sym_string_expansion] = STATE(2608), + [sym_expansion] = STATE(2608), + [sym_command_substitution] = STATE(2608), + [sym_process_substitution] = STATE(2608), + [sym__special_characters] = ACTIONS(6079), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_DOLLAR] = ACTIONS(2460), + [sym_raw_string] = ACTIONS(6081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2466), + [anon_sym_BQUOTE] = ACTIONS(2468), + [anon_sym_LT_LPAREN] = ACTIONS(2470), + [anon_sym_GT_LPAREN] = ACTIONS(2470), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6553), + [sym_word] = ACTIONS(6081), }, - [2681] = { - [sym_concatenation] = STATE(1165), - [sym_string] = STATE(2842), - [sym_simple_expansion] = STATE(2842), - [sym_string_expansion] = STATE(2842), - [sym_expansion] = STATE(2842), - [sym_command_substitution] = STATE(2842), - [sym_process_substitution] = STATE(2842), - [sym__special_characters] = ACTIONS(6555), - [anon_sym_DQUOTE] = ACTIONS(2500), - [anon_sym_DOLLAR] = ACTIONS(2502), - [sym_raw_string] = ACTIONS(6557), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2506), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2508), - [anon_sym_BQUOTE] = ACTIONS(2510), - [anon_sym_LT_LPAREN] = ACTIONS(2512), - [anon_sym_GT_LPAREN] = ACTIONS(2512), + [2503] = { + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(2610), + [sym_simple_expansion] = STATE(2610), + [sym_string_expansion] = STATE(2610), + [sym_expansion] = STATE(2610), + [sym_command_substitution] = STATE(2610), + [sym_process_substitution] = STATE(2610), + [sym__special_characters] = ACTIONS(6083), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_DOLLAR] = ACTIONS(2460), + [sym_raw_string] = ACTIONS(6085), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2466), + [anon_sym_BQUOTE] = ACTIONS(2468), + [anon_sym_LT_LPAREN] = ACTIONS(2470), + [anon_sym_GT_LPAREN] = ACTIONS(2470), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6557), + [sym_word] = ACTIONS(6085), }, - [2682] = { - [sym_file_redirect] = STATE(2843), - [sym_heredoc_redirect] = STATE(2843), - [sym_herestring_redirect] = STATE(2843), - [aux_sym_while_statement_repeat1] = STATE(2843), - [sym_file_descriptor] = ACTIONS(6113), - [anon_sym_esac] = ACTIONS(2520), - [anon_sym_PIPE] = ACTIONS(2520), - [anon_sym_SEMI_SEMI] = ACTIONS(2520), - [anon_sym_PIPE_AMP] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_LT] = ACTIONS(6115), - [anon_sym_GT] = ACTIONS(6115), - [anon_sym_GT_GT] = ACTIONS(6115), - [anon_sym_AMP_GT] = ACTIONS(6115), - [anon_sym_AMP_GT_GT] = ACTIONS(6115), - [anon_sym_LT_AMP] = ACTIONS(6115), - [anon_sym_GT_AMP] = ACTIONS(6115), - [anon_sym_LT_LT] = ACTIONS(1357), - [anon_sym_LT_LT_DASH] = ACTIONS(1357), - [anon_sym_LT_LT_LT] = ACTIONS(6117), + [2504] = { + [sym_file_redirect] = STATE(2611), + [sym_heredoc_redirect] = STATE(2611), + [sym_herestring_redirect] = STATE(2611), + [aux_sym_while_statement_repeat1] = STATE(2611), + [sym_file_descriptor] = ACTIONS(5768), + [anon_sym_esac] = ACTIONS(2478), + [anon_sym_PIPE] = ACTIONS(2478), + [anon_sym_SEMI_SEMI] = ACTIONS(2478), + [anon_sym_PIPE_AMP] = ACTIONS(2478), + [anon_sym_AMP_AMP] = ACTIONS(2478), + [anon_sym_PIPE_PIPE] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(5770), + [anon_sym_GT] = ACTIONS(5770), + [anon_sym_GT_GT] = ACTIONS(5770), + [anon_sym_AMP_GT] = ACTIONS(5770), + [anon_sym_AMP_GT_GT] = ACTIONS(5770), + [anon_sym_LT_AMP] = ACTIONS(5770), + [anon_sym_GT_AMP] = ACTIONS(5770), + [anon_sym_LT_LT] = ACTIONS(1345), + [anon_sym_LT_LT_DASH] = ACTIONS(1345), + [anon_sym_LT_LT_LT] = ACTIONS(5772), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_LF] = ACTIONS(2522), - [anon_sym_AMP] = ACTIONS(2520), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_LF] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2478), }, - [2683] = { + [2505] = { [sym_variable_name] = ACTIONS(1107), [anon_sym_esac] = ACTIONS(1109), [anon_sym_PIPE] = ACTIONS(1109), @@ -70988,16 +63638,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1107), [anon_sym_AMP] = ACTIONS(1109), }, - [2684] = { - [sym_concatenation] = STATE(2845), + [2506] = { + [sym_concatenation] = STATE(2613), [sym_string] = STATE(563), [sym_simple_expansion] = STATE(563), [sym_string_expansion] = STATE(563), [sym_expansion] = STATE(563), [sym_command_substitution] = STATE(563), [sym_process_substitution] = STATE(563), - [aux_sym_for_statement_repeat1] = STATE(2845), - [anon_sym_RPAREN] = ACTIONS(6559), + [aux_sym_for_statement_repeat1] = STATE(2613), + [anon_sym_RPAREN] = ACTIONS(6087), [sym__special_characters] = ACTIONS(1113), [anon_sym_DQUOTE] = ACTIONS(1115), [anon_sym_DOLLAR] = ACTIONS(1117), @@ -71010,9 +63660,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(1119), }, - [2685] = { - [aux_sym_concatenation_repeat1] = STATE(2492), - [sym__concat] = ACTIONS(5778), + [2507] = { + [aux_sym_concatenation_repeat1] = STATE(2364), + [sym__concat] = ACTIONS(5519), [sym_variable_name] = ACTIONS(1129), [anon_sym_esac] = ACTIONS(1133), [anon_sym_PIPE] = ACTIONS(1133), @@ -71036,9 +63686,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(1133), }, - [2686] = { - [aux_sym_concatenation_repeat1] = STATE(2492), - [sym__concat] = ACTIONS(5778), + [2508] = { + [aux_sym_concatenation_repeat1] = STATE(2364), + [sym__concat] = ACTIONS(5519), [sym_variable_name] = ACTIONS(1107), [anon_sym_esac] = ACTIONS(1109), [anon_sym_PIPE] = ACTIONS(1109), @@ -71062,154 +63712,154 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1107), [anon_sym_AMP] = ACTIONS(1109), }, - [2687] = { - [sym__concat] = ACTIONS(1654), - [sym_variable_name] = ACTIONS(1654), - [anon_sym_esac] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [sym__special_characters] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1656), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1656), - [anon_sym_BQUOTE] = ACTIONS(1656), - [anon_sym_LT_LPAREN] = ACTIONS(1656), - [anon_sym_GT_LPAREN] = ACTIONS(1656), + [2509] = { + [sym__concat] = ACTIONS(1642), + [sym_variable_name] = ACTIONS(1642), + [anon_sym_esac] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [sym__special_characters] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1644), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1644), + [anon_sym_LT_LPAREN] = ACTIONS(1644), + [anon_sym_GT_LPAREN] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1656), - [sym_word] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1644), + [sym_word] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, - [2688] = { - [aux_sym_concatenation_repeat1] = STATE(2688), - [sym__concat] = ACTIONS(6561), - [sym_variable_name] = ACTIONS(1654), - [anon_sym_esac] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [sym__special_characters] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1656), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1656), - [anon_sym_BQUOTE] = ACTIONS(1656), - [anon_sym_LT_LPAREN] = ACTIONS(1656), - [anon_sym_GT_LPAREN] = ACTIONS(1656), + [2510] = { + [aux_sym_concatenation_repeat1] = STATE(2510), + [sym__concat] = ACTIONS(6089), + [sym_variable_name] = ACTIONS(1642), + [anon_sym_esac] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [sym__special_characters] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1644), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1644), + [anon_sym_LT_LPAREN] = ACTIONS(1644), + [anon_sym_GT_LPAREN] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1656), - [sym_word] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1644), + [sym_word] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, - [2689] = { - [sym__concat] = ACTIONS(1703), - [sym_variable_name] = ACTIONS(1703), - [anon_sym_esac] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_SEMI_SEMI] = ACTIONS(1705), - [anon_sym_PIPE_AMP] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1705), - [anon_sym_PIPE_PIPE] = ACTIONS(1705), - [sym__special_characters] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1705), - [sym_raw_string] = ACTIONS(1705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1705), - [anon_sym_BQUOTE] = ACTIONS(1705), - [anon_sym_LT_LPAREN] = ACTIONS(1705), - [anon_sym_GT_LPAREN] = ACTIONS(1705), + [2511] = { + [sym__concat] = ACTIONS(1691), + [sym_variable_name] = ACTIONS(1691), + [anon_sym_esac] = ACTIONS(1693), + [anon_sym_PIPE] = ACTIONS(1693), + [anon_sym_SEMI_SEMI] = ACTIONS(1693), + [anon_sym_PIPE_AMP] = ACTIONS(1693), + [anon_sym_AMP_AMP] = ACTIONS(1693), + [anon_sym_PIPE_PIPE] = ACTIONS(1693), + [sym__special_characters] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1693), + [anon_sym_DOLLAR] = ACTIONS(1693), + [sym_raw_string] = ACTIONS(1693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1693), + [anon_sym_BQUOTE] = ACTIONS(1693), + [anon_sym_LT_LPAREN] = ACTIONS(1693), + [anon_sym_GT_LPAREN] = ACTIONS(1693), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1705), - [sym_word] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_LF] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1705), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1693), + [sym_word] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_LF] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1693), }, - [2690] = { - [sym_concatenation] = STATE(2849), - [sym_string] = STATE(2848), - [sym_simple_expansion] = STATE(2848), - [sym_string_expansion] = STATE(2848), - [sym_expansion] = STATE(2848), - [sym_command_substitution] = STATE(2848), - [sym_process_substitution] = STATE(2848), - [anon_sym_RBRACE] = ACTIONS(6564), - [sym__special_characters] = ACTIONS(6566), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(6568), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), + [2512] = { + [sym_concatenation] = STATE(2617), + [sym_string] = STATE(2616), + [sym_simple_expansion] = STATE(2616), + [sym_string_expansion] = STATE(2616), + [sym_expansion] = STATE(2616), + [sym_command_substitution] = STATE(2616), + [sym_process_substitution] = STATE(2616), + [anon_sym_RBRACE] = ACTIONS(6092), + [sym__special_characters] = ACTIONS(6094), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(6096), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6568), + [sym_word] = ACTIONS(6096), }, - [2691] = { - [sym__concat] = ACTIONS(1744), - [sym_variable_name] = ACTIONS(1744), - [anon_sym_esac] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_SEMI_SEMI] = ACTIONS(1746), - [anon_sym_PIPE_AMP] = ACTIONS(1746), - [anon_sym_AMP_AMP] = ACTIONS(1746), - [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [sym__special_characters] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1746), - [sym_raw_string] = ACTIONS(1746), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1746), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_LT_LPAREN] = ACTIONS(1746), - [anon_sym_GT_LPAREN] = ACTIONS(1746), + [2513] = { + [sym__concat] = ACTIONS(1732), + [sym_variable_name] = ACTIONS(1732), + [anon_sym_esac] = ACTIONS(1734), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_SEMI_SEMI] = ACTIONS(1734), + [anon_sym_PIPE_AMP] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [sym__special_characters] = ACTIONS(1734), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1734), + [sym_raw_string] = ACTIONS(1734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1734), + [anon_sym_BQUOTE] = ACTIONS(1734), + [anon_sym_LT_LPAREN] = ACTIONS(1734), + [anon_sym_GT_LPAREN] = ACTIONS(1734), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1746), - [sym_word] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LF] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1746), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1734), + [sym_word] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_LF] = ACTIONS(1732), + [anon_sym_AMP] = ACTIONS(1734), }, - [2692] = { + [2514] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6570), + [sym_regex_without_right_brace] = ACTIONS(6098), }, - [2693] = { - [sym_concatenation] = STATE(839), + [2515] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6572), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6100), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -71217,34 +63867,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2694] = { + [2516] = { [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(6574), + [anon_sym_EQ] = ACTIONS(6102), [sym_comment] = ACTIONS(53), }, - [2695] = { - [sym_concatenation] = STATE(2855), + [2517] = { + [sym_concatenation] = STATE(2623), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2855), - [anon_sym_RBRACE] = ACTIONS(6576), - [anon_sym_EQ] = ACTIONS(6578), + [aux_sym_expansion_repeat1] = STATE(2623), + [anon_sym_RBRACE] = ACTIONS(6104), + [anon_sym_EQ] = ACTIONS(6106), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6580), + [anon_sym_POUND] = ACTIONS(6108), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6582), - [anon_sym_COLON] = ACTIONS(6578), - [anon_sym_COLON_QMARK] = ACTIONS(6578), - [anon_sym_COLON_DASH] = ACTIONS(6578), - [anon_sym_PERCENT] = ACTIONS(6578), - [anon_sym_DASH] = ACTIONS(6578), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -71252,29 +63902,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2696] = { - [sym_concatenation] = STATE(2858), + [2518] = { + [sym_concatenation] = STATE(2626), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2858), - [anon_sym_RBRACE] = ACTIONS(6584), - [anon_sym_EQ] = ACTIONS(6586), + [aux_sym_expansion_repeat1] = STATE(2626), + [anon_sym_RBRACE] = ACTIONS(6112), + [anon_sym_EQ] = ACTIONS(6114), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6588), + [anon_sym_POUND] = ACTIONS(6116), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6590), - [anon_sym_COLON] = ACTIONS(6586), - [anon_sym_COLON_QMARK] = ACTIONS(6586), - [anon_sym_COLON_DASH] = ACTIONS(6586), - [anon_sym_PERCENT] = ACTIONS(6586), - [anon_sym_DASH] = ACTIONS(6586), + [aux_sym_SLASH] = ACTIONS(6118), + [anon_sym_COLON] = ACTIONS(6114), + [anon_sym_COLON_QMARK] = ACTIONS(6114), + [anon_sym_COLON_DASH] = ACTIONS(6114), + [anon_sym_PERCENT] = ACTIONS(6114), + [anon_sym_DASH] = ACTIONS(6114), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -71282,29 +63932,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2697] = { - [sym_concatenation] = STATE(2860), + [2519] = { + [sym_concatenation] = STATE(2628), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2860), - [anon_sym_RBRACE] = ACTIONS(6564), - [anon_sym_EQ] = ACTIONS(6592), + [aux_sym_expansion_repeat1] = STATE(2628), + [anon_sym_RBRACE] = ACTIONS(6092), + [anon_sym_EQ] = ACTIONS(6120), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6594), + [anon_sym_POUND] = ACTIONS(6122), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6596), - [anon_sym_COLON] = ACTIONS(6592), - [anon_sym_COLON_QMARK] = ACTIONS(6592), - [anon_sym_COLON_DASH] = ACTIONS(6592), - [anon_sym_PERCENT] = ACTIONS(6592), - [anon_sym_DASH] = ACTIONS(6592), + [aux_sym_SLASH] = ACTIONS(6124), + [anon_sym_COLON] = ACTIONS(6120), + [anon_sym_COLON_QMARK] = ACTIONS(6120), + [anon_sym_COLON_DASH] = ACTIONS(6120), + [anon_sym_PERCENT] = ACTIONS(6120), + [anon_sym_DASH] = ACTIONS(6120), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -71312,57 +63962,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2698] = { - [sym__concat] = ACTIONS(1810), - [sym_variable_name] = ACTIONS(1810), - [anon_sym_esac] = ACTIONS(1812), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_SEMI_SEMI] = ACTIONS(1812), - [anon_sym_PIPE_AMP] = ACTIONS(1812), - [anon_sym_AMP_AMP] = ACTIONS(1812), - [anon_sym_PIPE_PIPE] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(1812), - [anon_sym_DQUOTE] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1812), - [sym_raw_string] = ACTIONS(1812), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1812), - [anon_sym_GT_LPAREN] = ACTIONS(1812), + [2520] = { + [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(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1812), - [sym_word] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_LF] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1812), + [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), }, - [2699] = { + [2521] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6598), + [sym_regex_without_right_brace] = ACTIONS(6126), }, - [2700] = { - [sym_concatenation] = STATE(839), + [2522] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6600), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6128), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -71370,57 +64020,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2701] = { - [sym__concat] = ACTIONS(1818), - [sym_variable_name] = ACTIONS(1818), - [anon_sym_esac] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_SEMI_SEMI] = ACTIONS(1820), - [anon_sym_PIPE_AMP] = ACTIONS(1820), - [anon_sym_AMP_AMP] = ACTIONS(1820), - [anon_sym_PIPE_PIPE] = ACTIONS(1820), - [sym__special_characters] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1820), - [sym_raw_string] = ACTIONS(1820), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1820), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1820), - [anon_sym_BQUOTE] = ACTIONS(1820), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), + [2523] = { + [sym__concat] = ACTIONS(1806), + [sym_variable_name] = ACTIONS(1806), + [anon_sym_esac] = ACTIONS(1808), + [anon_sym_PIPE] = ACTIONS(1808), + [anon_sym_SEMI_SEMI] = ACTIONS(1808), + [anon_sym_PIPE_AMP] = ACTIONS(1808), + [anon_sym_AMP_AMP] = ACTIONS(1808), + [anon_sym_PIPE_PIPE] = ACTIONS(1808), + [sym__special_characters] = ACTIONS(1808), + [anon_sym_DQUOTE] = ACTIONS(1808), + [anon_sym_DOLLAR] = ACTIONS(1808), + [sym_raw_string] = ACTIONS(1808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1808), + [anon_sym_BQUOTE] = ACTIONS(1808), + [anon_sym_LT_LPAREN] = ACTIONS(1808), + [anon_sym_GT_LPAREN] = ACTIONS(1808), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1820), - [sym_word] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_LF] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1820), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1808), + [sym_word] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1808), + [anon_sym_LF] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1808), }, - [2702] = { + [2524] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6602), + [sym_regex_without_right_brace] = ACTIONS(6130), }, - [2703] = { - [sym_concatenation] = STATE(839), + [2525] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6564), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6092), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -71428,200 +64078,200 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2704] = { - [sym__concat] = ACTIONS(1952), - [sym_variable_name] = ACTIONS(1952), - [anon_sym_esac] = ACTIONS(1954), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_SEMI_SEMI] = ACTIONS(1954), - [anon_sym_PIPE_AMP] = ACTIONS(1954), - [anon_sym_AMP_AMP] = ACTIONS(1954), - [anon_sym_PIPE_PIPE] = ACTIONS(1954), - [sym__special_characters] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(1954), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1954), - [anon_sym_BQUOTE] = ACTIONS(1954), - [anon_sym_LT_LPAREN] = ACTIONS(1954), - [anon_sym_GT_LPAREN] = ACTIONS(1954), + [2526] = { + [sym__concat] = ACTIONS(1940), + [sym_variable_name] = ACTIONS(1940), + [anon_sym_esac] = ACTIONS(1942), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1942), + [anon_sym_PIPE_AMP] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1942), + [anon_sym_PIPE_PIPE] = ACTIONS(1942), + [sym__special_characters] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [anon_sym_DOLLAR] = ACTIONS(1942), + [sym_raw_string] = ACTIONS(1942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1942), + [anon_sym_BQUOTE] = ACTIONS(1942), + [anon_sym_LT_LPAREN] = ACTIONS(1942), + [anon_sym_GT_LPAREN] = ACTIONS(1942), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1954), - [sym_word] = ACTIONS(1954), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_LF] = ACTIONS(1952), - [anon_sym_AMP] = ACTIONS(1954), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1942), + [sym_word] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1942), }, - [2705] = { - [sym__concat] = ACTIONS(2018), - [sym_variable_name] = ACTIONS(2018), - [anon_sym_esac] = ACTIONS(2020), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_SEMI_SEMI] = ACTIONS(2020), - [anon_sym_PIPE_AMP] = ACTIONS(2020), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [sym__special_characters] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym_DOLLAR] = ACTIONS(2020), - [sym_raw_string] = ACTIONS(2020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2020), - [anon_sym_BQUOTE] = ACTIONS(2020), - [anon_sym_LT_LPAREN] = ACTIONS(2020), - [anon_sym_GT_LPAREN] = ACTIONS(2020), + [2527] = { + [sym__concat] = ACTIONS(2006), + [sym_variable_name] = ACTIONS(2006), + [anon_sym_esac] = ACTIONS(2008), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_SEMI_SEMI] = ACTIONS(2008), + [anon_sym_PIPE_AMP] = ACTIONS(2008), + [anon_sym_AMP_AMP] = ACTIONS(2008), + [anon_sym_PIPE_PIPE] = ACTIONS(2008), + [sym__special_characters] = ACTIONS(2008), + [anon_sym_DQUOTE] = ACTIONS(2008), + [anon_sym_DOLLAR] = ACTIONS(2008), + [sym_raw_string] = ACTIONS(2008), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2008), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2008), + [anon_sym_BQUOTE] = ACTIONS(2008), + [anon_sym_LT_LPAREN] = ACTIONS(2008), + [anon_sym_GT_LPAREN] = ACTIONS(2008), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2020), - [sym_word] = ACTIONS(2020), - [anon_sym_SEMI] = ACTIONS(2020), - [anon_sym_LF] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2020), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2008), + [sym_word] = ACTIONS(2008), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_LF] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2008), }, - [2706] = { - [sym__concat] = ACTIONS(1654), - [anon_sym_esac] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [sym__special_characters] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1656), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1656), - [anon_sym_BQUOTE] = ACTIONS(1656), - [anon_sym_LT_LPAREN] = ACTIONS(1656), - [anon_sym_GT_LPAREN] = ACTIONS(1656), + [2528] = { + [sym__concat] = ACTIONS(1642), + [anon_sym_esac] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [sym__special_characters] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1644), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1644), + [anon_sym_LT_LPAREN] = ACTIONS(1644), + [anon_sym_GT_LPAREN] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1656), - [sym_word] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1644), + [sym_word] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, - [2707] = { - [aux_sym_concatenation_repeat1] = STATE(2707), - [sym__concat] = ACTIONS(6604), - [anon_sym_esac] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [sym__special_characters] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1656), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1656), - [anon_sym_BQUOTE] = ACTIONS(1656), - [anon_sym_LT_LPAREN] = ACTIONS(1656), - [anon_sym_GT_LPAREN] = ACTIONS(1656), + [2529] = { + [aux_sym_concatenation_repeat1] = STATE(2529), + [sym__concat] = ACTIONS(6132), + [anon_sym_esac] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [sym__special_characters] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1644), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1644), + [anon_sym_LT_LPAREN] = ACTIONS(1644), + [anon_sym_GT_LPAREN] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1656), - [sym_word] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1644), + [sym_word] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, - [2708] = { - [sym__concat] = ACTIONS(1703), - [anon_sym_esac] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_SEMI_SEMI] = ACTIONS(1705), - [anon_sym_PIPE_AMP] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1705), - [anon_sym_PIPE_PIPE] = ACTIONS(1705), - [sym__special_characters] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1705), - [sym_raw_string] = ACTIONS(1705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1705), - [anon_sym_BQUOTE] = ACTIONS(1705), - [anon_sym_LT_LPAREN] = ACTIONS(1705), - [anon_sym_GT_LPAREN] = ACTIONS(1705), + [2530] = { + [sym__concat] = ACTIONS(1691), + [anon_sym_esac] = ACTIONS(1693), + [anon_sym_PIPE] = ACTIONS(1693), + [anon_sym_SEMI_SEMI] = ACTIONS(1693), + [anon_sym_PIPE_AMP] = ACTIONS(1693), + [anon_sym_AMP_AMP] = ACTIONS(1693), + [anon_sym_PIPE_PIPE] = ACTIONS(1693), + [sym__special_characters] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1693), + [anon_sym_DOLLAR] = ACTIONS(1693), + [sym_raw_string] = ACTIONS(1693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1693), + [anon_sym_BQUOTE] = ACTIONS(1693), + [anon_sym_LT_LPAREN] = ACTIONS(1693), + [anon_sym_GT_LPAREN] = ACTIONS(1693), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1705), - [sym_word] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_LF] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1705), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1693), + [sym_word] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_LF] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1693), }, - [2709] = { - [sym_concatenation] = STATE(2867), - [sym_string] = STATE(2866), - [sym_simple_expansion] = STATE(2866), - [sym_string_expansion] = STATE(2866), - [sym_expansion] = STATE(2866), - [sym_command_substitution] = STATE(2866), - [sym_process_substitution] = STATE(2866), - [anon_sym_RBRACE] = ACTIONS(6607), - [sym__special_characters] = ACTIONS(6609), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(6611), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), + [2531] = { + [sym_concatenation] = STATE(2635), + [sym_string] = STATE(2634), + [sym_simple_expansion] = STATE(2634), + [sym_string_expansion] = STATE(2634), + [sym_expansion] = STATE(2634), + [sym_command_substitution] = STATE(2634), + [sym_process_substitution] = STATE(2634), + [anon_sym_RBRACE] = ACTIONS(6135), + [sym__special_characters] = ACTIONS(6137), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(6139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6611), + [sym_word] = ACTIONS(6139), }, - [2710] = { - [sym__concat] = ACTIONS(1744), - [anon_sym_esac] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_SEMI_SEMI] = ACTIONS(1746), - [anon_sym_PIPE_AMP] = ACTIONS(1746), - [anon_sym_AMP_AMP] = ACTIONS(1746), - [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [sym__special_characters] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1746), - [sym_raw_string] = ACTIONS(1746), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1746), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_LT_LPAREN] = ACTIONS(1746), - [anon_sym_GT_LPAREN] = ACTIONS(1746), + [2532] = { + [sym__concat] = ACTIONS(1732), + [anon_sym_esac] = ACTIONS(1734), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_SEMI_SEMI] = ACTIONS(1734), + [anon_sym_PIPE_AMP] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [sym__special_characters] = ACTIONS(1734), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1734), + [sym_raw_string] = ACTIONS(1734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1734), + [anon_sym_BQUOTE] = ACTIONS(1734), + [anon_sym_LT_LPAREN] = ACTIONS(1734), + [anon_sym_GT_LPAREN] = ACTIONS(1734), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1746), - [sym_word] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LF] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1746), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1734), + [sym_word] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_LF] = ACTIONS(1732), + [anon_sym_AMP] = ACTIONS(1734), }, - [2711] = { + [2533] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6613), + [sym_regex_without_right_brace] = ACTIONS(6141), }, - [2712] = { - [sym_concatenation] = STATE(839), + [2534] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6615), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6143), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -71629,34 +64279,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2713] = { + [2535] = { [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(6617), + [anon_sym_EQ] = ACTIONS(6145), [sym_comment] = ACTIONS(53), }, - [2714] = { - [sym_concatenation] = STATE(2873), + [2536] = { + [sym_concatenation] = STATE(2641), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2873), - [anon_sym_RBRACE] = ACTIONS(6619), - [anon_sym_EQ] = ACTIONS(6621), + [aux_sym_expansion_repeat1] = STATE(2641), + [anon_sym_RBRACE] = ACTIONS(6147), + [anon_sym_EQ] = ACTIONS(6149), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6623), + [anon_sym_POUND] = ACTIONS(6151), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6625), - [anon_sym_COLON] = ACTIONS(6621), - [anon_sym_COLON_QMARK] = ACTIONS(6621), - [anon_sym_COLON_DASH] = ACTIONS(6621), - [anon_sym_PERCENT] = ACTIONS(6621), - [anon_sym_DASH] = ACTIONS(6621), + [aux_sym_SLASH] = ACTIONS(6153), + [anon_sym_COLON] = ACTIONS(6149), + [anon_sym_COLON_QMARK] = ACTIONS(6149), + [anon_sym_COLON_DASH] = ACTIONS(6149), + [anon_sym_PERCENT] = ACTIONS(6149), + [anon_sym_DASH] = ACTIONS(6149), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -71664,29 +64314,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2715] = { - [sym_concatenation] = STATE(2876), + [2537] = { + [sym_concatenation] = STATE(2644), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2876), - [anon_sym_RBRACE] = ACTIONS(6627), - [anon_sym_EQ] = ACTIONS(6629), + [aux_sym_expansion_repeat1] = STATE(2644), + [anon_sym_RBRACE] = ACTIONS(6155), + [anon_sym_EQ] = ACTIONS(6157), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6631), + [anon_sym_POUND] = ACTIONS(6159), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6633), - [anon_sym_COLON] = ACTIONS(6629), - [anon_sym_COLON_QMARK] = ACTIONS(6629), - [anon_sym_COLON_DASH] = ACTIONS(6629), - [anon_sym_PERCENT] = ACTIONS(6629), - [anon_sym_DASH] = ACTIONS(6629), + [aux_sym_SLASH] = ACTIONS(6161), + [anon_sym_COLON] = ACTIONS(6157), + [anon_sym_COLON_QMARK] = ACTIONS(6157), + [anon_sym_COLON_DASH] = ACTIONS(6157), + [anon_sym_PERCENT] = ACTIONS(6157), + [anon_sym_DASH] = ACTIONS(6157), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -71694,29 +64344,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2716] = { - [sym_concatenation] = STATE(2878), + [2538] = { + [sym_concatenation] = STATE(2646), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2878), - [anon_sym_RBRACE] = ACTIONS(6607), - [anon_sym_EQ] = ACTIONS(6635), + [aux_sym_expansion_repeat1] = STATE(2646), + [anon_sym_RBRACE] = ACTIONS(6135), + [anon_sym_EQ] = ACTIONS(6163), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6637), + [anon_sym_POUND] = ACTIONS(6165), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6639), - [anon_sym_COLON] = ACTIONS(6635), - [anon_sym_COLON_QMARK] = ACTIONS(6635), - [anon_sym_COLON_DASH] = ACTIONS(6635), - [anon_sym_PERCENT] = ACTIONS(6635), - [anon_sym_DASH] = ACTIONS(6635), + [aux_sym_SLASH] = ACTIONS(6167), + [anon_sym_COLON] = ACTIONS(6163), + [anon_sym_COLON_QMARK] = ACTIONS(6163), + [anon_sym_COLON_DASH] = ACTIONS(6163), + [anon_sym_PERCENT] = ACTIONS(6163), + [anon_sym_DASH] = ACTIONS(6163), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -71724,56 +64374,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2717] = { - [sym__concat] = ACTIONS(1810), - [anon_sym_esac] = ACTIONS(1812), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_SEMI_SEMI] = ACTIONS(1812), - [anon_sym_PIPE_AMP] = ACTIONS(1812), - [anon_sym_AMP_AMP] = ACTIONS(1812), - [anon_sym_PIPE_PIPE] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(1812), - [anon_sym_DQUOTE] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1812), - [sym_raw_string] = ACTIONS(1812), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1812), - [anon_sym_GT_LPAREN] = ACTIONS(1812), + [2539] = { + [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(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1812), - [sym_word] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_LF] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1812), + [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), }, - [2718] = { + [2540] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6641), + [sym_regex_without_right_brace] = ACTIONS(6169), }, - [2719] = { - [sym_concatenation] = STATE(839), + [2541] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6643), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6171), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -71781,56 +64431,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2720] = { - [sym__concat] = ACTIONS(1818), - [anon_sym_esac] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_SEMI_SEMI] = ACTIONS(1820), - [anon_sym_PIPE_AMP] = ACTIONS(1820), - [anon_sym_AMP_AMP] = ACTIONS(1820), - [anon_sym_PIPE_PIPE] = ACTIONS(1820), - [sym__special_characters] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1820), - [sym_raw_string] = ACTIONS(1820), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1820), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1820), - [anon_sym_BQUOTE] = ACTIONS(1820), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), + [2542] = { + [sym__concat] = ACTIONS(1806), + [anon_sym_esac] = ACTIONS(1808), + [anon_sym_PIPE] = ACTIONS(1808), + [anon_sym_SEMI_SEMI] = ACTIONS(1808), + [anon_sym_PIPE_AMP] = ACTIONS(1808), + [anon_sym_AMP_AMP] = ACTIONS(1808), + [anon_sym_PIPE_PIPE] = ACTIONS(1808), + [sym__special_characters] = ACTIONS(1808), + [anon_sym_DQUOTE] = ACTIONS(1808), + [anon_sym_DOLLAR] = ACTIONS(1808), + [sym_raw_string] = ACTIONS(1808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1808), + [anon_sym_BQUOTE] = ACTIONS(1808), + [anon_sym_LT_LPAREN] = ACTIONS(1808), + [anon_sym_GT_LPAREN] = ACTIONS(1808), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1820), - [sym_word] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_LF] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1820), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1808), + [sym_word] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1808), + [anon_sym_LF] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1808), }, - [2721] = { + [2543] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6645), + [sym_regex_without_right_brace] = ACTIONS(6173), }, - [2722] = { - [sym_concatenation] = STATE(839), + [2544] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6607), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6135), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -71838,494 +64488,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2723] = { - [sym__concat] = ACTIONS(1952), - [anon_sym_esac] = ACTIONS(1954), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_SEMI_SEMI] = ACTIONS(1954), - [anon_sym_PIPE_AMP] = ACTIONS(1954), - [anon_sym_AMP_AMP] = ACTIONS(1954), - [anon_sym_PIPE_PIPE] = ACTIONS(1954), - [sym__special_characters] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(1954), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1954), - [anon_sym_BQUOTE] = ACTIONS(1954), - [anon_sym_LT_LPAREN] = ACTIONS(1954), - [anon_sym_GT_LPAREN] = ACTIONS(1954), + [2545] = { + [sym__concat] = ACTIONS(1940), + [anon_sym_esac] = ACTIONS(1942), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1942), + [anon_sym_PIPE_AMP] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1942), + [anon_sym_PIPE_PIPE] = ACTIONS(1942), + [sym__special_characters] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [anon_sym_DOLLAR] = ACTIONS(1942), + [sym_raw_string] = ACTIONS(1942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1942), + [anon_sym_BQUOTE] = ACTIONS(1942), + [anon_sym_LT_LPAREN] = ACTIONS(1942), + [anon_sym_GT_LPAREN] = ACTIONS(1942), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1954), - [sym_word] = ACTIONS(1954), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_LF] = ACTIONS(1952), - [anon_sym_AMP] = ACTIONS(1954), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1942), + [sym_word] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1942), }, - [2724] = { - [sym__concat] = ACTIONS(2018), - [anon_sym_esac] = ACTIONS(2020), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_SEMI_SEMI] = ACTIONS(2020), - [anon_sym_PIPE_AMP] = ACTIONS(2020), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [sym__special_characters] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym_DOLLAR] = ACTIONS(2020), - [sym_raw_string] = ACTIONS(2020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2020), - [anon_sym_BQUOTE] = ACTIONS(2020), - [anon_sym_LT_LPAREN] = ACTIONS(2020), - [anon_sym_GT_LPAREN] = ACTIONS(2020), + [2546] = { + [sym__concat] = ACTIONS(2006), + [anon_sym_esac] = ACTIONS(2008), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_SEMI_SEMI] = ACTIONS(2008), + [anon_sym_PIPE_AMP] = ACTIONS(2008), + [anon_sym_AMP_AMP] = ACTIONS(2008), + [anon_sym_PIPE_PIPE] = ACTIONS(2008), + [sym__special_characters] = ACTIONS(2008), + [anon_sym_DQUOTE] = ACTIONS(2008), + [anon_sym_DOLLAR] = ACTIONS(2008), + [sym_raw_string] = ACTIONS(2008), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2008), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2008), + [anon_sym_BQUOTE] = ACTIONS(2008), + [anon_sym_LT_LPAREN] = ACTIONS(2008), + [anon_sym_GT_LPAREN] = ACTIONS(2008), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2020), - [sym_word] = ACTIONS(2020), - [anon_sym_SEMI] = ACTIONS(2020), - [anon_sym_LF] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2020), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2008), + [sym_word] = ACTIONS(2008), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_LF] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2008), }, - [2725] = { - [sym__simple_heredoc_body] = ACTIONS(2752), - [sym__heredoc_body_beginning] = ACTIONS(2752), - [sym_file_descriptor] = ACTIONS(2752), - [sym__concat] = ACTIONS(2752), - [anon_sym_esac] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_SEMI_SEMI] = ACTIONS(2754), - [anon_sym_PIPE_AMP] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [anon_sym_EQ_TILDE] = ACTIONS(2754), - [anon_sym_EQ_EQ] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2754), - [anon_sym_GT] = ACTIONS(2754), - [anon_sym_GT_GT] = ACTIONS(2754), - [anon_sym_AMP_GT] = ACTIONS(2754), - [anon_sym_AMP_GT_GT] = ACTIONS(2754), - [anon_sym_LT_AMP] = ACTIONS(2754), - [anon_sym_GT_AMP] = ACTIONS(2754), - [anon_sym_LT_LT] = ACTIONS(2754), - [anon_sym_LT_LT_DASH] = ACTIONS(2754), - [anon_sym_LT_LT_LT] = ACTIONS(2754), - [sym__special_characters] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2754), - [anon_sym_DOLLAR] = ACTIONS(2754), - [sym_raw_string] = ACTIONS(2754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2754), - [anon_sym_BQUOTE] = ACTIONS(2754), - [anon_sym_LT_LPAREN] = ACTIONS(2754), - [anon_sym_GT_LPAREN] = ACTIONS(2754), + [2547] = { + [sym_file_redirect] = STATE(1401), + [sym_file_descriptor] = ACTIONS(5764), + [anon_sym_esac] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2334), + [anon_sym_SEMI_SEMI] = ACTIONS(2334), + [anon_sym_PIPE_AMP] = ACTIONS(2334), + [anon_sym_AMP_AMP] = ACTIONS(2334), + [anon_sym_PIPE_PIPE] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(5766), + [anon_sym_GT] = ACTIONS(5766), + [anon_sym_GT_GT] = ACTIONS(5766), + [anon_sym_AMP_GT] = ACTIONS(5766), + [anon_sym_AMP_GT_GT] = ACTIONS(5766), + [anon_sym_LT_AMP] = ACTIONS(5766), + [anon_sym_GT_AMP] = ACTIONS(5766), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2754), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_LF] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2754), + [anon_sym_SEMI] = ACTIONS(2334), + [anon_sym_LF] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2334), }, - [2726] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(6647), - [sym_comment] = ACTIONS(53), - }, - [2727] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(6649), - [sym_comment] = ACTIONS(53), - }, - [2728] = { - [anon_sym_RBRACE] = ACTIONS(6649), - [sym_comment] = ACTIONS(53), - }, - [2729] = { - [sym_concatenation] = STATE(2885), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2885), - [anon_sym_RBRACE] = ACTIONS(6651), - [anon_sym_EQ] = ACTIONS(6653), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6655), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6653), - [anon_sym_COLON_QMARK] = ACTIONS(6653), - [anon_sym_COLON_DASH] = ACTIONS(6653), - [anon_sym_PERCENT] = ACTIONS(6653), - [anon_sym_DASH] = ACTIONS(6653), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2730] = { - [sym__simple_heredoc_body] = ACTIONS(2830), - [sym__heredoc_body_beginning] = ACTIONS(2830), - [sym_file_descriptor] = ACTIONS(2830), - [sym__concat] = ACTIONS(2830), - [anon_sym_esac] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_SEMI_SEMI] = ACTIONS(2832), - [anon_sym_PIPE_AMP] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_PIPE_PIPE] = ACTIONS(2832), - [anon_sym_EQ_TILDE] = ACTIONS(2832), - [anon_sym_EQ_EQ] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_GT_GT] = ACTIONS(2832), - [anon_sym_AMP_GT] = ACTIONS(2832), - [anon_sym_AMP_GT_GT] = ACTIONS(2832), - [anon_sym_LT_AMP] = ACTIONS(2832), - [anon_sym_GT_AMP] = ACTIONS(2832), - [anon_sym_LT_LT] = ACTIONS(2832), - [anon_sym_LT_LT_DASH] = ACTIONS(2832), - [anon_sym_LT_LT_LT] = ACTIONS(2832), - [sym__special_characters] = ACTIONS(2832), - [anon_sym_DQUOTE] = ACTIONS(2832), - [anon_sym_DOLLAR] = ACTIONS(2832), - [sym_raw_string] = ACTIONS(2832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2832), - [anon_sym_BQUOTE] = ACTIONS(2832), - [anon_sym_LT_LPAREN] = ACTIONS(2832), - [anon_sym_GT_LPAREN] = ACTIONS(2832), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_LF] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2832), - }, - [2731] = { - [sym_concatenation] = STATE(2888), - [sym_string] = STATE(2887), - [sym_simple_expansion] = STATE(2887), - [sym_string_expansion] = STATE(2887), - [sym_expansion] = STATE(2887), - [sym_command_substitution] = STATE(2887), - [sym_process_substitution] = STATE(2887), - [anon_sym_RBRACE] = ACTIONS(6649), - [sym__special_characters] = ACTIONS(6657), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(6659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6659), - }, - [2732] = { - [sym__simple_heredoc_body] = ACTIONS(2873), - [sym__heredoc_body_beginning] = ACTIONS(2873), - [sym_file_descriptor] = ACTIONS(2873), - [sym__concat] = ACTIONS(2873), - [anon_sym_esac] = ACTIONS(2875), - [anon_sym_PIPE] = ACTIONS(2875), - [anon_sym_SEMI_SEMI] = ACTIONS(2875), - [anon_sym_PIPE_AMP] = ACTIONS(2875), - [anon_sym_AMP_AMP] = ACTIONS(2875), - [anon_sym_PIPE_PIPE] = ACTIONS(2875), - [anon_sym_EQ_TILDE] = ACTIONS(2875), - [anon_sym_EQ_EQ] = ACTIONS(2875), - [anon_sym_LT] = ACTIONS(2875), - [anon_sym_GT] = ACTIONS(2875), - [anon_sym_GT_GT] = ACTIONS(2875), - [anon_sym_AMP_GT] = ACTIONS(2875), - [anon_sym_AMP_GT_GT] = ACTIONS(2875), - [anon_sym_LT_AMP] = ACTIONS(2875), - [anon_sym_GT_AMP] = ACTIONS(2875), - [anon_sym_LT_LT] = ACTIONS(2875), - [anon_sym_LT_LT_DASH] = ACTIONS(2875), - [anon_sym_LT_LT_LT] = ACTIONS(2875), - [sym__special_characters] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2875), - [anon_sym_DOLLAR] = ACTIONS(2875), - [sym_raw_string] = ACTIONS(2875), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2875), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2875), - [anon_sym_BQUOTE] = ACTIONS(2875), - [anon_sym_LT_LPAREN] = ACTIONS(2875), - [anon_sym_GT_LPAREN] = ACTIONS(2875), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym_LF] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2875), - }, - [2733] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6661), - }, - [2734] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6663), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2735] = { - [sym__simple_heredoc_body] = ACTIONS(2881), - [sym__heredoc_body_beginning] = ACTIONS(2881), - [sym_file_descriptor] = ACTIONS(2881), - [sym__concat] = ACTIONS(2881), - [anon_sym_esac] = ACTIONS(2883), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_SEMI_SEMI] = ACTIONS(2883), - [anon_sym_PIPE_AMP] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_PIPE_PIPE] = ACTIONS(2883), - [anon_sym_EQ_TILDE] = ACTIONS(2883), - [anon_sym_EQ_EQ] = ACTIONS(2883), - [anon_sym_LT] = ACTIONS(2883), - [anon_sym_GT] = ACTIONS(2883), - [anon_sym_GT_GT] = ACTIONS(2883), - [anon_sym_AMP_GT] = ACTIONS(2883), - [anon_sym_AMP_GT_GT] = ACTIONS(2883), - [anon_sym_LT_AMP] = ACTIONS(2883), - [anon_sym_GT_AMP] = ACTIONS(2883), - [anon_sym_LT_LT] = ACTIONS(2883), - [anon_sym_LT_LT_DASH] = ACTIONS(2883), - [anon_sym_LT_LT_LT] = ACTIONS(2883), - [sym__special_characters] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2883), - [sym_raw_string] = ACTIONS(2883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2883), - [anon_sym_BQUOTE] = ACTIONS(2883), - [anon_sym_LT_LPAREN] = ACTIONS(2883), - [anon_sym_GT_LPAREN] = ACTIONS(2883), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2883), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym_LF] = ACTIONS(2881), - [anon_sym_AMP] = ACTIONS(2883), - }, - [2736] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6665), - }, - [2737] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6667), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2738] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6669), - }, - [2739] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6649), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2740] = { - [sym_concatenation] = STATE(2895), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2895), - [anon_sym_RBRACE] = ACTIONS(6671), - [anon_sym_EQ] = ACTIONS(6673), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6675), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6673), - [anon_sym_COLON_QMARK] = ACTIONS(6673), - [anon_sym_COLON_DASH] = ACTIONS(6673), - [anon_sym_PERCENT] = ACTIONS(6673), - [anon_sym_DASH] = ACTIONS(6673), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2741] = { - [sym__simple_heredoc_body] = ACTIONS(2897), - [sym__heredoc_body_beginning] = ACTIONS(2897), - [sym_file_descriptor] = ACTIONS(2897), - [sym__concat] = ACTIONS(2897), - [anon_sym_esac] = ACTIONS(2899), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_SEMI_SEMI] = ACTIONS(2899), - [anon_sym_PIPE_AMP] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_PIPE_PIPE] = ACTIONS(2899), - [anon_sym_EQ_TILDE] = ACTIONS(2899), - [anon_sym_EQ_EQ] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [anon_sym_GT_GT] = ACTIONS(2899), - [anon_sym_AMP_GT] = ACTIONS(2899), - [anon_sym_AMP_GT_GT] = ACTIONS(2899), - [anon_sym_LT_AMP] = ACTIONS(2899), - [anon_sym_GT_AMP] = ACTIONS(2899), - [anon_sym_LT_LT] = ACTIONS(2899), - [anon_sym_LT_LT_DASH] = ACTIONS(2899), - [anon_sym_LT_LT_LT] = ACTIONS(2899), - [sym__special_characters] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2899), - [anon_sym_DOLLAR] = ACTIONS(2899), - [sym_raw_string] = ACTIONS(2899), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2899), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2899), - [anon_sym_BQUOTE] = ACTIONS(2899), - [anon_sym_LT_LPAREN] = ACTIONS(2899), - [anon_sym_GT_LPAREN] = ACTIONS(2899), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2899), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym_LF] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2899), - }, - [2742] = { - [sym_concatenation] = STATE(2897), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2897), - [anon_sym_RBRACE] = ACTIONS(6677), - [anon_sym_EQ] = ACTIONS(6679), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6679), - [anon_sym_COLON_QMARK] = ACTIONS(6679), - [anon_sym_COLON_DASH] = ACTIONS(6679), - [anon_sym_PERCENT] = ACTIONS(6679), - [anon_sym_DASH] = ACTIONS(6679), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2743] = { - [sym_file_redirect] = STATE(1432), - [sym_file_descriptor] = ACTIONS(6109), - [anon_sym_esac] = ACTIONS(2376), - [anon_sym_PIPE] = ACTIONS(2376), - [anon_sym_SEMI_SEMI] = ACTIONS(2376), - [anon_sym_PIPE_AMP] = ACTIONS(2376), - [anon_sym_AMP_AMP] = ACTIONS(2376), - [anon_sym_PIPE_PIPE] = ACTIONS(2376), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_GT] = ACTIONS(6111), - [anon_sym_AMP_GT] = ACTIONS(6111), - [anon_sym_AMP_GT_GT] = ACTIONS(6111), - [anon_sym_LT_AMP] = ACTIONS(6111), - [anon_sym_GT_AMP] = ACTIONS(6111), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2376), - [anon_sym_LF] = ACTIONS(2378), - [anon_sym_AMP] = ACTIONS(2376), - }, - [2744] = { - [aux_sym_concatenation_repeat1] = STATE(2747), + [2548] = { + [aux_sym_concatenation_repeat1] = STATE(2550), [sym__simple_heredoc_body] = ACTIONS(1089), [sym__heredoc_body_beginning] = ACTIONS(1089), [sym_file_descriptor] = ACTIONS(1089), - [sym__concat] = ACTIONS(6331), + [sym__concat] = ACTIONS(223), [anon_sym_esac] = ACTIONS(1091), [anon_sym_PIPE] = ACTIONS(1091), [anon_sym_SEMI_SEMI] = ACTIONS(1091), @@ -72347,12 +64584,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1089), [anon_sym_AMP] = ACTIONS(1091), }, - [2745] = { - [aux_sym_concatenation_repeat1] = STATE(2747), + [2549] = { + [aux_sym_concatenation_repeat1] = STATE(2550), [sym__simple_heredoc_body] = ACTIONS(1093), [sym__heredoc_body_beginning] = ACTIONS(1093), [sym_file_descriptor] = ACTIONS(1093), - [sym__concat] = ACTIONS(6331), + [sym__concat] = ACTIONS(223), [anon_sym_esac] = ACTIONS(1095), [anon_sym_PIPE] = ACTIONS(1095), [anon_sym_SEMI_SEMI] = ACTIONS(1095), @@ -72374,31 +64611,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1093), [anon_sym_AMP] = ACTIONS(1095), }, - [2746] = { - [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), - [sym__special_characters] = ACTIONS(6683), - [anon_sym_DQUOTE] = ACTIONS(5888), - [anon_sym_DOLLAR] = ACTIONS(5890), - [sym_raw_string] = ACTIONS(6683), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5896), - [anon_sym_BQUOTE] = ACTIONS(5898), - [anon_sym_LT_LPAREN] = ACTIONS(5900), - [anon_sym_GT_LPAREN] = ACTIONS(5900), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6683), - }, - [2747] = { - [aux_sym_concatenation_repeat1] = STATE(2899), + [2550] = { + [aux_sym_concatenation_repeat1] = STATE(2650), [sym__simple_heredoc_body] = ACTIONS(693), [sym__heredoc_body_beginning] = ACTIONS(693), [sym_file_descriptor] = ACTIONS(693), - [sym__concat] = ACTIONS(6331), + [sym__concat] = ACTIONS(223), [anon_sym_esac] = ACTIONS(695), [anon_sym_PIPE] = ACTIONS(695), [anon_sym_SEMI_SEMI] = ACTIONS(695), @@ -72420,373 +64638,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(693), [anon_sym_AMP] = ACTIONS(695), }, - [2748] = { - [sym__simple_heredoc_body] = ACTIONS(697), - [sym__heredoc_body_beginning] = ACTIONS(697), - [sym_file_descriptor] = ACTIONS(697), - [sym__concat] = ACTIONS(697), - [anon_sym_esac] = ACTIONS(699), - [anon_sym_PIPE] = ACTIONS(699), - [anon_sym_SEMI_SEMI] = ACTIONS(699), - [anon_sym_PIPE_AMP] = ACTIONS(699), - [anon_sym_AMP_AMP] = ACTIONS(699), - [anon_sym_PIPE_PIPE] = ACTIONS(699), - [anon_sym_LT] = ACTIONS(699), - [anon_sym_GT] = ACTIONS(699), - [anon_sym_GT_GT] = ACTIONS(699), - [anon_sym_AMP_GT] = ACTIONS(699), - [anon_sym_AMP_GT_GT] = ACTIONS(699), - [anon_sym_LT_AMP] = ACTIONS(699), - [anon_sym_GT_AMP] = ACTIONS(699), - [anon_sym_LT_LT] = ACTIONS(699), - [anon_sym_LT_LT_DASH] = ACTIONS(699), - [anon_sym_LT_LT_LT] = ACTIONS(699), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(699), - [anon_sym_LF] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), - }, - [2749] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(6685), - [anon_sym_DOLLAR] = ACTIONS(229), - [sym__string_content] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [2750] = { - [sym__simple_heredoc_body] = ACTIONS(727), - [sym__heredoc_body_beginning] = ACTIONS(727), - [sym_file_descriptor] = ACTIONS(727), - [sym__concat] = ACTIONS(727), - [anon_sym_esac] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_SEMI_SEMI] = ACTIONS(729), - [anon_sym_PIPE_AMP] = ACTIONS(729), - [anon_sym_AMP_AMP] = ACTIONS(729), - [anon_sym_PIPE_PIPE] = ACTIONS(729), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_GT_GT] = ACTIONS(729), - [anon_sym_AMP_GT] = ACTIONS(729), - [anon_sym_AMP_GT_GT] = ACTIONS(729), - [anon_sym_LT_AMP] = ACTIONS(729), - [anon_sym_GT_AMP] = ACTIONS(729), - [anon_sym_LT_LT] = ACTIONS(729), - [anon_sym_LT_LT_DASH] = ACTIONS(729), - [anon_sym_LT_LT_LT] = ACTIONS(729), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(729), - [anon_sym_LF] = ACTIONS(727), - [anon_sym_AMP] = ACTIONS(729), - }, - [2751] = { - [sym__simple_heredoc_body] = ACTIONS(731), - [sym__heredoc_body_beginning] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(731), - [anon_sym_esac] = ACTIONS(733), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(733), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(733), - [anon_sym_LT_AMP] = ACTIONS(733), - [anon_sym_GT_AMP] = ACTIONS(733), - [anon_sym_LT_LT] = ACTIONS(733), - [anon_sym_LT_LT_DASH] = ACTIONS(733), - [anon_sym_LT_LT_LT] = ACTIONS(733), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), - }, - [2752] = { - [sym__simple_heredoc_body] = ACTIONS(735), - [sym__heredoc_body_beginning] = ACTIONS(735), - [sym_file_descriptor] = ACTIONS(735), - [sym__concat] = ACTIONS(735), - [anon_sym_esac] = ACTIONS(737), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [anon_sym_LT] = ACTIONS(737), - [anon_sym_GT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(737), - [anon_sym_AMP_GT] = ACTIONS(737), - [anon_sym_AMP_GT_GT] = ACTIONS(737), - [anon_sym_LT_AMP] = ACTIONS(737), - [anon_sym_GT_AMP] = ACTIONS(737), - [anon_sym_LT_LT] = ACTIONS(737), - [anon_sym_LT_LT_DASH] = ACTIONS(737), - [anon_sym_LT_LT_LT] = ACTIONS(737), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(737), - }, - [2753] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(6687), - [sym_comment] = ACTIONS(53), - }, - [2754] = { - [sym_concatenation] = STATE(2904), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2904), - [anon_sym_RBRACE] = ACTIONS(6689), - [anon_sym_EQ] = ACTIONS(6691), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6693), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6695), - [anon_sym_COLON] = ACTIONS(6691), - [anon_sym_COLON_QMARK] = ACTIONS(6691), - [anon_sym_COLON_DASH] = ACTIONS(6691), - [anon_sym_PERCENT] = ACTIONS(6691), - [anon_sym_DASH] = ACTIONS(6691), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2755] = { - [sym_subscript] = STATE(2908), - [sym_variable_name] = ACTIONS(6697), - [anon_sym_DOLLAR] = ACTIONS(6699), - [anon_sym_DASH] = ACTIONS(6699), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6701), - [anon_sym_STAR] = ACTIONS(6699), - [anon_sym_AT] = ACTIONS(6699), - [anon_sym_QMARK] = ACTIONS(6699), - [anon_sym_0] = ACTIONS(6703), - [anon_sym__] = ACTIONS(6703), - }, - [2756] = { - [sym_concatenation] = STATE(2911), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2911), - [anon_sym_RBRACE] = ACTIONS(6705), - [anon_sym_EQ] = ACTIONS(6707), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6709), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6711), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2757] = { - [sym_concatenation] = STATE(2914), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2914), - [anon_sym_RBRACE] = ACTIONS(6713), - [anon_sym_EQ] = ACTIONS(6715), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6717), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6719), - [anon_sym_COLON] = ACTIONS(6715), - [anon_sym_COLON_QMARK] = ACTIONS(6715), - [anon_sym_COLON_DASH] = ACTIONS(6715), - [anon_sym_PERCENT] = ACTIONS(6715), - [anon_sym_DASH] = ACTIONS(6715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2758] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(6721), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [sym_comment] = ACTIONS(53), - }, - [2759] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(6721), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [2760] = { - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_PIPE_AMP] = ACTIONS(925), - [anon_sym_AMP_AMP] = ACTIONS(927), - [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_BQUOTE] = ACTIONS(6721), - [sym_comment] = ACTIONS(53), - }, - [2761] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_PIPE_AMP] = ACTIONS(925), - [anon_sym_AMP_AMP] = ACTIONS(927), - [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(6721), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [2762] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(6723), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [sym_comment] = ACTIONS(53), - }, - [2763] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(6723), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [sym__special_characters] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [2764] = { - [sym_file_redirect] = STATE(2566), - [sym_heredoc_redirect] = STATE(2566), - [sym_heredoc_body] = STATE(1448), - [sym_herestring_redirect] = STATE(2566), - [aux_sym_while_statement_repeat1] = STATE(2566), + [2551] = { + [sym_file_redirect] = STATE(2412), + [sym_heredoc_redirect] = STATE(2412), + [sym_heredoc_body] = STATE(1417), + [sym_herestring_redirect] = STATE(2412), + [aux_sym_while_statement_repeat1] = STATE(2412), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(5332), - [anon_sym_esac] = ACTIONS(3325), - [anon_sym_PIPE] = ACTIONS(3325), - [anon_sym_SEMI_SEMI] = ACTIONS(3325), - [anon_sym_PIPE_AMP] = ACTIONS(3325), - [anon_sym_AMP_AMP] = ACTIONS(3325), - [anon_sym_PIPE_PIPE] = ACTIONS(3325), - [anon_sym_LT] = ACTIONS(5336), - [anon_sym_GT] = ACTIONS(5336), - [anon_sym_GT_GT] = ACTIONS(5336), - [anon_sym_AMP_GT] = ACTIONS(5336), - [anon_sym_AMP_GT_GT] = ACTIONS(5336), - [anon_sym_LT_AMP] = ACTIONS(5336), - [anon_sym_GT_AMP] = ACTIONS(5336), + [sym_file_descriptor] = ACTIONS(5127), + [anon_sym_esac] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_SEMI_SEMI] = ACTIONS(3283), + [anon_sym_PIPE_AMP] = ACTIONS(3283), + [anon_sym_AMP_AMP] = ACTIONS(3283), + [anon_sym_PIPE_PIPE] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_GT_GT] = ACTIONS(5131), + [anon_sym_AMP_GT] = ACTIONS(5131), + [anon_sym_AMP_GT_GT] = ACTIONS(5131), + [anon_sym_LT_AMP] = ACTIONS(5131), + [anon_sym_GT_AMP] = ACTIONS(5131), [anon_sym_LT_LT] = ACTIONS(349), [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(5338), + [anon_sym_LT_LT_LT] = ACTIONS(5133), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3325), - [anon_sym_LF] = ACTIONS(3327), - [anon_sym_AMP] = ACTIONS(3325), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3283), }, - [2765] = { + [2552] = { [sym_file_descriptor] = ACTIONS(951), [sym_variable_name] = ACTIONS(951), [anon_sym_for] = ACTIONS(953), [anon_sym_while] = ACTIONS(953), [anon_sym_if] = ACTIONS(953), [anon_sym_case] = ACTIONS(953), - [anon_sym_esac] = ACTIONS(6725), + [anon_sym_esac] = ACTIONS(6175), [anon_sym_SEMI_SEMI] = ACTIONS(951), [anon_sym_function] = ACTIONS(953), [anon_sym_LPAREN] = ACTIONS(951), @@ -72807,26 +64696,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(951), [anon_sym_LT_AMP] = ACTIONS(951), [anon_sym_GT_AMP] = ACTIONS(951), - [sym__special_characters] = ACTIONS(6727), - [anon_sym_DQUOTE] = ACTIONS(6729), - [anon_sym_DOLLAR] = ACTIONS(6727), - [sym_raw_string] = ACTIONS(6729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6729), - [anon_sym_BQUOTE] = ACTIONS(6729), - [anon_sym_LT_LPAREN] = ACTIONS(6729), - [anon_sym_GT_LPAREN] = ACTIONS(6729), + [sym__special_characters] = ACTIONS(6177), + [anon_sym_DQUOTE] = ACTIONS(6179), + [anon_sym_DOLLAR] = ACTIONS(6177), + [sym_raw_string] = ACTIONS(6179), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6179), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6179), + [anon_sym_BQUOTE] = ACTIONS(6179), + [anon_sym_LT_LPAREN] = ACTIONS(6179), + [anon_sym_GT_LPAREN] = ACTIONS(6179), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6727), + [sym_word] = ACTIONS(6177), }, - [2766] = { + [2553] = { [sym_file_descriptor] = ACTIONS(951), [sym_variable_name] = ACTIONS(951), [anon_sym_for] = ACTIONS(953), [anon_sym_while] = ACTIONS(953), [anon_sym_if] = ACTIONS(953), [anon_sym_case] = ACTIONS(953), - [anon_sym_esac] = ACTIONS(6731), + [anon_sym_esac] = ACTIONS(6181), [anon_sym_SEMI_SEMI] = ACTIONS(951), [anon_sym_function] = ACTIONS(953), [anon_sym_LPAREN] = ACTIONS(951), @@ -72847,19 +64736,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(951), [anon_sym_LT_AMP] = ACTIONS(951), [anon_sym_GT_AMP] = ACTIONS(951), - [sym__special_characters] = ACTIONS(6733), - [anon_sym_DQUOTE] = ACTIONS(6735), - [anon_sym_DOLLAR] = ACTIONS(6733), - [sym_raw_string] = ACTIONS(6735), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6735), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6735), - [anon_sym_BQUOTE] = ACTIONS(6735), - [anon_sym_LT_LPAREN] = ACTIONS(6735), - [anon_sym_GT_LPAREN] = ACTIONS(6735), + [sym__special_characters] = ACTIONS(6183), + [anon_sym_DQUOTE] = ACTIONS(6185), + [anon_sym_DOLLAR] = ACTIONS(6183), + [sym_raw_string] = ACTIONS(6185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6185), + [anon_sym_BQUOTE] = ACTIONS(6185), + [anon_sym_LT_LPAREN] = ACTIONS(6185), + [anon_sym_GT_LPAREN] = ACTIONS(6185), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6733), + [sym_word] = ACTIONS(6183), }, - [2767] = { + [2554] = { [sym_file_descriptor] = ACTIONS(951), [sym_variable_name] = ACTIONS(951), [anon_sym_for] = ACTIONS(953), @@ -72886,34 +64775,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(951), [anon_sym_LT_AMP] = ACTIONS(951), [anon_sym_GT_AMP] = ACTIONS(951), - [sym__special_characters] = ACTIONS(5872), - [anon_sym_DQUOTE] = ACTIONS(5874), - [anon_sym_DOLLAR] = ACTIONS(5872), - [sym_raw_string] = ACTIONS(5874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5874), - [anon_sym_BQUOTE] = ACTIONS(5874), - [anon_sym_LT_LPAREN] = ACTIONS(5874), - [anon_sym_GT_LPAREN] = ACTIONS(5874), + [sym__special_characters] = ACTIONS(5571), + [anon_sym_DQUOTE] = ACTIONS(5573), + [anon_sym_DOLLAR] = ACTIONS(5571), + [sym_raw_string] = ACTIONS(5573), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5573), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5573), + [anon_sym_BQUOTE] = ACTIONS(5573), + [anon_sym_LT_LPAREN] = ACTIONS(5573), + [anon_sym_GT_LPAREN] = ACTIONS(5573), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5872), + [sym_word] = ACTIONS(5571), }, - [2768] = { - [sym__special_characters] = ACTIONS(5874), - [anon_sym_DQUOTE] = ACTIONS(5874), - [anon_sym_DOLLAR] = ACTIONS(5872), - [sym_raw_string] = ACTIONS(5874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5874), - [anon_sym_BQUOTE] = ACTIONS(5874), - [anon_sym_LT_LPAREN] = ACTIONS(5874), - [anon_sym_GT_LPAREN] = ACTIONS(5874), + [2555] = { + [sym__special_characters] = ACTIONS(5573), + [anon_sym_DQUOTE] = ACTIONS(5573), + [anon_sym_DOLLAR] = ACTIONS(5571), + [sym_raw_string] = ACTIONS(5573), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5573), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5573), + [anon_sym_BQUOTE] = ACTIONS(5573), + [anon_sym_LT_LPAREN] = ACTIONS(5573), + [anon_sym_GT_LPAREN] = ACTIONS(5573), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5874), + [sym_word] = ACTIONS(5573), }, - [2769] = { + [2556] = { [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6737), + [anon_sym_SEMI_SEMI] = ACTIONS(6187), [anon_sym_PIPE_AMP] = ACTIONS(329), [anon_sym_AMP_AMP] = ACTIONS(333), [anon_sym_PIPE_PIPE] = ACTIONS(333), @@ -72922,11 +64811,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(335), [anon_sym_AMP] = ACTIONS(331), }, - [2770] = { + [2557] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6737), + [anon_sym_SEMI_SEMI] = ACTIONS(6187), [anon_sym_PIPE_AMP] = ACTIONS(329), [anon_sym_AMP_AMP] = ACTIONS(333), [anon_sym_PIPE_PIPE] = ACTIONS(333), @@ -72952,8 +64841,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(335), [anon_sym_AMP] = ACTIONS(331), }, - [2771] = { - [sym__terminated_statement] = STATE(2771), + [2558] = { + [sym__terminated_statement] = STATE(2558), [sym_for_statement] = STATE(26), [sym_while_statement] = STATE(26), [sym_if_statement] = STATE(26), @@ -72978,7 +64867,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2771), + [aux_sym_program_repeat1] = STATE(2558), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(999), [sym_variable_name] = ACTIONS(1002), @@ -73018,23 +64907,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(1070), }, - [2772] = { - [sym__terminated_statement] = STATE(2771), - [sym_for_statement] = STATE(2919), - [sym_while_statement] = STATE(2919), - [sym_if_statement] = STATE(2919), - [sym_case_statement] = STATE(2919), - [sym_function_definition] = STATE(2919), - [sym_subshell] = STATE(2919), - [sym_pipeline] = STATE(2919), - [sym_list] = STATE(2919), - [sym_negated_command] = STATE(2919), - [sym_test_command] = STATE(2919), - [sym_declaration_command] = STATE(2919), - [sym_unset_command] = STATE(2919), - [sym_command] = STATE(2919), + [2559] = { + [sym__terminated_statement] = STATE(2558), + [sym_for_statement] = STATE(2653), + [sym_while_statement] = STATE(2653), + [sym_if_statement] = STATE(2653), + [sym_case_statement] = STATE(2653), + [sym_function_definition] = STATE(2653), + [sym_subshell] = STATE(2653), + [sym_pipeline] = STATE(2653), + [sym_list] = STATE(2653), + [sym_negated_command] = STATE(2653), + [sym_test_command] = STATE(2653), + [sym_declaration_command] = STATE(2653), + [sym_unset_command] = STATE(2653), + [sym_command] = STATE(2653), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2920), + [sym_variable_assignment] = STATE(2654), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -73044,7 +64933,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2771), + [aux_sym_program_repeat1] = STATE(2558), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), @@ -73052,7 +64941,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(13), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(6739), + [anon_sym_SEMI_SEMI] = ACTIONS(6189), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -73084,7 +64973,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [2773] = { + [2560] = { [sym_file_descriptor] = ACTIONS(951), [sym_variable_name] = ACTIONS(951), [anon_sym_for] = ACTIONS(953), @@ -73111,34 +65000,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(951), [anon_sym_LT_AMP] = ACTIONS(951), [anon_sym_GT_AMP] = ACTIONS(951), - [sym__special_characters] = ACTIONS(5912), - [anon_sym_DQUOTE] = ACTIONS(5914), - [anon_sym_DOLLAR] = ACTIONS(5912), - [sym_raw_string] = ACTIONS(5914), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5914), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5914), - [anon_sym_BQUOTE] = ACTIONS(5914), - [anon_sym_LT_LPAREN] = ACTIONS(5914), - [anon_sym_GT_LPAREN] = ACTIONS(5914), + [sym__special_characters] = ACTIONS(5597), + [anon_sym_DQUOTE] = ACTIONS(5599), + [anon_sym_DOLLAR] = ACTIONS(5597), + [sym_raw_string] = ACTIONS(5599), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5599), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5599), + [anon_sym_BQUOTE] = ACTIONS(5599), + [anon_sym_LT_LPAREN] = ACTIONS(5599), + [anon_sym_GT_LPAREN] = ACTIONS(5599), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5912), + [sym_word] = ACTIONS(5597), }, - [2774] = { - [sym__special_characters] = ACTIONS(5914), - [anon_sym_DQUOTE] = ACTIONS(5914), - [anon_sym_DOLLAR] = ACTIONS(5912), - [sym_raw_string] = ACTIONS(5914), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5914), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5914), - [anon_sym_BQUOTE] = ACTIONS(5914), - [anon_sym_LT_LPAREN] = ACTIONS(5914), - [anon_sym_GT_LPAREN] = ACTIONS(5914), + [2561] = { + [sym__special_characters] = ACTIONS(5599), + [anon_sym_DQUOTE] = ACTIONS(5599), + [anon_sym_DOLLAR] = ACTIONS(5597), + [sym_raw_string] = ACTIONS(5599), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5599), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5599), + [anon_sym_BQUOTE] = ACTIONS(5599), + [anon_sym_LT_LPAREN] = ACTIONS(5599), + [anon_sym_GT_LPAREN] = ACTIONS(5599), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5914), + [sym_word] = ACTIONS(5599), }, - [2775] = { + [2562] = { [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6741), + [anon_sym_SEMI_SEMI] = ACTIONS(6191), [anon_sym_PIPE_AMP] = ACTIONS(329), [anon_sym_AMP_AMP] = ACTIONS(333), [anon_sym_PIPE_PIPE] = ACTIONS(333), @@ -73147,11 +65036,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(335), [anon_sym_AMP] = ACTIONS(331), }, - [2776] = { + [2563] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6741), + [anon_sym_SEMI_SEMI] = ACTIONS(6191), [anon_sym_PIPE_AMP] = ACTIONS(329), [anon_sym_AMP_AMP] = ACTIONS(333), [anon_sym_PIPE_PIPE] = ACTIONS(333), @@ -73177,23 +65066,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(335), [anon_sym_AMP] = ACTIONS(331), }, - [2777] = { - [sym__terminated_statement] = STATE(2771), - [sym_for_statement] = STATE(2923), - [sym_while_statement] = STATE(2923), - [sym_if_statement] = STATE(2923), - [sym_case_statement] = STATE(2923), - [sym_function_definition] = STATE(2923), - [sym_subshell] = STATE(2923), - [sym_pipeline] = STATE(2923), - [sym_list] = STATE(2923), - [sym_negated_command] = STATE(2923), - [sym_test_command] = STATE(2923), - [sym_declaration_command] = STATE(2923), - [sym_unset_command] = STATE(2923), - [sym_command] = STATE(2923), + [2564] = { + [sym__terminated_statement] = STATE(2558), + [sym_for_statement] = STATE(2657), + [sym_while_statement] = STATE(2657), + [sym_if_statement] = STATE(2657), + [sym_case_statement] = STATE(2657), + [sym_function_definition] = STATE(2657), + [sym_subshell] = STATE(2657), + [sym_pipeline] = STATE(2657), + [sym_list] = STATE(2657), + [sym_negated_command] = STATE(2657), + [sym_test_command] = STATE(2657), + [sym_declaration_command] = STATE(2657), + [sym_unset_command] = STATE(2657), + [sym_command] = STATE(2657), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2924), + [sym_variable_assignment] = STATE(2658), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -73203,7 +65092,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2771), + [aux_sym_program_repeat1] = STATE(2558), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), @@ -73211,7 +65100,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(13), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(6743), + [anon_sym_SEMI_SEMI] = ACTIONS(6193), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -73243,128 +65132,128 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [2778] = { - [sym_file_descriptor] = ACTIONS(4884), - [sym__concat] = ACTIONS(4884), - [anon_sym_esac] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4886), - [anon_sym_SEMI_SEMI] = ACTIONS(4886), - [anon_sym_PIPE_AMP] = ACTIONS(4886), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_LT] = ACTIONS(4886), - [anon_sym_GT] = ACTIONS(4886), - [anon_sym_GT_GT] = ACTIONS(4886), - [anon_sym_AMP_GT] = ACTIONS(4886), - [anon_sym_AMP_GT_GT] = ACTIONS(4886), - [anon_sym_LT_AMP] = ACTIONS(4886), - [anon_sym_GT_AMP] = ACTIONS(4886), - [anon_sym_LT_LT] = ACTIONS(4886), - [anon_sym_LT_LT_DASH] = ACTIONS(4886), - [anon_sym_LT_LT_LT] = ACTIONS(4886), + [2565] = { + [sym_file_descriptor] = ACTIONS(4741), + [sym__concat] = ACTIONS(4741), + [anon_sym_esac] = ACTIONS(4743), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4743), + [anon_sym_SEMI_SEMI] = ACTIONS(4743), + [anon_sym_PIPE_AMP] = ACTIONS(4743), + [anon_sym_AMP_AMP] = ACTIONS(4743), + [anon_sym_PIPE_PIPE] = ACTIONS(4743), + [anon_sym_LT] = ACTIONS(4743), + [anon_sym_GT] = ACTIONS(4743), + [anon_sym_GT_GT] = ACTIONS(4743), + [anon_sym_AMP_GT] = ACTIONS(4743), + [anon_sym_AMP_GT_GT] = ACTIONS(4743), + [anon_sym_LT_AMP] = ACTIONS(4743), + [anon_sym_GT_AMP] = ACTIONS(4743), + [anon_sym_LT_LT] = ACTIONS(4743), + [anon_sym_LT_LT_DASH] = ACTIONS(4743), + [anon_sym_LT_LT_LT] = ACTIONS(4743), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym_LF] = ACTIONS(4884), - [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym_LF] = ACTIONS(4741), + [anon_sym_AMP] = ACTIONS(4743), }, - [2779] = { - [sym_file_descriptor] = ACTIONS(4888), - [sym__concat] = ACTIONS(4888), - [anon_sym_esac] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4890), - [anon_sym_RPAREN] = ACTIONS(4890), - [anon_sym_SEMI_SEMI] = ACTIONS(4890), - [anon_sym_PIPE_AMP] = ACTIONS(4890), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [anon_sym_LT] = ACTIONS(4890), - [anon_sym_GT] = ACTIONS(4890), - [anon_sym_GT_GT] = ACTIONS(4890), - [anon_sym_AMP_GT] = ACTIONS(4890), - [anon_sym_AMP_GT_GT] = ACTIONS(4890), - [anon_sym_LT_AMP] = ACTIONS(4890), - [anon_sym_GT_AMP] = ACTIONS(4890), - [anon_sym_LT_LT] = ACTIONS(4890), - [anon_sym_LT_LT_DASH] = ACTIONS(4890), - [anon_sym_LT_LT_LT] = ACTIONS(4890), + [2566] = { + [sym_file_descriptor] = ACTIONS(4745), + [sym__concat] = ACTIONS(4745), + [anon_sym_esac] = ACTIONS(4747), + [anon_sym_PIPE] = ACTIONS(4747), + [anon_sym_RPAREN] = ACTIONS(4747), + [anon_sym_SEMI_SEMI] = ACTIONS(4747), + [anon_sym_PIPE_AMP] = ACTIONS(4747), + [anon_sym_AMP_AMP] = ACTIONS(4747), + [anon_sym_PIPE_PIPE] = ACTIONS(4747), + [anon_sym_LT] = ACTIONS(4747), + [anon_sym_GT] = ACTIONS(4747), + [anon_sym_GT_GT] = ACTIONS(4747), + [anon_sym_AMP_GT] = ACTIONS(4747), + [anon_sym_AMP_GT_GT] = ACTIONS(4747), + [anon_sym_LT_AMP] = ACTIONS(4747), + [anon_sym_GT_AMP] = ACTIONS(4747), + [anon_sym_LT_LT] = ACTIONS(4747), + [anon_sym_LT_LT_DASH] = ACTIONS(4747), + [anon_sym_LT_LT_LT] = ACTIONS(4747), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4890), - [anon_sym_LF] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4890), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_LF] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4747), }, - [2780] = { - [sym_file_descriptor] = ACTIONS(4892), - [sym__concat] = ACTIONS(4892), - [anon_sym_esac] = ACTIONS(4894), - [anon_sym_PIPE] = ACTIONS(4894), - [anon_sym_RPAREN] = ACTIONS(4894), - [anon_sym_SEMI_SEMI] = ACTIONS(4894), - [anon_sym_PIPE_AMP] = ACTIONS(4894), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE_PIPE] = ACTIONS(4894), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_GT_GT] = ACTIONS(4894), - [anon_sym_AMP_GT] = ACTIONS(4894), - [anon_sym_AMP_GT_GT] = ACTIONS(4894), - [anon_sym_LT_AMP] = ACTIONS(4894), - [anon_sym_GT_AMP] = ACTIONS(4894), - [anon_sym_LT_LT] = ACTIONS(4894), - [anon_sym_LT_LT_DASH] = ACTIONS(4894), - [anon_sym_LT_LT_LT] = ACTIONS(4894), + [2567] = { + [sym_file_descriptor] = ACTIONS(4749), + [sym__concat] = ACTIONS(4749), + [anon_sym_esac] = ACTIONS(4751), + [anon_sym_PIPE] = ACTIONS(4751), + [anon_sym_RPAREN] = ACTIONS(4751), + [anon_sym_SEMI_SEMI] = ACTIONS(4751), + [anon_sym_PIPE_AMP] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4751), + [anon_sym_GT_GT] = ACTIONS(4751), + [anon_sym_AMP_GT] = ACTIONS(4751), + [anon_sym_AMP_GT_GT] = ACTIONS(4751), + [anon_sym_LT_AMP] = ACTIONS(4751), + [anon_sym_GT_AMP] = ACTIONS(4751), + [anon_sym_LT_LT] = ACTIONS(4751), + [anon_sym_LT_LT_DASH] = ACTIONS(4751), + [anon_sym_LT_LT_LT] = ACTIONS(4751), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4894), - [anon_sym_LF] = ACTIONS(4892), - [anon_sym_AMP] = ACTIONS(4894), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_LF] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4751), }, - [2781] = { - [sym_file_descriptor] = ACTIONS(4896), - [sym__concat] = ACTIONS(4896), - [anon_sym_esac] = ACTIONS(4898), - [anon_sym_PIPE] = ACTIONS(4898), - [anon_sym_RPAREN] = ACTIONS(4898), - [anon_sym_SEMI_SEMI] = ACTIONS(4898), - [anon_sym_PIPE_AMP] = ACTIONS(4898), - [anon_sym_AMP_AMP] = ACTIONS(4898), - [anon_sym_PIPE_PIPE] = ACTIONS(4898), - [anon_sym_LT] = ACTIONS(4898), - [anon_sym_GT] = ACTIONS(4898), - [anon_sym_GT_GT] = ACTIONS(4898), - [anon_sym_AMP_GT] = ACTIONS(4898), - [anon_sym_AMP_GT_GT] = ACTIONS(4898), - [anon_sym_LT_AMP] = ACTIONS(4898), - [anon_sym_GT_AMP] = ACTIONS(4898), - [anon_sym_LT_LT] = ACTIONS(4898), - [anon_sym_LT_LT_DASH] = ACTIONS(4898), - [anon_sym_LT_LT_LT] = ACTIONS(4898), + [2568] = { + [sym_file_descriptor] = ACTIONS(4753), + [sym__concat] = ACTIONS(4753), + [anon_sym_esac] = ACTIONS(4755), + [anon_sym_PIPE] = ACTIONS(4755), + [anon_sym_RPAREN] = ACTIONS(4755), + [anon_sym_SEMI_SEMI] = ACTIONS(4755), + [anon_sym_PIPE_AMP] = ACTIONS(4755), + [anon_sym_AMP_AMP] = ACTIONS(4755), + [anon_sym_PIPE_PIPE] = ACTIONS(4755), + [anon_sym_LT] = ACTIONS(4755), + [anon_sym_GT] = ACTIONS(4755), + [anon_sym_GT_GT] = ACTIONS(4755), + [anon_sym_AMP_GT] = ACTIONS(4755), + [anon_sym_AMP_GT_GT] = ACTIONS(4755), + [anon_sym_LT_AMP] = ACTIONS(4755), + [anon_sym_GT_AMP] = ACTIONS(4755), + [anon_sym_LT_LT] = ACTIONS(4755), + [anon_sym_LT_LT_DASH] = ACTIONS(4755), + [anon_sym_LT_LT_LT] = ACTIONS(4755), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4898), - [anon_sym_LF] = ACTIONS(4896), - [anon_sym_AMP] = ACTIONS(4898), + [anon_sym_SEMI] = ACTIONS(4755), + [anon_sym_LF] = ACTIONS(4753), + [anon_sym_AMP] = ACTIONS(4755), }, - [2782] = { - [sym_concatenation] = STATE(839), + [2569] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6745), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6195), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -73372,53 +65261,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2783] = { - [sym_file_descriptor] = ACTIONS(4902), - [sym__concat] = ACTIONS(4902), - [anon_sym_esac] = ACTIONS(4904), - [anon_sym_PIPE] = ACTIONS(4904), - [anon_sym_RPAREN] = ACTIONS(4904), - [anon_sym_SEMI_SEMI] = ACTIONS(4904), - [anon_sym_PIPE_AMP] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4904), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_LT] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4904), - [anon_sym_GT_GT] = ACTIONS(4904), - [anon_sym_AMP_GT] = ACTIONS(4904), - [anon_sym_AMP_GT_GT] = ACTIONS(4904), - [anon_sym_LT_AMP] = ACTIONS(4904), - [anon_sym_GT_AMP] = ACTIONS(4904), - [anon_sym_LT_LT] = ACTIONS(4904), - [anon_sym_LT_LT_DASH] = ACTIONS(4904), - [anon_sym_LT_LT_LT] = ACTIONS(4904), + [2570] = { + [sym_file_descriptor] = ACTIONS(4759), + [sym__concat] = ACTIONS(4759), + [anon_sym_esac] = ACTIONS(4761), + [anon_sym_PIPE] = ACTIONS(4761), + [anon_sym_RPAREN] = ACTIONS(4761), + [anon_sym_SEMI_SEMI] = ACTIONS(4761), + [anon_sym_PIPE_AMP] = ACTIONS(4761), + [anon_sym_AMP_AMP] = ACTIONS(4761), + [anon_sym_PIPE_PIPE] = ACTIONS(4761), + [anon_sym_LT] = ACTIONS(4761), + [anon_sym_GT] = ACTIONS(4761), + [anon_sym_GT_GT] = ACTIONS(4761), + [anon_sym_AMP_GT] = ACTIONS(4761), + [anon_sym_AMP_GT_GT] = ACTIONS(4761), + [anon_sym_LT_AMP] = ACTIONS(4761), + [anon_sym_GT_AMP] = ACTIONS(4761), + [anon_sym_LT_LT] = ACTIONS(4761), + [anon_sym_LT_LT_DASH] = ACTIONS(4761), + [anon_sym_LT_LT_LT] = ACTIONS(4761), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4904), - [anon_sym_LF] = ACTIONS(4902), - [anon_sym_AMP] = ACTIONS(4904), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_LF] = ACTIONS(4759), + [anon_sym_AMP] = ACTIONS(4761), }, - [2784] = { - [sym_concatenation] = STATE(839), + [2571] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6747), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6197), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -73426,53 +65315,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2785] = { - [sym_file_descriptor] = ACTIONS(4908), - [sym__concat] = ACTIONS(4908), - [anon_sym_esac] = ACTIONS(4910), - [anon_sym_PIPE] = ACTIONS(4910), - [anon_sym_RPAREN] = ACTIONS(4910), - [anon_sym_SEMI_SEMI] = ACTIONS(4910), - [anon_sym_PIPE_AMP] = ACTIONS(4910), - [anon_sym_AMP_AMP] = ACTIONS(4910), - [anon_sym_PIPE_PIPE] = ACTIONS(4910), - [anon_sym_LT] = ACTIONS(4910), - [anon_sym_GT] = ACTIONS(4910), - [anon_sym_GT_GT] = ACTIONS(4910), - [anon_sym_AMP_GT] = ACTIONS(4910), - [anon_sym_AMP_GT_GT] = ACTIONS(4910), - [anon_sym_LT_AMP] = ACTIONS(4910), - [anon_sym_GT_AMP] = ACTIONS(4910), - [anon_sym_LT_LT] = ACTIONS(4910), - [anon_sym_LT_LT_DASH] = ACTIONS(4910), - [anon_sym_LT_LT_LT] = ACTIONS(4910), + [2572] = { + [sym_file_descriptor] = ACTIONS(4765), + [sym__concat] = ACTIONS(4765), + [anon_sym_esac] = ACTIONS(4767), + [anon_sym_PIPE] = ACTIONS(4767), + [anon_sym_RPAREN] = ACTIONS(4767), + [anon_sym_SEMI_SEMI] = ACTIONS(4767), + [anon_sym_PIPE_AMP] = ACTIONS(4767), + [anon_sym_AMP_AMP] = ACTIONS(4767), + [anon_sym_PIPE_PIPE] = ACTIONS(4767), + [anon_sym_LT] = ACTIONS(4767), + [anon_sym_GT] = ACTIONS(4767), + [anon_sym_GT_GT] = ACTIONS(4767), + [anon_sym_AMP_GT] = ACTIONS(4767), + [anon_sym_AMP_GT_GT] = ACTIONS(4767), + [anon_sym_LT_AMP] = ACTIONS(4767), + [anon_sym_GT_AMP] = ACTIONS(4767), + [anon_sym_LT_LT] = ACTIONS(4767), + [anon_sym_LT_LT_DASH] = ACTIONS(4767), + [anon_sym_LT_LT_LT] = ACTIONS(4767), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4910), - [anon_sym_LF] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4910), + [anon_sym_SEMI] = ACTIONS(4767), + [anon_sym_LF] = ACTIONS(4765), + [anon_sym_AMP] = ACTIONS(4767), }, - [2786] = { - [sym_concatenation] = STATE(839), + [2573] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6749), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6199), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -73480,156 +65369,156 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2787] = { - [sym_file_descriptor] = ACTIONS(4914), - [sym__concat] = ACTIONS(4914), - [anon_sym_esac] = ACTIONS(4916), - [anon_sym_PIPE] = ACTIONS(4916), - [anon_sym_RPAREN] = ACTIONS(4916), - [anon_sym_SEMI_SEMI] = ACTIONS(4916), - [anon_sym_PIPE_AMP] = ACTIONS(4916), - [anon_sym_AMP_AMP] = ACTIONS(4916), - [anon_sym_PIPE_PIPE] = ACTIONS(4916), - [anon_sym_LT] = ACTIONS(4916), - [anon_sym_GT] = ACTIONS(4916), - [anon_sym_GT_GT] = ACTIONS(4916), - [anon_sym_AMP_GT] = ACTIONS(4916), - [anon_sym_AMP_GT_GT] = ACTIONS(4916), - [anon_sym_LT_AMP] = ACTIONS(4916), - [anon_sym_GT_AMP] = ACTIONS(4916), - [anon_sym_LT_LT] = ACTIONS(4916), - [anon_sym_LT_LT_DASH] = ACTIONS(4916), - [anon_sym_LT_LT_LT] = ACTIONS(4916), + [2574] = { + [sym_file_descriptor] = ACTIONS(4771), + [sym__concat] = ACTIONS(4771), + [anon_sym_esac] = ACTIONS(4773), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_RPAREN] = ACTIONS(4773), + [anon_sym_SEMI_SEMI] = ACTIONS(4773), + [anon_sym_PIPE_AMP] = ACTIONS(4773), + [anon_sym_AMP_AMP] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4773), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_AMP_GT] = ACTIONS(4773), + [anon_sym_AMP_GT_GT] = ACTIONS(4773), + [anon_sym_LT_AMP] = ACTIONS(4773), + [anon_sym_GT_AMP] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_LT_LT_DASH] = ACTIONS(4773), + [anon_sym_LT_LT_LT] = ACTIONS(4773), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4916), - [anon_sym_LF] = ACTIONS(4914), - [anon_sym_AMP] = ACTIONS(4916), + [anon_sym_SEMI] = ACTIONS(4773), + [anon_sym_LF] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), }, - [2788] = { - [sym_file_descriptor] = ACTIONS(4918), - [sym__concat] = ACTIONS(4918), - [anon_sym_esac] = ACTIONS(4920), - [anon_sym_PIPE] = ACTIONS(4920), - [anon_sym_RPAREN] = ACTIONS(4920), - [anon_sym_SEMI_SEMI] = ACTIONS(4920), - [anon_sym_PIPE_AMP] = ACTIONS(4920), - [anon_sym_AMP_AMP] = ACTIONS(4920), - [anon_sym_PIPE_PIPE] = ACTIONS(4920), - [anon_sym_LT] = ACTIONS(4920), - [anon_sym_GT] = ACTIONS(4920), - [anon_sym_GT_GT] = ACTIONS(4920), - [anon_sym_AMP_GT] = ACTIONS(4920), - [anon_sym_AMP_GT_GT] = ACTIONS(4920), - [anon_sym_LT_AMP] = ACTIONS(4920), - [anon_sym_GT_AMP] = ACTIONS(4920), - [anon_sym_LT_LT] = ACTIONS(4920), - [anon_sym_LT_LT_DASH] = ACTIONS(4920), - [anon_sym_LT_LT_LT] = ACTIONS(4920), + [2575] = { + [sym_file_descriptor] = ACTIONS(4775), + [sym__concat] = ACTIONS(4775), + [anon_sym_esac] = ACTIONS(4777), + [anon_sym_PIPE] = ACTIONS(4777), + [anon_sym_RPAREN] = ACTIONS(4777), + [anon_sym_SEMI_SEMI] = ACTIONS(4777), + [anon_sym_PIPE_AMP] = ACTIONS(4777), + [anon_sym_AMP_AMP] = ACTIONS(4777), + [anon_sym_PIPE_PIPE] = ACTIONS(4777), + [anon_sym_LT] = ACTIONS(4777), + [anon_sym_GT] = ACTIONS(4777), + [anon_sym_GT_GT] = ACTIONS(4777), + [anon_sym_AMP_GT] = ACTIONS(4777), + [anon_sym_AMP_GT_GT] = ACTIONS(4777), + [anon_sym_LT_AMP] = ACTIONS(4777), + [anon_sym_GT_AMP] = ACTIONS(4777), + [anon_sym_LT_LT] = ACTIONS(4777), + [anon_sym_LT_LT_DASH] = ACTIONS(4777), + [anon_sym_LT_LT_LT] = ACTIONS(4777), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4920), - [anon_sym_LF] = ACTIONS(4918), - [anon_sym_AMP] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4777), + [anon_sym_LF] = ACTIONS(4775), + [anon_sym_AMP] = ACTIONS(4777), }, - [2789] = { - [sym__concat] = ACTIONS(5540), - [anon_sym_RBRACE] = ACTIONS(5540), + [2576] = { + [sym__concat] = ACTIONS(5325), + [anon_sym_RBRACE] = ACTIONS(5325), [sym_comment] = ACTIONS(53), }, - [2790] = { - [sym__concat] = ACTIONS(5544), - [anon_sym_RBRACE] = ACTIONS(5544), + [2577] = { + [sym__concat] = ACTIONS(5329), + [anon_sym_RBRACE] = ACTIONS(5329), [sym_comment] = ACTIONS(53), }, - [2791] = { - [sym__concat] = ACTIONS(5548), - [anon_sym_RBRACE] = ACTIONS(5548), + [2578] = { + [sym__concat] = ACTIONS(5333), + [anon_sym_RBRACE] = ACTIONS(5333), [sym_comment] = ACTIONS(53), }, - [2792] = { - [sym_file_descriptor] = ACTIONS(3917), - [sym__concat] = ACTIONS(3917), - [anon_sym_PIPE] = ACTIONS(3919), - [anon_sym_RPAREN] = ACTIONS(3917), - [anon_sym_PIPE_AMP] = ACTIONS(3917), - [anon_sym_AMP_AMP] = ACTIONS(3917), - [anon_sym_PIPE_PIPE] = ACTIONS(3917), - [anon_sym_LT] = ACTIONS(3919), - [anon_sym_GT] = ACTIONS(3919), - [anon_sym_GT_GT] = ACTIONS(3917), - [anon_sym_AMP_GT] = ACTIONS(3919), - [anon_sym_AMP_GT_GT] = ACTIONS(3917), - [anon_sym_LT_AMP] = ACTIONS(3917), - [anon_sym_GT_AMP] = ACTIONS(3917), - [anon_sym_LT_LT] = ACTIONS(3919), - [anon_sym_LT_LT_DASH] = ACTIONS(3917), - [anon_sym_LT_LT_LT] = ACTIONS(3917), - [anon_sym_BQUOTE] = ACTIONS(3917), + [2579] = { + [sym_file_descriptor] = ACTIONS(3829), + [sym__concat] = ACTIONS(3829), + [anon_sym_PIPE] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(3829), + [anon_sym_PIPE_AMP] = ACTIONS(3829), + [anon_sym_AMP_AMP] = ACTIONS(3829), + [anon_sym_PIPE_PIPE] = ACTIONS(3829), + [anon_sym_LT] = ACTIONS(3831), + [anon_sym_GT] = ACTIONS(3831), + [anon_sym_GT_GT] = ACTIONS(3829), + [anon_sym_AMP_GT] = ACTIONS(3831), + [anon_sym_AMP_GT_GT] = ACTIONS(3829), + [anon_sym_LT_AMP] = ACTIONS(3829), + [anon_sym_GT_AMP] = ACTIONS(3829), + [anon_sym_LT_LT] = ACTIONS(3831), + [anon_sym_LT_LT_DASH] = ACTIONS(3829), + [anon_sym_LT_LT_LT] = ACTIONS(3829), + [anon_sym_BQUOTE] = ACTIONS(3829), [sym_comment] = ACTIONS(53), }, - [2793] = { - [sym_file_descriptor] = ACTIONS(3923), - [sym__concat] = ACTIONS(3923), - [anon_sym_PIPE] = ACTIONS(3925), - [anon_sym_RPAREN] = ACTIONS(3923), - [anon_sym_PIPE_AMP] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3923), - [anon_sym_PIPE_PIPE] = ACTIONS(3923), - [anon_sym_LT] = ACTIONS(3925), - [anon_sym_GT] = ACTIONS(3925), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_AMP_GT] = ACTIONS(3925), - [anon_sym_AMP_GT_GT] = ACTIONS(3923), - [anon_sym_LT_AMP] = ACTIONS(3923), - [anon_sym_GT_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3925), - [anon_sym_LT_LT_DASH] = ACTIONS(3923), - [anon_sym_LT_LT_LT] = ACTIONS(3923), - [anon_sym_BQUOTE] = ACTIONS(3923), + [2580] = { + [sym_file_descriptor] = ACTIONS(3835), + [sym__concat] = ACTIONS(3835), + [anon_sym_PIPE] = ACTIONS(3837), + [anon_sym_RPAREN] = ACTIONS(3835), + [anon_sym_PIPE_AMP] = ACTIONS(3835), + [anon_sym_AMP_AMP] = ACTIONS(3835), + [anon_sym_PIPE_PIPE] = ACTIONS(3835), + [anon_sym_LT] = ACTIONS(3837), + [anon_sym_GT] = ACTIONS(3837), + [anon_sym_GT_GT] = ACTIONS(3835), + [anon_sym_AMP_GT] = ACTIONS(3837), + [anon_sym_AMP_GT_GT] = ACTIONS(3835), + [anon_sym_LT_AMP] = ACTIONS(3835), + [anon_sym_GT_AMP] = ACTIONS(3835), + [anon_sym_LT_LT] = ACTIONS(3837), + [anon_sym_LT_LT_DASH] = ACTIONS(3835), + [anon_sym_LT_LT_LT] = ACTIONS(3835), + [anon_sym_BQUOTE] = ACTIONS(3835), [sym_comment] = ACTIONS(53), }, - [2794] = { - [sym_file_descriptor] = ACTIONS(4008), - [sym__concat] = ACTIONS(4008), - [anon_sym_PIPE] = ACTIONS(4010), - [anon_sym_RPAREN] = ACTIONS(4008), - [anon_sym_PIPE_AMP] = ACTIONS(4008), - [anon_sym_AMP_AMP] = ACTIONS(4008), - [anon_sym_PIPE_PIPE] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_GT_GT] = ACTIONS(4008), - [anon_sym_AMP_GT] = ACTIONS(4010), - [anon_sym_AMP_GT_GT] = ACTIONS(4008), - [anon_sym_LT_AMP] = ACTIONS(4008), - [anon_sym_GT_AMP] = ACTIONS(4008), - [anon_sym_LT_LT] = ACTIONS(4010), - [anon_sym_LT_LT_DASH] = ACTIONS(4008), - [anon_sym_LT_LT_LT] = ACTIONS(4008), - [anon_sym_BQUOTE] = ACTIONS(4008), + [2581] = { + [sym_file_descriptor] = ACTIONS(3920), + [sym__concat] = ACTIONS(3920), + [anon_sym_PIPE] = ACTIONS(3922), + [anon_sym_RPAREN] = ACTIONS(3920), + [anon_sym_PIPE_AMP] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3920), + [anon_sym_PIPE_PIPE] = ACTIONS(3920), + [anon_sym_LT] = ACTIONS(3922), + [anon_sym_GT] = ACTIONS(3922), + [anon_sym_GT_GT] = ACTIONS(3920), + [anon_sym_AMP_GT] = ACTIONS(3922), + [anon_sym_AMP_GT_GT] = ACTIONS(3920), + [anon_sym_LT_AMP] = ACTIONS(3920), + [anon_sym_GT_AMP] = ACTIONS(3920), + [anon_sym_LT_LT] = ACTIONS(3922), + [anon_sym_LT_LT_DASH] = ACTIONS(3920), + [anon_sym_LT_LT_LT] = ACTIONS(3920), + [anon_sym_BQUOTE] = ACTIONS(3920), [sym_comment] = ACTIONS(53), }, - [2795] = { - [sym_concatenation] = STATE(839), + [2582] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6751), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6201), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -73637,44 +65526,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2796] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(6753), + [2583] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(6203), [sym_comment] = ACTIONS(53), }, - [2797] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(6755), + [2584] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(6205), [sym_comment] = ACTIONS(53), }, - [2798] = { - [anon_sym_RBRACE] = ACTIONS(6755), + [2585] = { + [anon_sym_RBRACE] = ACTIONS(6205), [sym_comment] = ACTIONS(53), }, - [2799] = { - [sym_concatenation] = STATE(2932), + [2586] = { + [sym_concatenation] = STATE(2666), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2932), - [anon_sym_RBRACE] = ACTIONS(6757), - [anon_sym_EQ] = ACTIONS(6759), + [aux_sym_expansion_repeat1] = STATE(2666), + [anon_sym_RBRACE] = ACTIONS(6207), + [anon_sym_EQ] = ACTIONS(6209), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6761), + [anon_sym_POUND] = ACTIONS(6211), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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_COLON] = ACTIONS(6209), + [anon_sym_COLON_QMARK] = ACTIONS(6209), + [anon_sym_COLON_DASH] = ACTIONS(6209), + [anon_sym_PERCENT] = ACTIONS(6209), + [anon_sym_DASH] = ACTIONS(6209), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -73682,49 +65571,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2800] = { - [sym_file_descriptor] = ACTIONS(4024), - [sym__concat] = ACTIONS(4024), - [anon_sym_PIPE] = ACTIONS(4026), - [anon_sym_RPAREN] = ACTIONS(4024), - [anon_sym_PIPE_AMP] = ACTIONS(4024), - [anon_sym_AMP_AMP] = ACTIONS(4024), - [anon_sym_PIPE_PIPE] = ACTIONS(4024), - [anon_sym_LT] = ACTIONS(4026), - [anon_sym_GT] = ACTIONS(4026), - [anon_sym_GT_GT] = ACTIONS(4024), - [anon_sym_AMP_GT] = ACTIONS(4026), - [anon_sym_AMP_GT_GT] = ACTIONS(4024), - [anon_sym_LT_AMP] = ACTIONS(4024), - [anon_sym_GT_AMP] = ACTIONS(4024), - [anon_sym_LT_LT] = ACTIONS(4026), - [anon_sym_LT_LT_DASH] = ACTIONS(4024), - [anon_sym_LT_LT_LT] = ACTIONS(4024), - [anon_sym_BQUOTE] = ACTIONS(4024), + [2587] = { + [sym_file_descriptor] = ACTIONS(3936), + [sym__concat] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_RPAREN] = ACTIONS(3936), + [anon_sym_PIPE_AMP] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_GT_GT] = ACTIONS(3936), + [anon_sym_AMP_GT] = ACTIONS(3938), + [anon_sym_AMP_GT_GT] = ACTIONS(3936), + [anon_sym_LT_AMP] = ACTIONS(3936), + [anon_sym_GT_AMP] = ACTIONS(3936), + [anon_sym_LT_LT] = ACTIONS(3938), + [anon_sym_LT_LT_DASH] = ACTIONS(3936), + [anon_sym_LT_LT_LT] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(3936), [sym_comment] = ACTIONS(53), }, - [2801] = { - [sym_concatenation] = STATE(2934), + [2588] = { + [sym_concatenation] = STATE(2668), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2934), - [anon_sym_RBRACE] = ACTIONS(6763), - [anon_sym_EQ] = ACTIONS(6765), + [aux_sym_expansion_repeat1] = STATE(2668), + [anon_sym_RBRACE] = ACTIONS(6213), + [anon_sym_EQ] = ACTIONS(6215), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6767), + [anon_sym_POUND] = ACTIONS(6217), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6765), - [anon_sym_COLON_QMARK] = ACTIONS(6765), - [anon_sym_COLON_DASH] = ACTIONS(6765), - [anon_sym_PERCENT] = ACTIONS(6765), - [anon_sym_DASH] = ACTIONS(6765), + [anon_sym_COLON] = ACTIONS(6215), + [anon_sym_COLON_QMARK] = ACTIONS(6215), + [anon_sym_COLON_DASH] = ACTIONS(6215), + [anon_sym_PERCENT] = ACTIONS(6215), + [anon_sym_DASH] = ACTIONS(6215), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -73732,49 +65621,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2802] = { - [sym_file_descriptor] = ACTIONS(4034), - [sym__concat] = ACTIONS(4034), - [anon_sym_PIPE] = ACTIONS(4036), - [anon_sym_RPAREN] = ACTIONS(4034), - [anon_sym_PIPE_AMP] = ACTIONS(4034), - [anon_sym_AMP_AMP] = ACTIONS(4034), - [anon_sym_PIPE_PIPE] = ACTIONS(4034), - [anon_sym_LT] = ACTIONS(4036), - [anon_sym_GT] = ACTIONS(4036), - [anon_sym_GT_GT] = ACTIONS(4034), - [anon_sym_AMP_GT] = ACTIONS(4036), - [anon_sym_AMP_GT_GT] = ACTIONS(4034), - [anon_sym_LT_AMP] = ACTIONS(4034), - [anon_sym_GT_AMP] = ACTIONS(4034), - [anon_sym_LT_LT] = ACTIONS(4036), - [anon_sym_LT_LT_DASH] = ACTIONS(4034), - [anon_sym_LT_LT_LT] = ACTIONS(4034), - [anon_sym_BQUOTE] = ACTIONS(4034), + [2589] = { + [sym_file_descriptor] = ACTIONS(3946), + [sym__concat] = ACTIONS(3946), + [anon_sym_PIPE] = ACTIONS(3948), + [anon_sym_RPAREN] = ACTIONS(3946), + [anon_sym_PIPE_AMP] = ACTIONS(3946), + [anon_sym_AMP_AMP] = ACTIONS(3946), + [anon_sym_PIPE_PIPE] = ACTIONS(3946), + [anon_sym_LT] = ACTIONS(3948), + [anon_sym_GT] = ACTIONS(3948), + [anon_sym_GT_GT] = ACTIONS(3946), + [anon_sym_AMP_GT] = ACTIONS(3948), + [anon_sym_AMP_GT_GT] = ACTIONS(3946), + [anon_sym_LT_AMP] = ACTIONS(3946), + [anon_sym_GT_AMP] = ACTIONS(3946), + [anon_sym_LT_LT] = ACTIONS(3948), + [anon_sym_LT_LT_DASH] = ACTIONS(3946), + [anon_sym_LT_LT_LT] = ACTIONS(3946), + [anon_sym_BQUOTE] = ACTIONS(3946), [sym_comment] = ACTIONS(53), }, - [2803] = { - [sym_concatenation] = STATE(2936), + [2590] = { + [sym_concatenation] = STATE(2670), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2936), - [anon_sym_RBRACE] = ACTIONS(6769), - [anon_sym_EQ] = ACTIONS(6771), + [aux_sym_expansion_repeat1] = STATE(2670), + [anon_sym_RBRACE] = ACTIONS(6219), + [anon_sym_EQ] = ACTIONS(6221), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6773), + [anon_sym_POUND] = ACTIONS(6223), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6771), - [anon_sym_COLON_QMARK] = ACTIONS(6771), - [anon_sym_COLON_DASH] = ACTIONS(6771), - [anon_sym_PERCENT] = ACTIONS(6771), - [anon_sym_DASH] = ACTIONS(6771), + [anon_sym_COLON] = ACTIONS(6221), + [anon_sym_COLON_QMARK] = ACTIONS(6221), + [anon_sym_COLON_DASH] = ACTIONS(6221), + [anon_sym_PERCENT] = ACTIONS(6221), + [anon_sym_DASH] = ACTIONS(6221), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -73782,49 +65671,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2804] = { - [sym_file_descriptor] = ACTIONS(4044), - [sym__concat] = ACTIONS(4044), - [anon_sym_PIPE] = ACTIONS(4046), - [anon_sym_RPAREN] = ACTIONS(4044), - [anon_sym_PIPE_AMP] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_PIPE_PIPE] = ACTIONS(4044), - [anon_sym_LT] = ACTIONS(4046), - [anon_sym_GT] = ACTIONS(4046), - [anon_sym_GT_GT] = ACTIONS(4044), - [anon_sym_AMP_GT] = ACTIONS(4046), - [anon_sym_AMP_GT_GT] = ACTIONS(4044), - [anon_sym_LT_AMP] = ACTIONS(4044), - [anon_sym_GT_AMP] = ACTIONS(4044), - [anon_sym_LT_LT] = ACTIONS(4046), - [anon_sym_LT_LT_DASH] = ACTIONS(4044), - [anon_sym_LT_LT_LT] = ACTIONS(4044), - [anon_sym_BQUOTE] = ACTIONS(4044), + [2591] = { + [sym_file_descriptor] = ACTIONS(3956), + [sym__concat] = ACTIONS(3956), + [anon_sym_PIPE] = ACTIONS(3958), + [anon_sym_RPAREN] = ACTIONS(3956), + [anon_sym_PIPE_AMP] = ACTIONS(3956), + [anon_sym_AMP_AMP] = ACTIONS(3956), + [anon_sym_PIPE_PIPE] = ACTIONS(3956), + [anon_sym_LT] = ACTIONS(3958), + [anon_sym_GT] = ACTIONS(3958), + [anon_sym_GT_GT] = ACTIONS(3956), + [anon_sym_AMP_GT] = ACTIONS(3958), + [anon_sym_AMP_GT_GT] = ACTIONS(3956), + [anon_sym_LT_AMP] = ACTIONS(3956), + [anon_sym_GT_AMP] = ACTIONS(3956), + [anon_sym_LT_LT] = ACTIONS(3958), + [anon_sym_LT_LT_DASH] = ACTIONS(3956), + [anon_sym_LT_LT_LT] = ACTIONS(3956), + [anon_sym_BQUOTE] = ACTIONS(3956), [sym_comment] = ACTIONS(53), }, - [2805] = { - [sym_concatenation] = STATE(839), + [2592] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6775), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6225), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -73832,49 +65721,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2806] = { - [sym_file_descriptor] = ACTIONS(4050), - [sym__concat] = ACTIONS(4050), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_RPAREN] = ACTIONS(4050), - [anon_sym_PIPE_AMP] = ACTIONS(4050), - [anon_sym_AMP_AMP] = ACTIONS(4050), - [anon_sym_PIPE_PIPE] = ACTIONS(4050), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_GT_GT] = ACTIONS(4050), - [anon_sym_AMP_GT] = ACTIONS(4052), - [anon_sym_AMP_GT_GT] = ACTIONS(4050), - [anon_sym_LT_AMP] = ACTIONS(4050), - [anon_sym_GT_AMP] = ACTIONS(4050), - [anon_sym_LT_LT] = ACTIONS(4052), - [anon_sym_LT_LT_DASH] = ACTIONS(4050), - [anon_sym_LT_LT_LT] = ACTIONS(4050), - [anon_sym_BQUOTE] = ACTIONS(4050), + [2593] = { + [sym_file_descriptor] = ACTIONS(3962), + [sym__concat] = ACTIONS(3962), + [anon_sym_PIPE] = ACTIONS(3964), + [anon_sym_RPAREN] = ACTIONS(3962), + [anon_sym_PIPE_AMP] = ACTIONS(3962), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3962), + [anon_sym_LT] = ACTIONS(3964), + [anon_sym_GT] = ACTIONS(3964), + [anon_sym_GT_GT] = ACTIONS(3962), + [anon_sym_AMP_GT] = ACTIONS(3964), + [anon_sym_AMP_GT_GT] = ACTIONS(3962), + [anon_sym_LT_AMP] = ACTIONS(3962), + [anon_sym_GT_AMP] = ACTIONS(3962), + [anon_sym_LT_LT] = ACTIONS(3964), + [anon_sym_LT_LT_DASH] = ACTIONS(3962), + [anon_sym_LT_LT_LT] = ACTIONS(3962), + [anon_sym_BQUOTE] = ACTIONS(3962), [sym_comment] = ACTIONS(53), }, - [2807] = { - [sym_concatenation] = STATE(839), + [2594] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6777), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6227), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -73882,553 +65771,83 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2808] = { - [sym_file_descriptor] = ACTIONS(3379), - [sym_variable_name] = ACTIONS(3379), - [anon_sym_esac] = ACTIONS(3381), - [anon_sym_PIPE] = ACTIONS(3381), - [anon_sym_SEMI_SEMI] = ACTIONS(3381), - [anon_sym_PIPE_AMP] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_PIPE_PIPE] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_GT] = ACTIONS(3381), - [anon_sym_GT_GT] = ACTIONS(3381), - [anon_sym_AMP_GT] = ACTIONS(3381), - [anon_sym_AMP_GT_GT] = ACTIONS(3381), - [anon_sym_LT_AMP] = ACTIONS(3381), - [anon_sym_GT_AMP] = ACTIONS(3381), - [sym__special_characters] = ACTIONS(3381), - [anon_sym_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3381), - [sym_raw_string] = ACTIONS(3381), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3381), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3381), - [anon_sym_BQUOTE] = ACTIONS(3381), - [anon_sym_LT_LPAREN] = ACTIONS(3381), - [anon_sym_GT_LPAREN] = ACTIONS(3381), + [2595] = { + [aux_sym_concatenation_repeat1] = STATE(2595), + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(3367), + [sym_variable_name] = ACTIONS(1642), + [anon_sym_esac] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1644), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1644), + [anon_sym_LT_AMP] = ACTIONS(1644), + [anon_sym_GT_AMP] = ACTIONS(1644), + [sym__special_characters] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1644), + [sym_raw_string] = ACTIONS(1644), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1644), + [anon_sym_LT_LPAREN] = ACTIONS(1644), + [anon_sym_GT_LPAREN] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3381), - [anon_sym_SEMI] = ACTIONS(3381), - [anon_sym_LF] = ACTIONS(3379), - [anon_sym_AMP] = ACTIONS(3381), + [sym_word] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, - [2809] = { - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(1654), - [sym_variable_name] = ACTIONS(1654), - [anon_sym_esac] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1656), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1656), - [anon_sym_LT_AMP] = ACTIONS(1656), - [anon_sym_GT_AMP] = ACTIONS(1656), - [sym__special_characters] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1656), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1656), - [anon_sym_BQUOTE] = ACTIONS(1656), - [anon_sym_LT_LPAREN] = ACTIONS(1656), - [anon_sym_GT_LPAREN] = ACTIONS(1656), + [2596] = { + [sym_file_redirect] = STATE(1495), + [sym_file_descriptor] = ACTIONS(5764), + [anon_sym_esac] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_SEMI_SEMI] = ACTIONS(3521), + [anon_sym_PIPE_AMP] = ACTIONS(3521), + [anon_sym_AMP_AMP] = ACTIONS(3521), + [anon_sym_PIPE_PIPE] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(5766), + [anon_sym_GT] = ACTIONS(5766), + [anon_sym_GT_GT] = ACTIONS(5766), + [anon_sym_AMP_GT] = ACTIONS(5766), + [anon_sym_AMP_GT_GT] = ACTIONS(5766), + [anon_sym_LT_AMP] = ACTIONS(5766), + [anon_sym_GT_AMP] = ACTIONS(5766), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(3521), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3521), }, - [2810] = { - [aux_sym_concatenation_repeat1] = STATE(2810), - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(6779), - [sym_variable_name] = ACTIONS(1654), - [anon_sym_esac] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1656), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1656), - [anon_sym_LT_AMP] = ACTIONS(1656), - [anon_sym_GT_AMP] = ACTIONS(1656), - [sym__special_characters] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1656), - [sym_raw_string] = ACTIONS(1656), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1656), - [anon_sym_BQUOTE] = ACTIONS(1656), - [anon_sym_LT_LPAREN] = ACTIONS(1656), - [anon_sym_GT_LPAREN] = ACTIONS(1656), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), - }, - [2811] = { - [sym_file_descriptor] = ACTIONS(1703), - [sym__concat] = ACTIONS(1703), - [sym_variable_name] = ACTIONS(1703), - [anon_sym_esac] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_SEMI_SEMI] = ACTIONS(1705), - [anon_sym_PIPE_AMP] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1705), - [anon_sym_PIPE_PIPE] = ACTIONS(1705), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_GT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_AMP_GT] = ACTIONS(1705), - [anon_sym_AMP_GT_GT] = ACTIONS(1705), - [anon_sym_LT_AMP] = ACTIONS(1705), - [anon_sym_GT_AMP] = ACTIONS(1705), - [sym__special_characters] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1705), - [sym_raw_string] = ACTIONS(1705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1705), - [anon_sym_BQUOTE] = ACTIONS(1705), - [anon_sym_LT_LPAREN] = ACTIONS(1705), - [anon_sym_GT_LPAREN] = ACTIONS(1705), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_LF] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1705), - }, - [2812] = { - [sym_concatenation] = STATE(2942), - [sym_string] = STATE(2941), - [sym_simple_expansion] = STATE(2941), - [sym_string_expansion] = STATE(2941), - [sym_expansion] = STATE(2941), - [sym_command_substitution] = STATE(2941), - [sym_process_substitution] = STATE(2941), - [anon_sym_RBRACE] = ACTIONS(6782), - [sym__special_characters] = ACTIONS(6784), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(6786), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), + [2597] = { + [sym_concatenation] = STATE(1498), + [sym_string] = STATE(2674), + [sym_simple_expansion] = STATE(2674), + [sym_string_expansion] = STATE(2674), + [sym_expansion] = STATE(2674), + [sym_command_substitution] = STATE(2674), + [sym_process_substitution] = STATE(2674), + [sym__special_characters] = ACTIONS(6229), + [anon_sym_DQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR] = ACTIONS(6063), + [sym_raw_string] = ACTIONS(6231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6069), + [anon_sym_BQUOTE] = ACTIONS(6071), + [anon_sym_LT_LPAREN] = ACTIONS(6073), + [anon_sym_GT_LPAREN] = ACTIONS(6073), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6786), + [sym_word] = ACTIONS(6231), }, - [2813] = { - [sym_file_descriptor] = ACTIONS(1744), - [sym__concat] = ACTIONS(1744), - [sym_variable_name] = ACTIONS(1744), - [anon_sym_esac] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_SEMI_SEMI] = ACTIONS(1746), - [anon_sym_PIPE_AMP] = ACTIONS(1746), - [anon_sym_AMP_AMP] = ACTIONS(1746), - [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1746), - [anon_sym_GT] = ACTIONS(1746), - [anon_sym_GT_GT] = ACTIONS(1746), - [anon_sym_AMP_GT] = ACTIONS(1746), - [anon_sym_AMP_GT_GT] = ACTIONS(1746), - [anon_sym_LT_AMP] = ACTIONS(1746), - [anon_sym_GT_AMP] = ACTIONS(1746), - [sym__special_characters] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1746), - [sym_raw_string] = ACTIONS(1746), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1746), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_LT_LPAREN] = ACTIONS(1746), - [anon_sym_GT_LPAREN] = ACTIONS(1746), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LF] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1746), - }, - [2814] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6788), - }, - [2815] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6790), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2816] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(6792), - [sym_comment] = ACTIONS(53), - }, - [2817] = { - [sym_concatenation] = STATE(2948), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2948), - [anon_sym_RBRACE] = ACTIONS(6794), - [anon_sym_EQ] = ACTIONS(6796), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6800), - [anon_sym_COLON] = ACTIONS(6796), - [anon_sym_COLON_QMARK] = ACTIONS(6796), - [anon_sym_COLON_DASH] = ACTIONS(6796), - [anon_sym_PERCENT] = ACTIONS(6796), - [anon_sym_DASH] = ACTIONS(6796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2818] = { - [sym_concatenation] = STATE(2951), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2951), - [anon_sym_RBRACE] = ACTIONS(6802), - [anon_sym_EQ] = ACTIONS(6804), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6808), - [anon_sym_COLON] = ACTIONS(6804), - [anon_sym_COLON_QMARK] = ACTIONS(6804), - [anon_sym_COLON_DASH] = ACTIONS(6804), - [anon_sym_PERCENT] = ACTIONS(6804), - [anon_sym_DASH] = ACTIONS(6804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2819] = { - [sym_concatenation] = STATE(2953), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2953), - [anon_sym_RBRACE] = ACTIONS(6782), - [anon_sym_EQ] = ACTIONS(6810), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6812), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6814), - [anon_sym_COLON] = ACTIONS(6810), - [anon_sym_COLON_QMARK] = ACTIONS(6810), - [anon_sym_COLON_DASH] = ACTIONS(6810), - [anon_sym_PERCENT] = ACTIONS(6810), - [anon_sym_DASH] = ACTIONS(6810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2820] = { - [sym_file_descriptor] = ACTIONS(1810), - [sym__concat] = ACTIONS(1810), - [sym_variable_name] = ACTIONS(1810), - [anon_sym_esac] = ACTIONS(1812), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_SEMI_SEMI] = ACTIONS(1812), - [anon_sym_PIPE_AMP] = ACTIONS(1812), - [anon_sym_AMP_AMP] = ACTIONS(1812), - [anon_sym_PIPE_PIPE] = ACTIONS(1812), - [anon_sym_LT] = ACTIONS(1812), - [anon_sym_GT] = ACTIONS(1812), - [anon_sym_GT_GT] = ACTIONS(1812), - [anon_sym_AMP_GT] = ACTIONS(1812), - [anon_sym_AMP_GT_GT] = ACTIONS(1812), - [anon_sym_LT_AMP] = ACTIONS(1812), - [anon_sym_GT_AMP] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(1812), - [anon_sym_DQUOTE] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1812), - [sym_raw_string] = ACTIONS(1812), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1812), - [anon_sym_GT_LPAREN] = ACTIONS(1812), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_LF] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1812), - }, - [2821] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6816), - }, - [2822] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6818), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2823] = { - [sym_file_descriptor] = ACTIONS(1818), - [sym__concat] = ACTIONS(1818), - [sym_variable_name] = ACTIONS(1818), - [anon_sym_esac] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_SEMI_SEMI] = ACTIONS(1820), - [anon_sym_PIPE_AMP] = ACTIONS(1820), - [anon_sym_AMP_AMP] = ACTIONS(1820), - [anon_sym_PIPE_PIPE] = ACTIONS(1820), - [anon_sym_LT] = ACTIONS(1820), - [anon_sym_GT] = ACTIONS(1820), - [anon_sym_GT_GT] = ACTIONS(1820), - [anon_sym_AMP_GT] = ACTIONS(1820), - [anon_sym_AMP_GT_GT] = ACTIONS(1820), - [anon_sym_LT_AMP] = ACTIONS(1820), - [anon_sym_GT_AMP] = ACTIONS(1820), - [sym__special_characters] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1820), - [sym_raw_string] = ACTIONS(1820), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1820), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1820), - [anon_sym_BQUOTE] = ACTIONS(1820), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_LF] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1820), - }, - [2824] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6820), - }, - [2825] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6782), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2826] = { - [sym_file_descriptor] = ACTIONS(1952), - [sym__concat] = ACTIONS(1952), - [sym_variable_name] = ACTIONS(1952), - [anon_sym_esac] = ACTIONS(1954), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_SEMI_SEMI] = ACTIONS(1954), - [anon_sym_PIPE_AMP] = ACTIONS(1954), - [anon_sym_AMP_AMP] = ACTIONS(1954), - [anon_sym_PIPE_PIPE] = ACTIONS(1954), - [anon_sym_LT] = ACTIONS(1954), - [anon_sym_GT] = ACTIONS(1954), - [anon_sym_GT_GT] = ACTIONS(1954), - [anon_sym_AMP_GT] = ACTIONS(1954), - [anon_sym_AMP_GT_GT] = ACTIONS(1954), - [anon_sym_LT_AMP] = ACTIONS(1954), - [anon_sym_GT_AMP] = ACTIONS(1954), - [sym__special_characters] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(1954), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1954), - [anon_sym_BQUOTE] = ACTIONS(1954), - [anon_sym_LT_LPAREN] = ACTIONS(1954), - [anon_sym_GT_LPAREN] = ACTIONS(1954), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1954), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_LF] = ACTIONS(1952), - [anon_sym_AMP] = ACTIONS(1954), - }, - [2827] = { - [sym_file_descriptor] = ACTIONS(2018), - [sym__concat] = ACTIONS(2018), - [sym_variable_name] = ACTIONS(2018), - [anon_sym_esac] = ACTIONS(2020), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_SEMI_SEMI] = ACTIONS(2020), - [anon_sym_PIPE_AMP] = ACTIONS(2020), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [anon_sym_LT] = ACTIONS(2020), - [anon_sym_GT] = ACTIONS(2020), - [anon_sym_GT_GT] = ACTIONS(2020), - [anon_sym_AMP_GT] = ACTIONS(2020), - [anon_sym_AMP_GT_GT] = ACTIONS(2020), - [anon_sym_LT_AMP] = ACTIONS(2020), - [anon_sym_GT_AMP] = ACTIONS(2020), - [sym__special_characters] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym_DOLLAR] = ACTIONS(2020), - [sym_raw_string] = ACTIONS(2020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2020), - [anon_sym_BQUOTE] = ACTIONS(2020), - [anon_sym_LT_LPAREN] = ACTIONS(2020), - [anon_sym_GT_LPAREN] = ACTIONS(2020), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2020), - [anon_sym_SEMI] = ACTIONS(2020), - [anon_sym_LF] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2020), - }, - [2828] = { - [sym_file_redirect] = STATE(1545), - [sym_file_descriptor] = ACTIONS(6109), - [anon_sym_esac] = ACTIONS(3609), - [anon_sym_PIPE] = ACTIONS(3609), - [anon_sym_SEMI_SEMI] = ACTIONS(3609), - [anon_sym_PIPE_AMP] = ACTIONS(3609), - [anon_sym_AMP_AMP] = ACTIONS(3609), - [anon_sym_PIPE_PIPE] = ACTIONS(3609), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_GT] = ACTIONS(6111), - [anon_sym_AMP_GT] = ACTIONS(6111), - [anon_sym_AMP_GT_GT] = ACTIONS(6111), - [anon_sym_LT_AMP] = ACTIONS(6111), - [anon_sym_GT_AMP] = ACTIONS(6111), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3609), - [anon_sym_LF] = ACTIONS(3611), - [anon_sym_AMP] = ACTIONS(3609), - }, - [2829] = { - [sym_concatenation] = STATE(1548), - [sym_string] = STATE(2958), - [sym_simple_expansion] = STATE(2958), - [sym_string_expansion] = STATE(2958), - [sym_expansion] = STATE(2958), - [sym_command_substitution] = STATE(2958), - [sym_process_substitution] = STATE(2958), - [sym__special_characters] = ACTIONS(6822), - [anon_sym_DQUOTE] = ACTIONS(6533), - [anon_sym_DOLLAR] = ACTIONS(6535), - [sym_raw_string] = ACTIONS(6824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6539), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6541), - [anon_sym_BQUOTE] = ACTIONS(6543), - [anon_sym_LT_LPAREN] = ACTIONS(6545), - [anon_sym_GT_LPAREN] = ACTIONS(6545), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6824), - }, - [2830] = { - [aux_sym_concatenation_repeat1] = STATE(2960), - [sym__concat] = ACTIONS(6826), + [2598] = { + [aux_sym_concatenation_repeat1] = STATE(2676), + [sym__concat] = ACTIONS(6233), [anon_sym_esac] = ACTIONS(665), [anon_sym_PIPE] = ACTIONS(665), [anon_sym_SEMI_SEMI] = ACTIONS(665), @@ -74440,12 +65859,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(661), [anon_sym_AMP] = ACTIONS(665), }, - [2831] = { + [2599] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(2962), - [anon_sym_DQUOTE] = ACTIONS(6828), + [aux_sym_string_repeat1] = STATE(2678), + [anon_sym_DQUOTE] = ACTIONS(6235), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -74453,24 +65872,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(237), [sym_comment] = ACTIONS(177), }, - [2832] = { - [sym_string] = STATE(2964), - [anon_sym_DQUOTE] = ACTIONS(6533), - [anon_sym_DOLLAR] = ACTIONS(6830), - [sym_raw_string] = ACTIONS(6832), - [anon_sym_POUND] = ACTIONS(6830), - [anon_sym_DASH] = ACTIONS(6830), + [2600] = { + [sym_string] = STATE(2680), + [anon_sym_DQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR] = ACTIONS(6237), + [sym_raw_string] = ACTIONS(6239), + [anon_sym_POUND] = ACTIONS(6237), + [anon_sym_DASH] = ACTIONS(6237), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6834), - [anon_sym_STAR] = ACTIONS(6830), - [anon_sym_AT] = ACTIONS(6830), - [anon_sym_QMARK] = ACTIONS(6830), - [anon_sym_0] = ACTIONS(6836), - [anon_sym__] = ACTIONS(6836), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6241), + [anon_sym_STAR] = ACTIONS(6237), + [anon_sym_AT] = ACTIONS(6237), + [anon_sym_QMARK] = ACTIONS(6237), + [anon_sym_0] = ACTIONS(6243), + [anon_sym__] = ACTIONS(6243), }, - [2833] = { - [aux_sym_concatenation_repeat1] = STATE(2960), - [sym__concat] = ACTIONS(6826), + [2601] = { + [aux_sym_concatenation_repeat1] = STATE(2676), + [sym__concat] = ACTIONS(6233), [anon_sym_esac] = ACTIONS(679), [anon_sym_PIPE] = ACTIONS(679), [anon_sym_SEMI_SEMI] = ACTIONS(679), @@ -74482,36 +65901,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(677), [anon_sym_AMP] = ACTIONS(679), }, - [2834] = { - [sym_subscript] = STATE(2970), - [sym_variable_name] = ACTIONS(6838), - [anon_sym_DOLLAR] = ACTIONS(6840), - [anon_sym_POUND] = ACTIONS(6842), - [anon_sym_DASH] = ACTIONS(6840), + [2602] = { + [sym_subscript] = STATE(2686), + [sym_variable_name] = ACTIONS(6245), + [anon_sym_DOLLAR] = ACTIONS(6247), + [anon_sym_POUND] = ACTIONS(6249), + [anon_sym_DASH] = ACTIONS(6247), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6844), - [anon_sym_STAR] = ACTIONS(6840), - [anon_sym_AT] = ACTIONS(6840), - [anon_sym_QMARK] = ACTIONS(6840), - [anon_sym_0] = ACTIONS(6846), - [anon_sym__] = ACTIONS(6846), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6251), + [anon_sym_STAR] = ACTIONS(6247), + [anon_sym_AT] = ACTIONS(6247), + [anon_sym_QMARK] = ACTIONS(6247), + [anon_sym_0] = ACTIONS(6253), + [anon_sym__] = ACTIONS(6253), }, - [2835] = { - [sym_for_statement] = STATE(2971), - [sym_while_statement] = STATE(2971), - [sym_if_statement] = STATE(2971), - [sym_case_statement] = STATE(2971), - [sym_function_definition] = STATE(2971), - [sym_subshell] = STATE(2971), - [sym_pipeline] = STATE(2971), - [sym_list] = STATE(2971), - [sym_negated_command] = STATE(2971), - [sym_test_command] = STATE(2971), - [sym_declaration_command] = STATE(2971), - [sym_unset_command] = STATE(2971), - [sym_command] = STATE(2971), + [2603] = { + [sym_for_statement] = STATE(2687), + [sym_while_statement] = STATE(2687), + [sym_if_statement] = STATE(2687), + [sym_case_statement] = STATE(2687), + [sym_function_definition] = STATE(2687), + [sym_subshell] = STATE(2687), + [sym_pipeline] = STATE(2687), + [sym_list] = STATE(2687), + [sym_negated_command] = STATE(2687), + [sym_test_command] = STATE(2687), + [sym_declaration_command] = STATE(2687), + [sym_unset_command] = STATE(2687), + [sym_command] = STATE(2687), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2972), + [sym_variable_assignment] = STATE(2688), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -74559,22 +65978,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(301), }, - [2836] = { - [sym_for_statement] = STATE(2973), - [sym_while_statement] = STATE(2973), - [sym_if_statement] = STATE(2973), - [sym_case_statement] = STATE(2973), - [sym_function_definition] = STATE(2973), - [sym_subshell] = STATE(2973), - [sym_pipeline] = STATE(2973), - [sym_list] = STATE(2973), - [sym_negated_command] = STATE(2973), - [sym_test_command] = STATE(2973), - [sym_declaration_command] = STATE(2973), - [sym_unset_command] = STATE(2973), - [sym_command] = STATE(2973), + [2604] = { + [sym_for_statement] = STATE(2689), + [sym_while_statement] = STATE(2689), + [sym_if_statement] = STATE(2689), + [sym_case_statement] = STATE(2689), + [sym_function_definition] = STATE(2689), + [sym_subshell] = STATE(2689), + [sym_pipeline] = STATE(2689), + [sym_list] = STATE(2689), + [sym_negated_command] = STATE(2689), + [sym_test_command] = STATE(2689), + [sym_declaration_command] = STATE(2689), + [sym_unset_command] = STATE(2689), + [sym_command] = STATE(2689), [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(2974), + [sym_variable_assignment] = STATE(2690), [sym_subscript] = STATE(183), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -74622,22 +66041,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(323), }, - [2837] = { - [sym_for_statement] = STATE(2975), - [sym_while_statement] = STATE(2975), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym_function_definition] = STATE(2975), - [sym_subshell] = STATE(2975), - [sym_pipeline] = STATE(2975), - [sym_list] = STATE(2975), - [sym_negated_command] = STATE(2975), - [sym_test_command] = STATE(2975), - [sym_declaration_command] = STATE(2975), - [sym_unset_command] = STATE(2975), - [sym_command] = STATE(2975), + [2605] = { + [sym_for_statement] = STATE(2691), + [sym_while_statement] = STATE(2691), + [sym_if_statement] = STATE(2691), + [sym_case_statement] = STATE(2691), + [sym_function_definition] = STATE(2691), + [sym_subshell] = STATE(2691), + [sym_pipeline] = STATE(2691), + [sym_list] = STATE(2691), + [sym_negated_command] = STATE(2691), + [sym_test_command] = STATE(2691), + [sym_declaration_command] = STATE(2691), + [sym_unset_command] = STATE(2691), + [sym_command] = STATE(2691), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2976), + [sym_variable_assignment] = STATE(2692), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -74685,30 +66104,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(301), }, - [2838] = { - [sym_concatenation] = STATE(1581), - [sym_string] = STATE(2978), - [sym_simple_expansion] = STATE(2978), - [sym_string_expansion] = STATE(2978), - [sym_expansion] = STATE(2978), - [sym_command_substitution] = STATE(2978), - [sym_process_substitution] = STATE(2978), - [sym__special_characters] = ACTIONS(6848), - [anon_sym_DQUOTE] = ACTIONS(2500), - [anon_sym_DOLLAR] = ACTIONS(2502), - [sym_raw_string] = ACTIONS(6850), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2506), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2508), - [anon_sym_BQUOTE] = ACTIONS(2510), - [anon_sym_LT_LPAREN] = ACTIONS(2512), - [anon_sym_GT_LPAREN] = ACTIONS(2512), + [2606] = { + [sym_concatenation] = STATE(1531), + [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), + [sym__special_characters] = ACTIONS(6255), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_DOLLAR] = ACTIONS(2460), + [sym_raw_string] = ACTIONS(6257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2466), + [anon_sym_BQUOTE] = ACTIONS(2468), + [anon_sym_LT_LPAREN] = ACTIONS(2470), + [anon_sym_GT_LPAREN] = ACTIONS(2470), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6850), + [sym_word] = ACTIONS(6257), }, - [2839] = { - [aux_sym_concatenation_repeat1] = STATE(2979), + [2607] = { + [aux_sym_concatenation_repeat1] = STATE(2695), [sym_file_descriptor] = ACTIONS(661), - [sym__concat] = ACTIONS(3687), + [sym__concat] = ACTIONS(3599), [anon_sym_esac] = ACTIONS(665), [anon_sym_PIPE] = ACTIONS(665), [anon_sym_SEMI_SEMI] = ACTIONS(665), @@ -74730,10 +66149,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(661), [anon_sym_AMP] = ACTIONS(665), }, - [2840] = { - [aux_sym_concatenation_repeat1] = STATE(2979), + [2608] = { + [aux_sym_concatenation_repeat1] = STATE(2695), [sym_file_descriptor] = ACTIONS(677), - [sym__concat] = ACTIONS(3687), + [sym__concat] = ACTIONS(3599), [anon_sym_esac] = ACTIONS(679), [anon_sym_PIPE] = ACTIONS(679), [anon_sym_SEMI_SEMI] = ACTIONS(679), @@ -74755,117 +66174,117 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(677), [anon_sym_AMP] = ACTIONS(679), }, - [2841] = { - [aux_sym_concatenation_repeat1] = STATE(2979), - [sym_file_descriptor] = ACTIONS(2070), - [sym__concat] = ACTIONS(3687), - [anon_sym_esac] = ACTIONS(2072), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_SEMI_SEMI] = ACTIONS(2072), - [anon_sym_PIPE_AMP] = ACTIONS(2072), - [anon_sym_AMP_AMP] = ACTIONS(2072), - [anon_sym_PIPE_PIPE] = ACTIONS(2072), - [anon_sym_LT] = ACTIONS(2072), - [anon_sym_GT] = ACTIONS(2072), - [anon_sym_GT_GT] = ACTIONS(2072), - [anon_sym_AMP_GT] = ACTIONS(2072), - [anon_sym_AMP_GT_GT] = ACTIONS(2072), - [anon_sym_LT_AMP] = ACTIONS(2072), - [anon_sym_GT_AMP] = ACTIONS(2072), - [anon_sym_LT_LT] = ACTIONS(2072), - [anon_sym_LT_LT_DASH] = ACTIONS(2072), - [anon_sym_LT_LT_LT] = ACTIONS(2072), + [2609] = { + [aux_sym_concatenation_repeat1] = STATE(2695), + [sym_file_descriptor] = ACTIONS(2058), + [sym__concat] = ACTIONS(3599), + [anon_sym_esac] = ACTIONS(2060), + [anon_sym_PIPE] = ACTIONS(2060), + [anon_sym_SEMI_SEMI] = ACTIONS(2060), + [anon_sym_PIPE_AMP] = ACTIONS(2060), + [anon_sym_AMP_AMP] = ACTIONS(2060), + [anon_sym_PIPE_PIPE] = ACTIONS(2060), + [anon_sym_LT] = ACTIONS(2060), + [anon_sym_GT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2060), + [anon_sym_AMP_GT] = ACTIONS(2060), + [anon_sym_AMP_GT_GT] = ACTIONS(2060), + [anon_sym_LT_AMP] = ACTIONS(2060), + [anon_sym_GT_AMP] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_LT_LT_DASH] = ACTIONS(2060), + [anon_sym_LT_LT_LT] = ACTIONS(2060), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_LF] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2060), + }, + [2610] = { + [aux_sym_concatenation_repeat1] = STATE(2695), + [sym_file_descriptor] = ACTIONS(2062), + [sym__concat] = ACTIONS(3599), + [anon_sym_esac] = ACTIONS(2064), + [anon_sym_PIPE] = ACTIONS(2064), + [anon_sym_SEMI_SEMI] = ACTIONS(2064), + [anon_sym_PIPE_AMP] = ACTIONS(2064), + [anon_sym_AMP_AMP] = ACTIONS(2064), + [anon_sym_PIPE_PIPE] = ACTIONS(2064), + [anon_sym_LT] = ACTIONS(2064), + [anon_sym_GT] = ACTIONS(2064), + [anon_sym_GT_GT] = ACTIONS(2064), + [anon_sym_AMP_GT] = ACTIONS(2064), + [anon_sym_AMP_GT_GT] = ACTIONS(2064), + [anon_sym_LT_AMP] = ACTIONS(2064), + [anon_sym_GT_AMP] = ACTIONS(2064), + [anon_sym_LT_LT] = ACTIONS(2064), + [anon_sym_LT_LT_DASH] = ACTIONS(2064), + [anon_sym_LT_LT_LT] = ACTIONS(2064), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2064), + [anon_sym_LF] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2064), + }, + [2611] = { + [sym_file_redirect] = STATE(2611), + [sym_heredoc_redirect] = STATE(2611), + [sym_herestring_redirect] = STATE(2611), + [aux_sym_while_statement_repeat1] = STATE(2611), + [sym_file_descriptor] = ACTIONS(6259), + [anon_sym_esac] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_SEMI_SEMI] = ACTIONS(2075), + [anon_sym_PIPE_AMP] = ACTIONS(2075), + [anon_sym_AMP_AMP] = ACTIONS(2075), + [anon_sym_PIPE_PIPE] = ACTIONS(2075), + [anon_sym_LT] = ACTIONS(6262), + [anon_sym_GT] = ACTIONS(6262), + [anon_sym_GT_GT] = ACTIONS(6262), + [anon_sym_AMP_GT] = ACTIONS(6262), + [anon_sym_AMP_GT_GT] = ACTIONS(6262), + [anon_sym_LT_AMP] = ACTIONS(6262), + [anon_sym_GT_AMP] = ACTIONS(6262), + [anon_sym_LT_LT] = ACTIONS(3627), + [anon_sym_LT_LT_DASH] = ACTIONS(3627), + [anon_sym_LT_LT_LT] = ACTIONS(6265), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2075), [anon_sym_LF] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(2072), + [anon_sym_AMP] = ACTIONS(2075), }, - [2842] = { - [aux_sym_concatenation_repeat1] = STATE(2979), - [sym_file_descriptor] = ACTIONS(2074), - [sym__concat] = ACTIONS(3687), - [anon_sym_esac] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_SEMI_SEMI] = ACTIONS(2076), - [anon_sym_PIPE_AMP] = ACTIONS(2076), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_GT_GT] = ACTIONS(2076), - [anon_sym_AMP_GT] = ACTIONS(2076), - [anon_sym_AMP_GT_GT] = ACTIONS(2076), - [anon_sym_LT_AMP] = ACTIONS(2076), - [anon_sym_GT_AMP] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(2076), - [anon_sym_LT_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT_LT] = ACTIONS(2076), + [2612] = { + [sym_variable_name] = ACTIONS(2127), + [anon_sym_esac] = ACTIONS(2129), + [anon_sym_PIPE] = ACTIONS(2129), + [anon_sym_SEMI_SEMI] = ACTIONS(2129), + [anon_sym_PIPE_AMP] = ACTIONS(2129), + [anon_sym_AMP_AMP] = ACTIONS(2129), + [anon_sym_PIPE_PIPE] = ACTIONS(2129), + [sym__special_characters] = ACTIONS(2129), + [anon_sym_DQUOTE] = ACTIONS(2129), + [anon_sym_DOLLAR] = ACTIONS(2129), + [sym_raw_string] = ACTIONS(2129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2129), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2129), + [anon_sym_BQUOTE] = ACTIONS(2129), + [anon_sym_LT_LPAREN] = ACTIONS(2129), + [anon_sym_GT_LPAREN] = ACTIONS(2129), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2076), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2129), + [sym_word] = ACTIONS(2129), + [anon_sym_SEMI] = ACTIONS(2129), + [anon_sym_LF] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2129), }, - [2843] = { - [sym_file_redirect] = STATE(2843), - [sym_heredoc_redirect] = STATE(2843), - [sym_herestring_redirect] = STATE(2843), - [aux_sym_while_statement_repeat1] = STATE(2843), - [sym_file_descriptor] = ACTIONS(6852), - [anon_sym_esac] = ACTIONS(2087), - [anon_sym_PIPE] = ACTIONS(2087), - [anon_sym_SEMI_SEMI] = ACTIONS(2087), - [anon_sym_PIPE_AMP] = ACTIONS(2087), - [anon_sym_AMP_AMP] = ACTIONS(2087), - [anon_sym_PIPE_PIPE] = ACTIONS(2087), - [anon_sym_LT] = ACTIONS(6855), - [anon_sym_GT] = ACTIONS(6855), - [anon_sym_GT_GT] = ACTIONS(6855), - [anon_sym_AMP_GT] = ACTIONS(6855), - [anon_sym_AMP_GT_GT] = ACTIONS(6855), - [anon_sym_LT_AMP] = ACTIONS(6855), - [anon_sym_GT_AMP] = ACTIONS(6855), - [anon_sym_LT_LT] = ACTIONS(3715), - [anon_sym_LT_LT_DASH] = ACTIONS(3715), - [anon_sym_LT_LT_LT] = ACTIONS(6858), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym_LF] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2087), - }, - [2844] = { - [sym_variable_name] = ACTIONS(2139), - [anon_sym_esac] = ACTIONS(2141), - [anon_sym_PIPE] = ACTIONS(2141), - [anon_sym_SEMI_SEMI] = ACTIONS(2141), - [anon_sym_PIPE_AMP] = ACTIONS(2141), - [anon_sym_AMP_AMP] = ACTIONS(2141), - [anon_sym_PIPE_PIPE] = ACTIONS(2141), - [sym__special_characters] = ACTIONS(2141), - [anon_sym_DQUOTE] = ACTIONS(2141), - [anon_sym_DOLLAR] = ACTIONS(2141), - [sym_raw_string] = ACTIONS(2141), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2141), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2141), - [anon_sym_BQUOTE] = ACTIONS(2141), - [anon_sym_LT_LPAREN] = ACTIONS(2141), - [anon_sym_GT_LPAREN] = ACTIONS(2141), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2141), - [sym_word] = ACTIONS(2141), - [anon_sym_SEMI] = ACTIONS(2141), - [anon_sym_LF] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2141), - }, - [2845] = { - [sym_concatenation] = STATE(1019), + [2613] = { + [sym_concatenation] = STATE(1009), [sym_string] = STATE(563), [sym_simple_expansion] = STATE(563), [sym_string_expansion] = STATE(563), [sym_expansion] = STATE(563), [sym_command_substitution] = STATE(563), [sym_process_substitution] = STATE(563), - [aux_sym_for_statement_repeat1] = STATE(1019), - [anon_sym_RPAREN] = ACTIONS(6861), + [aux_sym_for_statement_repeat1] = STATE(1009), + [anon_sym_RPAREN] = ACTIONS(6268), [sym__special_characters] = ACTIONS(1113), [anon_sym_DQUOTE] = ACTIONS(1115), [anon_sym_DOLLAR] = ACTIONS(1117), @@ -74878,69 +66297,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(1119), }, - [2846] = { - [sym__concat] = ACTIONS(2752), - [sym_variable_name] = ACTIONS(2752), - [anon_sym_esac] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_SEMI_SEMI] = ACTIONS(2754), - [anon_sym_PIPE_AMP] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [sym__special_characters] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2754), - [anon_sym_DOLLAR] = ACTIONS(2754), - [sym_raw_string] = ACTIONS(2754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2754), - [anon_sym_BQUOTE] = ACTIONS(2754), - [anon_sym_LT_LPAREN] = ACTIONS(2754), - [anon_sym_GT_LPAREN] = ACTIONS(2754), + [2614] = { + [sym__concat] = ACTIONS(2710), + [sym_variable_name] = ACTIONS(2710), + [anon_sym_esac] = ACTIONS(2712), + [anon_sym_PIPE] = ACTIONS(2712), + [anon_sym_SEMI_SEMI] = ACTIONS(2712), + [anon_sym_PIPE_AMP] = ACTIONS(2712), + [anon_sym_AMP_AMP] = ACTIONS(2712), + [anon_sym_PIPE_PIPE] = ACTIONS(2712), + [sym__special_characters] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [anon_sym_DOLLAR] = ACTIONS(2712), + [sym_raw_string] = ACTIONS(2712), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2712), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2712), + [anon_sym_BQUOTE] = ACTIONS(2712), + [anon_sym_LT_LPAREN] = ACTIONS(2712), + [anon_sym_GT_LPAREN] = ACTIONS(2712), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2754), - [sym_word] = ACTIONS(2754), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_LF] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2754), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2712), + [sym_word] = ACTIONS(2712), + [anon_sym_SEMI] = ACTIONS(2712), + [anon_sym_LF] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2712), }, - [2847] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(6863), + [2615] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(6270), [sym_comment] = ACTIONS(53), }, - [2848] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(6865), + [2616] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(6272), [sym_comment] = ACTIONS(53), }, - [2849] = { - [anon_sym_RBRACE] = ACTIONS(6865), + [2617] = { + [anon_sym_RBRACE] = ACTIONS(6272), [sym_comment] = ACTIONS(53), }, - [2850] = { - [sym_concatenation] = STATE(2984), + [2618] = { + [sym_concatenation] = STATE(2700), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2984), - [anon_sym_RBRACE] = ACTIONS(6867), - [anon_sym_EQ] = ACTIONS(6869), + [aux_sym_expansion_repeat1] = STATE(2700), + [anon_sym_RBRACE] = ACTIONS(6274), + [anon_sym_EQ] = ACTIONS(6276), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6871), + [anon_sym_POUND] = ACTIONS(6278), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6869), - [anon_sym_COLON_QMARK] = ACTIONS(6869), - [anon_sym_COLON_DASH] = ACTIONS(6869), - [anon_sym_PERCENT] = ACTIONS(6869), - [anon_sym_DASH] = ACTIONS(6869), + [anon_sym_COLON] = ACTIONS(6276), + [anon_sym_COLON_QMARK] = ACTIONS(6276), + [anon_sym_COLON_DASH] = ACTIONS(6276), + [anon_sym_PERCENT] = ACTIONS(6276), + [anon_sym_DASH] = ACTIONS(6276), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -74948,103 +66367,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2851] = { - [sym__concat] = ACTIONS(2830), - [sym_variable_name] = ACTIONS(2830), - [anon_sym_esac] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_SEMI_SEMI] = ACTIONS(2832), - [anon_sym_PIPE_AMP] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_PIPE_PIPE] = ACTIONS(2832), - [sym__special_characters] = ACTIONS(2832), - [anon_sym_DQUOTE] = ACTIONS(2832), - [anon_sym_DOLLAR] = ACTIONS(2832), - [sym_raw_string] = ACTIONS(2832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2832), - [anon_sym_BQUOTE] = ACTIONS(2832), - [anon_sym_LT_LPAREN] = ACTIONS(2832), - [anon_sym_GT_LPAREN] = ACTIONS(2832), + [2619] = { + [sym__concat] = ACTIONS(2788), + [sym_variable_name] = ACTIONS(2788), + [anon_sym_esac] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_SEMI_SEMI] = ACTIONS(2790), + [anon_sym_PIPE_AMP] = ACTIONS(2790), + [anon_sym_AMP_AMP] = ACTIONS(2790), + [anon_sym_PIPE_PIPE] = ACTIONS(2790), + [sym__special_characters] = ACTIONS(2790), + [anon_sym_DQUOTE] = ACTIONS(2790), + [anon_sym_DOLLAR] = ACTIONS(2790), + [sym_raw_string] = ACTIONS(2790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2790), + [anon_sym_BQUOTE] = ACTIONS(2790), + [anon_sym_LT_LPAREN] = ACTIONS(2790), + [anon_sym_GT_LPAREN] = ACTIONS(2790), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2832), - [sym_word] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_LF] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2832), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2790), + [sym_word] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_LF] = ACTIONS(2788), + [anon_sym_AMP] = ACTIONS(2790), }, - [2852] = { - [sym_concatenation] = STATE(2987), - [sym_string] = STATE(2986), - [sym_simple_expansion] = STATE(2986), - [sym_string_expansion] = STATE(2986), - [sym_expansion] = STATE(2986), - [sym_command_substitution] = STATE(2986), - [sym_process_substitution] = STATE(2986), - [anon_sym_RBRACE] = ACTIONS(6865), - [sym__special_characters] = ACTIONS(6873), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(6875), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), + [2620] = { + [sym_concatenation] = STATE(2703), + [sym_string] = STATE(2702), + [sym_simple_expansion] = STATE(2702), + [sym_string_expansion] = STATE(2702), + [sym_expansion] = STATE(2702), + [sym_command_substitution] = STATE(2702), + [sym_process_substitution] = STATE(2702), + [anon_sym_RBRACE] = ACTIONS(6272), + [sym__special_characters] = ACTIONS(6280), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(6282), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6875), + [sym_word] = ACTIONS(6282), }, - [2853] = { - [sym__concat] = ACTIONS(2873), - [sym_variable_name] = ACTIONS(2873), - [anon_sym_esac] = ACTIONS(2875), - [anon_sym_PIPE] = ACTIONS(2875), - [anon_sym_SEMI_SEMI] = ACTIONS(2875), - [anon_sym_PIPE_AMP] = ACTIONS(2875), - [anon_sym_AMP_AMP] = ACTIONS(2875), - [anon_sym_PIPE_PIPE] = ACTIONS(2875), - [sym__special_characters] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2875), - [anon_sym_DOLLAR] = ACTIONS(2875), - [sym_raw_string] = ACTIONS(2875), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2875), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2875), - [anon_sym_BQUOTE] = ACTIONS(2875), - [anon_sym_LT_LPAREN] = ACTIONS(2875), - [anon_sym_GT_LPAREN] = ACTIONS(2875), + [2621] = { + [sym__concat] = ACTIONS(2831), + [sym_variable_name] = ACTIONS(2831), + [anon_sym_esac] = ACTIONS(2833), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_SEMI_SEMI] = ACTIONS(2833), + [anon_sym_PIPE_AMP] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [sym__special_characters] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_DOLLAR] = ACTIONS(2833), + [sym_raw_string] = ACTIONS(2833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2833), + [anon_sym_BQUOTE] = ACTIONS(2833), + [anon_sym_LT_LPAREN] = ACTIONS(2833), + [anon_sym_GT_LPAREN] = ACTIONS(2833), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2875), - [sym_word] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym_LF] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2875), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2833), + [sym_word] = ACTIONS(2833), + [anon_sym_SEMI] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(2833), }, - [2854] = { + [2622] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6877), + [sym_regex_without_right_brace] = ACTIONS(6284), }, - [2855] = { - [sym_concatenation] = STATE(839), + [2623] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6879), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6286), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -75052,57 +66471,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2856] = { - [sym__concat] = ACTIONS(2881), - [sym_variable_name] = ACTIONS(2881), - [anon_sym_esac] = ACTIONS(2883), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_SEMI_SEMI] = ACTIONS(2883), - [anon_sym_PIPE_AMP] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_PIPE_PIPE] = ACTIONS(2883), - [sym__special_characters] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2883), - [sym_raw_string] = ACTIONS(2883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2883), - [anon_sym_BQUOTE] = ACTIONS(2883), - [anon_sym_LT_LPAREN] = ACTIONS(2883), - [anon_sym_GT_LPAREN] = ACTIONS(2883), + [2624] = { + [sym__concat] = ACTIONS(2839), + [sym_variable_name] = ACTIONS(2839), + [anon_sym_esac] = ACTIONS(2841), + [anon_sym_PIPE] = ACTIONS(2841), + [anon_sym_SEMI_SEMI] = ACTIONS(2841), + [anon_sym_PIPE_AMP] = ACTIONS(2841), + [anon_sym_AMP_AMP] = ACTIONS(2841), + [anon_sym_PIPE_PIPE] = ACTIONS(2841), + [sym__special_characters] = ACTIONS(2841), + [anon_sym_DQUOTE] = ACTIONS(2841), + [anon_sym_DOLLAR] = ACTIONS(2841), + [sym_raw_string] = ACTIONS(2841), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2841), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2841), + [anon_sym_BQUOTE] = ACTIONS(2841), + [anon_sym_LT_LPAREN] = ACTIONS(2841), + [anon_sym_GT_LPAREN] = ACTIONS(2841), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2883), - [sym_word] = ACTIONS(2883), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym_LF] = ACTIONS(2881), - [anon_sym_AMP] = ACTIONS(2883), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2841), + [sym_word] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym_LF] = ACTIONS(2839), + [anon_sym_AMP] = ACTIONS(2841), }, - [2857] = { + [2625] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6881), + [sym_regex_without_right_brace] = ACTIONS(6288), }, - [2858] = { - [sym_concatenation] = STATE(839), + [2626] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6883), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6290), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -75110,32 +66529,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2859] = { + [2627] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6885), + [sym_regex_without_right_brace] = ACTIONS(6292), }, - [2860] = { - [sym_concatenation] = STATE(839), + [2628] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6865), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6272), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -75143,28 +66562,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2861] = { - [sym_concatenation] = STATE(2994), + [2629] = { + [sym_concatenation] = STATE(2710), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2994), - [anon_sym_RBRACE] = ACTIONS(6887), - [anon_sym_EQ] = ACTIONS(6889), + [aux_sym_expansion_repeat1] = STATE(2710), + [anon_sym_RBRACE] = ACTIONS(6294), + [anon_sym_EQ] = ACTIONS(6296), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6891), + [anon_sym_POUND] = ACTIONS(6298), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6889), - [anon_sym_COLON_QMARK] = ACTIONS(6889), - [anon_sym_COLON_DASH] = ACTIONS(6889), - [anon_sym_PERCENT] = ACTIONS(6889), - [anon_sym_DASH] = ACTIONS(6889), + [anon_sym_COLON] = ACTIONS(6296), + [anon_sym_COLON_QMARK] = ACTIONS(6296), + [anon_sym_COLON_DASH] = ACTIONS(6296), + [anon_sym_PERCENT] = ACTIONS(6296), + [anon_sym_DASH] = ACTIONS(6296), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -75172,53 +66591,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2862] = { - [sym__concat] = ACTIONS(2897), - [sym_variable_name] = ACTIONS(2897), - [anon_sym_esac] = ACTIONS(2899), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_SEMI_SEMI] = ACTIONS(2899), - [anon_sym_PIPE_AMP] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_PIPE_PIPE] = ACTIONS(2899), - [sym__special_characters] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2899), - [anon_sym_DOLLAR] = ACTIONS(2899), - [sym_raw_string] = ACTIONS(2899), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2899), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2899), - [anon_sym_BQUOTE] = ACTIONS(2899), - [anon_sym_LT_LPAREN] = ACTIONS(2899), - [anon_sym_GT_LPAREN] = ACTIONS(2899), + [2630] = { + [sym__concat] = ACTIONS(2855), + [sym_variable_name] = ACTIONS(2855), + [anon_sym_esac] = ACTIONS(2857), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_SEMI_SEMI] = ACTIONS(2857), + [anon_sym_PIPE_AMP] = ACTIONS(2857), + [anon_sym_AMP_AMP] = ACTIONS(2857), + [anon_sym_PIPE_PIPE] = ACTIONS(2857), + [sym__special_characters] = ACTIONS(2857), + [anon_sym_DQUOTE] = ACTIONS(2857), + [anon_sym_DOLLAR] = ACTIONS(2857), + [sym_raw_string] = ACTIONS(2857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2857), + [anon_sym_BQUOTE] = ACTIONS(2857), + [anon_sym_LT_LPAREN] = ACTIONS(2857), + [anon_sym_GT_LPAREN] = ACTIONS(2857), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2899), - [sym_word] = ACTIONS(2899), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym_LF] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2899), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2857), + [sym_word] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_LF] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2857), }, - [2863] = { - [sym_concatenation] = STATE(2996), + [2631] = { + [sym_concatenation] = STATE(2712), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(2996), - [anon_sym_RBRACE] = ACTIONS(6893), - [anon_sym_EQ] = ACTIONS(6895), + [aux_sym_expansion_repeat1] = STATE(2712), + [anon_sym_RBRACE] = ACTIONS(6300), + [anon_sym_EQ] = ACTIONS(6302), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6897), + [anon_sym_POUND] = ACTIONS(6304), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6895), - [anon_sym_COLON_QMARK] = ACTIONS(6895), - [anon_sym_COLON_DASH] = ACTIONS(6895), - [anon_sym_PERCENT] = ACTIONS(6895), - [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_COLON] = ACTIONS(6302), + [anon_sym_COLON_QMARK] = ACTIONS(6302), + [anon_sym_COLON_DASH] = ACTIONS(6302), + [anon_sym_PERCENT] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -75226,68 +66645,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2864] = { - [sym__concat] = ACTIONS(2752), - [anon_sym_esac] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_SEMI_SEMI] = ACTIONS(2754), - [anon_sym_PIPE_AMP] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [sym__special_characters] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2754), - [anon_sym_DOLLAR] = ACTIONS(2754), - [sym_raw_string] = ACTIONS(2754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2754), - [anon_sym_BQUOTE] = ACTIONS(2754), - [anon_sym_LT_LPAREN] = ACTIONS(2754), - [anon_sym_GT_LPAREN] = ACTIONS(2754), + [2632] = { + [sym__concat] = ACTIONS(2710), + [anon_sym_esac] = ACTIONS(2712), + [anon_sym_PIPE] = ACTIONS(2712), + [anon_sym_SEMI_SEMI] = ACTIONS(2712), + [anon_sym_PIPE_AMP] = ACTIONS(2712), + [anon_sym_AMP_AMP] = ACTIONS(2712), + [anon_sym_PIPE_PIPE] = ACTIONS(2712), + [sym__special_characters] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [anon_sym_DOLLAR] = ACTIONS(2712), + [sym_raw_string] = ACTIONS(2712), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2712), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2712), + [anon_sym_BQUOTE] = ACTIONS(2712), + [anon_sym_LT_LPAREN] = ACTIONS(2712), + [anon_sym_GT_LPAREN] = ACTIONS(2712), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2754), - [sym_word] = ACTIONS(2754), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_LF] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2754), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2712), + [sym_word] = ACTIONS(2712), + [anon_sym_SEMI] = ACTIONS(2712), + [anon_sym_LF] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2712), }, - [2865] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(6899), + [2633] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(6306), [sym_comment] = ACTIONS(53), }, - [2866] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(6901), + [2634] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(6308), [sym_comment] = ACTIONS(53), }, - [2867] = { - [anon_sym_RBRACE] = ACTIONS(6901), + [2635] = { + [anon_sym_RBRACE] = ACTIONS(6308), [sym_comment] = ACTIONS(53), }, - [2868] = { - [sym_concatenation] = STATE(3000), + [2636] = { + [sym_concatenation] = STATE(2716), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3000), - [anon_sym_RBRACE] = ACTIONS(6903), - [anon_sym_EQ] = ACTIONS(6905), + [aux_sym_expansion_repeat1] = STATE(2716), + [anon_sym_RBRACE] = ACTIONS(6310), + [anon_sym_EQ] = ACTIONS(6312), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6907), + [anon_sym_POUND] = ACTIONS(6314), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6905), - [anon_sym_COLON_QMARK] = ACTIONS(6905), - [anon_sym_COLON_DASH] = ACTIONS(6905), - [anon_sym_PERCENT] = ACTIONS(6905), - [anon_sym_DASH] = ACTIONS(6905), + [anon_sym_COLON] = ACTIONS(6312), + [anon_sym_COLON_QMARK] = ACTIONS(6312), + [anon_sym_COLON_DASH] = ACTIONS(6312), + [anon_sym_PERCENT] = ACTIONS(6312), + [anon_sym_DASH] = ACTIONS(6312), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -75295,101 +66714,101 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2869] = { - [sym__concat] = ACTIONS(2830), - [anon_sym_esac] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_SEMI_SEMI] = ACTIONS(2832), - [anon_sym_PIPE_AMP] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_PIPE_PIPE] = ACTIONS(2832), - [sym__special_characters] = ACTIONS(2832), - [anon_sym_DQUOTE] = ACTIONS(2832), - [anon_sym_DOLLAR] = ACTIONS(2832), - [sym_raw_string] = ACTIONS(2832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2832), - [anon_sym_BQUOTE] = ACTIONS(2832), - [anon_sym_LT_LPAREN] = ACTIONS(2832), - [anon_sym_GT_LPAREN] = ACTIONS(2832), + [2637] = { + [sym__concat] = ACTIONS(2788), + [anon_sym_esac] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_SEMI_SEMI] = ACTIONS(2790), + [anon_sym_PIPE_AMP] = ACTIONS(2790), + [anon_sym_AMP_AMP] = ACTIONS(2790), + [anon_sym_PIPE_PIPE] = ACTIONS(2790), + [sym__special_characters] = ACTIONS(2790), + [anon_sym_DQUOTE] = ACTIONS(2790), + [anon_sym_DOLLAR] = ACTIONS(2790), + [sym_raw_string] = ACTIONS(2790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2790), + [anon_sym_BQUOTE] = ACTIONS(2790), + [anon_sym_LT_LPAREN] = ACTIONS(2790), + [anon_sym_GT_LPAREN] = ACTIONS(2790), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2832), - [sym_word] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_LF] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2832), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2790), + [sym_word] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_LF] = ACTIONS(2788), + [anon_sym_AMP] = ACTIONS(2790), }, - [2870] = { - [sym_concatenation] = STATE(3003), - [sym_string] = STATE(3002), - [sym_simple_expansion] = STATE(3002), - [sym_string_expansion] = STATE(3002), - [sym_expansion] = STATE(3002), - [sym_command_substitution] = STATE(3002), - [sym_process_substitution] = STATE(3002), - [anon_sym_RBRACE] = ACTIONS(6901), - [sym__special_characters] = ACTIONS(6909), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(6911), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), + [2638] = { + [sym_concatenation] = STATE(2719), + [sym_string] = STATE(2718), + [sym_simple_expansion] = STATE(2718), + [sym_string_expansion] = STATE(2718), + [sym_expansion] = STATE(2718), + [sym_command_substitution] = STATE(2718), + [sym_process_substitution] = STATE(2718), + [anon_sym_RBRACE] = ACTIONS(6308), + [sym__special_characters] = ACTIONS(6316), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(6318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6911), + [sym_word] = ACTIONS(6318), }, - [2871] = { - [sym__concat] = ACTIONS(2873), - [anon_sym_esac] = ACTIONS(2875), - [anon_sym_PIPE] = ACTIONS(2875), - [anon_sym_SEMI_SEMI] = ACTIONS(2875), - [anon_sym_PIPE_AMP] = ACTIONS(2875), - [anon_sym_AMP_AMP] = ACTIONS(2875), - [anon_sym_PIPE_PIPE] = ACTIONS(2875), - [sym__special_characters] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2875), - [anon_sym_DOLLAR] = ACTIONS(2875), - [sym_raw_string] = ACTIONS(2875), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2875), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2875), - [anon_sym_BQUOTE] = ACTIONS(2875), - [anon_sym_LT_LPAREN] = ACTIONS(2875), - [anon_sym_GT_LPAREN] = ACTIONS(2875), + [2639] = { + [sym__concat] = ACTIONS(2831), + [anon_sym_esac] = ACTIONS(2833), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_SEMI_SEMI] = ACTIONS(2833), + [anon_sym_PIPE_AMP] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [sym__special_characters] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_DOLLAR] = ACTIONS(2833), + [sym_raw_string] = ACTIONS(2833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2833), + [anon_sym_BQUOTE] = ACTIONS(2833), + [anon_sym_LT_LPAREN] = ACTIONS(2833), + [anon_sym_GT_LPAREN] = ACTIONS(2833), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2875), - [sym_word] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym_LF] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2875), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2833), + [sym_word] = ACTIONS(2833), + [anon_sym_SEMI] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(2833), }, - [2872] = { + [2640] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6913), + [sym_regex_without_right_brace] = ACTIONS(6320), }, - [2873] = { - [sym_concatenation] = STATE(839), + [2641] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6915), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6322), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -75397,56 +66816,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2874] = { - [sym__concat] = ACTIONS(2881), - [anon_sym_esac] = ACTIONS(2883), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_SEMI_SEMI] = ACTIONS(2883), - [anon_sym_PIPE_AMP] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_PIPE_PIPE] = ACTIONS(2883), - [sym__special_characters] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2883), - [sym_raw_string] = ACTIONS(2883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2883), - [anon_sym_BQUOTE] = ACTIONS(2883), - [anon_sym_LT_LPAREN] = ACTIONS(2883), - [anon_sym_GT_LPAREN] = ACTIONS(2883), + [2642] = { + [sym__concat] = ACTIONS(2839), + [anon_sym_esac] = ACTIONS(2841), + [anon_sym_PIPE] = ACTIONS(2841), + [anon_sym_SEMI_SEMI] = ACTIONS(2841), + [anon_sym_PIPE_AMP] = ACTIONS(2841), + [anon_sym_AMP_AMP] = ACTIONS(2841), + [anon_sym_PIPE_PIPE] = ACTIONS(2841), + [sym__special_characters] = ACTIONS(2841), + [anon_sym_DQUOTE] = ACTIONS(2841), + [anon_sym_DOLLAR] = ACTIONS(2841), + [sym_raw_string] = ACTIONS(2841), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2841), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2841), + [anon_sym_BQUOTE] = ACTIONS(2841), + [anon_sym_LT_LPAREN] = ACTIONS(2841), + [anon_sym_GT_LPAREN] = ACTIONS(2841), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2883), - [sym_word] = ACTIONS(2883), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym_LF] = ACTIONS(2881), - [anon_sym_AMP] = ACTIONS(2883), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2841), + [sym_word] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym_LF] = ACTIONS(2839), + [anon_sym_AMP] = ACTIONS(2841), }, - [2875] = { + [2643] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6917), + [sym_regex_without_right_brace] = ACTIONS(6324), }, - [2876] = { - [sym_concatenation] = STATE(839), + [2644] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6919), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6326), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -75454,32 +66873,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2877] = { + [2645] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6921), + [sym_regex_without_right_brace] = ACTIONS(6328), }, - [2878] = { - [sym_concatenation] = STATE(839), + [2646] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6901), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6308), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -75487,28 +66906,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2879] = { - [sym_concatenation] = STATE(3010), + [2647] = { + [sym_concatenation] = STATE(2726), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3010), - [anon_sym_RBRACE] = ACTIONS(6923), - [anon_sym_EQ] = ACTIONS(6925), + [aux_sym_expansion_repeat1] = STATE(2726), + [anon_sym_RBRACE] = ACTIONS(6330), + [anon_sym_EQ] = ACTIONS(6332), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6927), + [anon_sym_POUND] = ACTIONS(6334), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6925), - [anon_sym_COLON_QMARK] = ACTIONS(6925), - [anon_sym_COLON_DASH] = ACTIONS(6925), - [anon_sym_PERCENT] = ACTIONS(6925), - [anon_sym_DASH] = ACTIONS(6925), + [anon_sym_COLON] = ACTIONS(6332), + [anon_sym_COLON_QMARK] = ACTIONS(6332), + [anon_sym_COLON_DASH] = ACTIONS(6332), + [anon_sym_PERCENT] = ACTIONS(6332), + [anon_sym_DASH] = ACTIONS(6332), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -75516,52 +66935,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2880] = { - [sym__concat] = ACTIONS(2897), - [anon_sym_esac] = ACTIONS(2899), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_SEMI_SEMI] = ACTIONS(2899), - [anon_sym_PIPE_AMP] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_PIPE_PIPE] = ACTIONS(2899), - [sym__special_characters] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2899), - [anon_sym_DOLLAR] = ACTIONS(2899), - [sym_raw_string] = ACTIONS(2899), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2899), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2899), - [anon_sym_BQUOTE] = ACTIONS(2899), - [anon_sym_LT_LPAREN] = ACTIONS(2899), - [anon_sym_GT_LPAREN] = ACTIONS(2899), + [2648] = { + [sym__concat] = ACTIONS(2855), + [anon_sym_esac] = ACTIONS(2857), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_SEMI_SEMI] = ACTIONS(2857), + [anon_sym_PIPE_AMP] = ACTIONS(2857), + [anon_sym_AMP_AMP] = ACTIONS(2857), + [anon_sym_PIPE_PIPE] = ACTIONS(2857), + [sym__special_characters] = ACTIONS(2857), + [anon_sym_DQUOTE] = ACTIONS(2857), + [anon_sym_DOLLAR] = ACTIONS(2857), + [sym_raw_string] = ACTIONS(2857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2857), + [anon_sym_BQUOTE] = ACTIONS(2857), + [anon_sym_LT_LPAREN] = ACTIONS(2857), + [anon_sym_GT_LPAREN] = ACTIONS(2857), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2899), - [sym_word] = ACTIONS(2899), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym_LF] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2899), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2857), + [sym_word] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_LF] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2857), }, - [2881] = { - [sym_concatenation] = STATE(3012), + [2649] = { + [sym_concatenation] = STATE(2728), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3012), - [anon_sym_RBRACE] = ACTIONS(6929), - [anon_sym_EQ] = ACTIONS(6931), + [aux_sym_expansion_repeat1] = STATE(2728), + [anon_sym_RBRACE] = ACTIONS(6336), + [anon_sym_EQ] = ACTIONS(6338), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6933), + [anon_sym_POUND] = ACTIONS(6340), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6931), - [anon_sym_COLON_QMARK] = ACTIONS(6931), - [anon_sym_COLON_DASH] = ACTIONS(6931), - [anon_sym_PERCENT] = ACTIONS(6931), - [anon_sym_DASH] = ACTIONS(6931), + [anon_sym_COLON] = ACTIONS(6338), + [anon_sym_COLON_QMARK] = ACTIONS(6338), + [anon_sym_COLON_DASH] = ACTIONS(6338), + [anon_sym_PERCENT] = ACTIONS(6338), + [anon_sym_DASH] = ACTIONS(6338), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -75569,887 +66988,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2882] = { - [sym__simple_heredoc_body] = ACTIONS(3917), - [sym__heredoc_body_beginning] = ACTIONS(3917), - [sym_file_descriptor] = ACTIONS(3917), - [sym__concat] = ACTIONS(3917), - [anon_sym_esac] = ACTIONS(3919), - [anon_sym_PIPE] = ACTIONS(3919), - [anon_sym_SEMI_SEMI] = ACTIONS(3919), - [anon_sym_PIPE_AMP] = ACTIONS(3919), - [anon_sym_AMP_AMP] = ACTIONS(3919), - [anon_sym_PIPE_PIPE] = ACTIONS(3919), - [anon_sym_EQ_TILDE] = ACTIONS(3919), - [anon_sym_EQ_EQ] = ACTIONS(3919), - [anon_sym_LT] = ACTIONS(3919), - [anon_sym_GT] = ACTIONS(3919), - [anon_sym_GT_GT] = ACTIONS(3919), - [anon_sym_AMP_GT] = ACTIONS(3919), - [anon_sym_AMP_GT_GT] = ACTIONS(3919), - [anon_sym_LT_AMP] = ACTIONS(3919), - [anon_sym_GT_AMP] = ACTIONS(3919), - [anon_sym_LT_LT] = ACTIONS(3919), - [anon_sym_LT_LT_DASH] = ACTIONS(3919), - [anon_sym_LT_LT_LT] = ACTIONS(3919), - [sym__special_characters] = ACTIONS(3919), - [anon_sym_DQUOTE] = ACTIONS(3919), - [anon_sym_DOLLAR] = ACTIONS(3919), - [sym_raw_string] = ACTIONS(3919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3919), - [anon_sym_BQUOTE] = ACTIONS(3919), - [anon_sym_LT_LPAREN] = ACTIONS(3919), - [anon_sym_GT_LPAREN] = ACTIONS(3919), + [2650] = { + [aux_sym_concatenation_repeat1] = STATE(2650), + [sym__simple_heredoc_body] = ACTIONS(1642), + [sym__heredoc_body_beginning] = ACTIONS(1642), + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(1646), + [anon_sym_esac] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1644), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1644), + [anon_sym_LT_AMP] = ACTIONS(1644), + [anon_sym_GT_AMP] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1644), + [anon_sym_LT_LT_DASH] = ACTIONS(1644), + [anon_sym_LT_LT_LT] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3919), - [anon_sym_SEMI] = ACTIONS(3919), - [anon_sym_LF] = ACTIONS(3917), - [anon_sym_AMP] = ACTIONS(3919), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, - [2883] = { - [sym__simple_heredoc_body] = ACTIONS(3923), - [sym__heredoc_body_beginning] = ACTIONS(3923), - [sym_file_descriptor] = ACTIONS(3923), - [sym__concat] = ACTIONS(3923), - [anon_sym_esac] = ACTIONS(3925), - [anon_sym_PIPE] = ACTIONS(3925), - [anon_sym_SEMI_SEMI] = ACTIONS(3925), - [anon_sym_PIPE_AMP] = ACTIONS(3925), - [anon_sym_AMP_AMP] = ACTIONS(3925), - [anon_sym_PIPE_PIPE] = ACTIONS(3925), - [anon_sym_EQ_TILDE] = ACTIONS(3925), - [anon_sym_EQ_EQ] = ACTIONS(3925), - [anon_sym_LT] = ACTIONS(3925), - [anon_sym_GT] = ACTIONS(3925), - [anon_sym_GT_GT] = ACTIONS(3925), - [anon_sym_AMP_GT] = ACTIONS(3925), - [anon_sym_AMP_GT_GT] = ACTIONS(3925), - [anon_sym_LT_AMP] = ACTIONS(3925), - [anon_sym_GT_AMP] = ACTIONS(3925), - [anon_sym_LT_LT] = ACTIONS(3925), - [anon_sym_LT_LT_DASH] = ACTIONS(3925), - [anon_sym_LT_LT_LT] = ACTIONS(3925), - [sym__special_characters] = ACTIONS(3925), - [anon_sym_DQUOTE] = ACTIONS(3925), - [anon_sym_DOLLAR] = ACTIONS(3925), - [sym_raw_string] = ACTIONS(3925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3925), - [anon_sym_BQUOTE] = ACTIONS(3925), - [anon_sym_LT_LPAREN] = ACTIONS(3925), - [anon_sym_GT_LPAREN] = ACTIONS(3925), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3925), - [anon_sym_SEMI] = ACTIONS(3925), - [anon_sym_LF] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3925), - }, - [2884] = { - [sym__simple_heredoc_body] = ACTIONS(4008), - [sym__heredoc_body_beginning] = ACTIONS(4008), - [sym_file_descriptor] = ACTIONS(4008), - [sym__concat] = ACTIONS(4008), - [anon_sym_esac] = ACTIONS(4010), - [anon_sym_PIPE] = ACTIONS(4010), - [anon_sym_SEMI_SEMI] = ACTIONS(4010), - [anon_sym_PIPE_AMP] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [anon_sym_EQ_TILDE] = ACTIONS(4010), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_GT_GT] = ACTIONS(4010), - [anon_sym_AMP_GT] = ACTIONS(4010), - [anon_sym_AMP_GT_GT] = ACTIONS(4010), - [anon_sym_LT_AMP] = ACTIONS(4010), - [anon_sym_GT_AMP] = ACTIONS(4010), - [anon_sym_LT_LT] = ACTIONS(4010), - [anon_sym_LT_LT_DASH] = ACTIONS(4010), - [anon_sym_LT_LT_LT] = ACTIONS(4010), - [sym__special_characters] = ACTIONS(4010), - [anon_sym_DQUOTE] = ACTIONS(4010), - [anon_sym_DOLLAR] = ACTIONS(4010), - [sym_raw_string] = ACTIONS(4010), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4010), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4010), - [anon_sym_BQUOTE] = ACTIONS(4010), - [anon_sym_LT_LPAREN] = ACTIONS(4010), - [anon_sym_GT_LPAREN] = ACTIONS(4010), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4010), - [anon_sym_LF] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4010), - }, - [2885] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6935), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2886] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(6937), - [sym_comment] = ACTIONS(53), - }, - [2887] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(6939), - [sym_comment] = ACTIONS(53), - }, - [2888] = { - [anon_sym_RBRACE] = ACTIONS(6939), - [sym_comment] = ACTIONS(53), - }, - [2889] = { - [sym_concatenation] = STATE(3017), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3017), - [anon_sym_RBRACE] = ACTIONS(6941), - [anon_sym_EQ] = ACTIONS(6943), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6945), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6943), - [anon_sym_COLON_QMARK] = ACTIONS(6943), - [anon_sym_COLON_DASH] = ACTIONS(6943), - [anon_sym_PERCENT] = ACTIONS(6943), - [anon_sym_DASH] = ACTIONS(6943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2890] = { - [sym__simple_heredoc_body] = ACTIONS(4024), - [sym__heredoc_body_beginning] = ACTIONS(4024), - [sym_file_descriptor] = ACTIONS(4024), - [sym__concat] = ACTIONS(4024), - [anon_sym_esac] = ACTIONS(4026), - [anon_sym_PIPE] = ACTIONS(4026), - [anon_sym_SEMI_SEMI] = ACTIONS(4026), - [anon_sym_PIPE_AMP] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [anon_sym_EQ_TILDE] = ACTIONS(4026), - [anon_sym_EQ_EQ] = ACTIONS(4026), - [anon_sym_LT] = ACTIONS(4026), - [anon_sym_GT] = ACTIONS(4026), - [anon_sym_GT_GT] = ACTIONS(4026), - [anon_sym_AMP_GT] = ACTIONS(4026), - [anon_sym_AMP_GT_GT] = ACTIONS(4026), - [anon_sym_LT_AMP] = ACTIONS(4026), - [anon_sym_GT_AMP] = ACTIONS(4026), - [anon_sym_LT_LT] = ACTIONS(4026), - [anon_sym_LT_LT_DASH] = ACTIONS(4026), - [anon_sym_LT_LT_LT] = ACTIONS(4026), - [sym__special_characters] = ACTIONS(4026), - [anon_sym_DQUOTE] = ACTIONS(4026), - [anon_sym_DOLLAR] = ACTIONS(4026), - [sym_raw_string] = ACTIONS(4026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4026), - [anon_sym_BQUOTE] = ACTIONS(4026), - [anon_sym_LT_LPAREN] = ACTIONS(4026), - [anon_sym_GT_LPAREN] = ACTIONS(4026), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4026), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym_LF] = ACTIONS(4024), - [anon_sym_AMP] = ACTIONS(4026), - }, - [2891] = { - [sym_concatenation] = STATE(3019), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3019), - [anon_sym_RBRACE] = ACTIONS(6947), - [anon_sym_EQ] = ACTIONS(6949), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6951), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6949), - [anon_sym_COLON_QMARK] = ACTIONS(6949), - [anon_sym_COLON_DASH] = ACTIONS(6949), - [anon_sym_PERCENT] = ACTIONS(6949), - [anon_sym_DASH] = ACTIONS(6949), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2892] = { - [sym__simple_heredoc_body] = ACTIONS(4034), - [sym__heredoc_body_beginning] = ACTIONS(4034), - [sym_file_descriptor] = ACTIONS(4034), - [sym__concat] = ACTIONS(4034), - [anon_sym_esac] = ACTIONS(4036), - [anon_sym_PIPE] = ACTIONS(4036), - [anon_sym_SEMI_SEMI] = ACTIONS(4036), - [anon_sym_PIPE_AMP] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [anon_sym_EQ_TILDE] = ACTIONS(4036), - [anon_sym_EQ_EQ] = ACTIONS(4036), - [anon_sym_LT] = ACTIONS(4036), - [anon_sym_GT] = ACTIONS(4036), - [anon_sym_GT_GT] = ACTIONS(4036), - [anon_sym_AMP_GT] = ACTIONS(4036), - [anon_sym_AMP_GT_GT] = ACTIONS(4036), - [anon_sym_LT_AMP] = ACTIONS(4036), - [anon_sym_GT_AMP] = ACTIONS(4036), - [anon_sym_LT_LT] = ACTIONS(4036), - [anon_sym_LT_LT_DASH] = ACTIONS(4036), - [anon_sym_LT_LT_LT] = ACTIONS(4036), - [sym__special_characters] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_DOLLAR] = ACTIONS(4036), - [sym_raw_string] = ACTIONS(4036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4036), - [anon_sym_BQUOTE] = ACTIONS(4036), - [anon_sym_LT_LPAREN] = ACTIONS(4036), - [anon_sym_GT_LPAREN] = ACTIONS(4036), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4036), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_LF] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4036), - }, - [2893] = { - [sym_concatenation] = STATE(3021), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3021), - [anon_sym_RBRACE] = ACTIONS(6953), - [anon_sym_EQ] = ACTIONS(6955), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6955), - [anon_sym_COLON_QMARK] = ACTIONS(6955), - [anon_sym_COLON_DASH] = ACTIONS(6955), - [anon_sym_PERCENT] = ACTIONS(6955), - [anon_sym_DASH] = ACTIONS(6955), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2894] = { - [sym__simple_heredoc_body] = ACTIONS(4044), - [sym__heredoc_body_beginning] = ACTIONS(4044), - [sym_file_descriptor] = ACTIONS(4044), - [sym__concat] = ACTIONS(4044), - [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_EQ_TILDE] = ACTIONS(4046), - [anon_sym_EQ_EQ] = 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__special_characters] = ACTIONS(4046), - [anon_sym_DQUOTE] = ACTIONS(4046), - [anon_sym_DOLLAR] = ACTIONS(4046), - [sym_raw_string] = ACTIONS(4046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4046), - [anon_sym_BQUOTE] = ACTIONS(4046), - [anon_sym_LT_LPAREN] = ACTIONS(4046), - [anon_sym_GT_LPAREN] = ACTIONS(4046), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4046), - [anon_sym_SEMI] = ACTIONS(4046), - [anon_sym_LF] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4046), - }, - [2895] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6959), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2896] = { - [sym__simple_heredoc_body] = ACTIONS(4050), - [sym__heredoc_body_beginning] = ACTIONS(4050), - [sym_file_descriptor] = ACTIONS(4050), - [sym__concat] = ACTIONS(4050), - [anon_sym_esac] = ACTIONS(4052), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_SEMI_SEMI] = ACTIONS(4052), - [anon_sym_PIPE_AMP] = ACTIONS(4052), - [anon_sym_AMP_AMP] = ACTIONS(4052), - [anon_sym_PIPE_PIPE] = ACTIONS(4052), - [anon_sym_EQ_TILDE] = ACTIONS(4052), - [anon_sym_EQ_EQ] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_GT_GT] = ACTIONS(4052), - [anon_sym_AMP_GT] = ACTIONS(4052), - [anon_sym_AMP_GT_GT] = ACTIONS(4052), - [anon_sym_LT_AMP] = ACTIONS(4052), - [anon_sym_GT_AMP] = ACTIONS(4052), - [anon_sym_LT_LT] = ACTIONS(4052), - [anon_sym_LT_LT_DASH] = ACTIONS(4052), - [anon_sym_LT_LT_LT] = ACTIONS(4052), - [sym__special_characters] = ACTIONS(4052), - [anon_sym_DQUOTE] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4052), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4052), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4052), - [anon_sym_BQUOTE] = ACTIONS(4052), - [anon_sym_LT_LPAREN] = ACTIONS(4052), - [anon_sym_GT_LPAREN] = ACTIONS(4052), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4052), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4052), - }, - [2897] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6961), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2898] = { - [sym__simple_heredoc_body] = ACTIONS(1654), - [sym__heredoc_body_beginning] = ACTIONS(1654), - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(1654), - [anon_sym_esac] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1656), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1656), - [anon_sym_LT_AMP] = ACTIONS(1656), - [anon_sym_GT_AMP] = ACTIONS(1656), - [anon_sym_LT_LT] = ACTIONS(1656), - [anon_sym_LT_LT_DASH] = ACTIONS(1656), - [anon_sym_LT_LT_LT] = ACTIONS(1656), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), - }, - [2899] = { - [aux_sym_concatenation_repeat1] = STATE(2899), - [sym__simple_heredoc_body] = ACTIONS(1654), - [sym__heredoc_body_beginning] = ACTIONS(1654), - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(6963), - [anon_sym_esac] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1656), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1656), - [anon_sym_LT_AMP] = ACTIONS(1656), - [anon_sym_GT_AMP] = ACTIONS(1656), - [anon_sym_LT_LT] = ACTIONS(1656), - [anon_sym_LT_LT_DASH] = ACTIONS(1656), - [anon_sym_LT_LT_LT] = ACTIONS(1656), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), - }, - [2900] = { - [sym__simple_heredoc_body] = ACTIONS(1703), - [sym__heredoc_body_beginning] = ACTIONS(1703), - [sym_file_descriptor] = ACTIONS(1703), - [sym__concat] = ACTIONS(1703), - [anon_sym_esac] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_SEMI_SEMI] = ACTIONS(1705), - [anon_sym_PIPE_AMP] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1705), - [anon_sym_PIPE_PIPE] = ACTIONS(1705), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_GT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_AMP_GT] = ACTIONS(1705), - [anon_sym_AMP_GT_GT] = ACTIONS(1705), - [anon_sym_LT_AMP] = ACTIONS(1705), - [anon_sym_GT_AMP] = ACTIONS(1705), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_LT_LT_DASH] = ACTIONS(1705), - [anon_sym_LT_LT_LT] = ACTIONS(1705), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_LF] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1705), - }, - [2901] = { - [sym_concatenation] = STATE(3027), - [sym_string] = STATE(3026), - [sym_simple_expansion] = STATE(3026), - [sym_string_expansion] = STATE(3026), - [sym_expansion] = STATE(3026), - [sym_command_substitution] = STATE(3026), - [sym_process_substitution] = STATE(3026), - [anon_sym_RBRACE] = ACTIONS(6966), - [sym__special_characters] = ACTIONS(6968), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(6970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6970), - }, - [2902] = { - [sym__simple_heredoc_body] = ACTIONS(1744), - [sym__heredoc_body_beginning] = ACTIONS(1744), - [sym_file_descriptor] = ACTIONS(1744), - [sym__concat] = ACTIONS(1744), - [anon_sym_esac] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_SEMI_SEMI] = ACTIONS(1746), - [anon_sym_PIPE_AMP] = ACTIONS(1746), - [anon_sym_AMP_AMP] = ACTIONS(1746), - [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1746), - [anon_sym_GT] = ACTIONS(1746), - [anon_sym_GT_GT] = ACTIONS(1746), - [anon_sym_AMP_GT] = ACTIONS(1746), - [anon_sym_AMP_GT_GT] = ACTIONS(1746), - [anon_sym_LT_AMP] = ACTIONS(1746), - [anon_sym_GT_AMP] = ACTIONS(1746), - [anon_sym_LT_LT] = ACTIONS(1746), - [anon_sym_LT_LT_DASH] = ACTIONS(1746), - [anon_sym_LT_LT_LT] = ACTIONS(1746), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LF] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1746), - }, - [2903] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6972), - }, - [2904] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6974), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2905] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(6976), - [sym_comment] = ACTIONS(53), - }, - [2906] = { - [sym_concatenation] = STATE(3033), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3033), - [anon_sym_RBRACE] = ACTIONS(6978), - [anon_sym_EQ] = ACTIONS(6980), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6982), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6984), - [anon_sym_COLON] = ACTIONS(6980), - [anon_sym_COLON_QMARK] = ACTIONS(6980), - [anon_sym_COLON_DASH] = ACTIONS(6980), - [anon_sym_PERCENT] = ACTIONS(6980), - [anon_sym_DASH] = ACTIONS(6980), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2907] = { - [sym_concatenation] = STATE(3036), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3036), - [anon_sym_RBRACE] = ACTIONS(6986), - [anon_sym_EQ] = ACTIONS(6988), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6990), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6992), - [anon_sym_COLON] = ACTIONS(6988), - [anon_sym_COLON_QMARK] = ACTIONS(6988), - [anon_sym_COLON_DASH] = ACTIONS(6988), - [anon_sym_PERCENT] = ACTIONS(6988), - [anon_sym_DASH] = ACTIONS(6988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2908] = { - [sym_concatenation] = STATE(3038), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3038), - [anon_sym_RBRACE] = ACTIONS(6966), - [anon_sym_EQ] = ACTIONS(6994), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6996), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(6998), - [anon_sym_COLON] = ACTIONS(6994), - [anon_sym_COLON_QMARK] = ACTIONS(6994), - [anon_sym_COLON_DASH] = ACTIONS(6994), - [anon_sym_PERCENT] = ACTIONS(6994), - [anon_sym_DASH] = ACTIONS(6994), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2909] = { - [sym__simple_heredoc_body] = ACTIONS(1810), - [sym__heredoc_body_beginning] = ACTIONS(1810), - [sym_file_descriptor] = ACTIONS(1810), - [sym__concat] = ACTIONS(1810), - [anon_sym_esac] = ACTIONS(1812), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_SEMI_SEMI] = ACTIONS(1812), - [anon_sym_PIPE_AMP] = ACTIONS(1812), - [anon_sym_AMP_AMP] = ACTIONS(1812), - [anon_sym_PIPE_PIPE] = ACTIONS(1812), - [anon_sym_LT] = ACTIONS(1812), - [anon_sym_GT] = ACTIONS(1812), - [anon_sym_GT_GT] = ACTIONS(1812), - [anon_sym_AMP_GT] = ACTIONS(1812), - [anon_sym_AMP_GT_GT] = ACTIONS(1812), - [anon_sym_LT_AMP] = ACTIONS(1812), - [anon_sym_GT_AMP] = ACTIONS(1812), - [anon_sym_LT_LT] = ACTIONS(1812), - [anon_sym_LT_LT_DASH] = ACTIONS(1812), - [anon_sym_LT_LT_LT] = ACTIONS(1812), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_LF] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1812), - }, - [2910] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(7000), - }, - [2911] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7002), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2912] = { - [sym__simple_heredoc_body] = ACTIONS(1818), - [sym__heredoc_body_beginning] = ACTIONS(1818), - [sym_file_descriptor] = ACTIONS(1818), - [sym__concat] = ACTIONS(1818), - [anon_sym_esac] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_SEMI_SEMI] = ACTIONS(1820), - [anon_sym_PIPE_AMP] = ACTIONS(1820), - [anon_sym_AMP_AMP] = ACTIONS(1820), - [anon_sym_PIPE_PIPE] = ACTIONS(1820), - [anon_sym_LT] = ACTIONS(1820), - [anon_sym_GT] = ACTIONS(1820), - [anon_sym_GT_GT] = ACTIONS(1820), - [anon_sym_AMP_GT] = ACTIONS(1820), - [anon_sym_AMP_GT_GT] = ACTIONS(1820), - [anon_sym_LT_AMP] = ACTIONS(1820), - [anon_sym_GT_AMP] = ACTIONS(1820), - [anon_sym_LT_LT] = ACTIONS(1820), - [anon_sym_LT_LT_DASH] = ACTIONS(1820), - [anon_sym_LT_LT_LT] = ACTIONS(1820), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_LF] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1820), - }, - [2913] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(7004), - }, - [2914] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(6966), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2915] = { - [sym__simple_heredoc_body] = ACTIONS(1952), - [sym__heredoc_body_beginning] = ACTIONS(1952), - [sym_file_descriptor] = ACTIONS(1952), - [sym__concat] = ACTIONS(1952), - [anon_sym_esac] = ACTIONS(1954), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_SEMI_SEMI] = ACTIONS(1954), - [anon_sym_PIPE_AMP] = ACTIONS(1954), - [anon_sym_AMP_AMP] = ACTIONS(1954), - [anon_sym_PIPE_PIPE] = ACTIONS(1954), - [anon_sym_LT] = ACTIONS(1954), - [anon_sym_GT] = ACTIONS(1954), - [anon_sym_GT_GT] = ACTIONS(1954), - [anon_sym_AMP_GT] = ACTIONS(1954), - [anon_sym_AMP_GT_GT] = ACTIONS(1954), - [anon_sym_LT_AMP] = ACTIONS(1954), - [anon_sym_GT_AMP] = ACTIONS(1954), - [anon_sym_LT_LT] = ACTIONS(1954), - [anon_sym_LT_LT_DASH] = ACTIONS(1954), - [anon_sym_LT_LT_LT] = ACTIONS(1954), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_LF] = ACTIONS(1952), - [anon_sym_AMP] = ACTIONS(1954), - }, - [2916] = { - [sym__simple_heredoc_body] = ACTIONS(2018), - [sym__heredoc_body_beginning] = ACTIONS(2018), - [sym_file_descriptor] = ACTIONS(2018), - [sym__concat] = ACTIONS(2018), - [anon_sym_esac] = ACTIONS(2020), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_SEMI_SEMI] = ACTIONS(2020), - [anon_sym_PIPE_AMP] = ACTIONS(2020), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [anon_sym_LT] = ACTIONS(2020), - [anon_sym_GT] = ACTIONS(2020), - [anon_sym_GT_GT] = ACTIONS(2020), - [anon_sym_AMP_GT] = ACTIONS(2020), - [anon_sym_AMP_GT_GT] = ACTIONS(2020), - [anon_sym_LT_AMP] = ACTIONS(2020), - [anon_sym_GT_AMP] = ACTIONS(2020), - [anon_sym_LT_LT] = ACTIONS(2020), - [anon_sym_LT_LT_DASH] = ACTIONS(2020), - [anon_sym_LT_LT_LT] = ACTIONS(2020), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2020), - [anon_sym_LF] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2020), - }, - [2917] = { + [2651] = { [sym_file_descriptor] = ACTIONS(951), [sym_variable_name] = ACTIONS(951), [anon_sym_for] = ACTIONS(953), @@ -76476,34 +67042,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(951), [anon_sym_LT_AMP] = ACTIONS(951), [anon_sym_GT_AMP] = ACTIONS(951), - [sym__special_characters] = ACTIONS(6391), - [anon_sym_DQUOTE] = ACTIONS(6393), - [anon_sym_DOLLAR] = ACTIONS(6391), - [sym_raw_string] = ACTIONS(6393), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6393), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6393), - [anon_sym_BQUOTE] = ACTIONS(6393), - [anon_sym_LT_LPAREN] = ACTIONS(6393), - [anon_sym_GT_LPAREN] = ACTIONS(6393), + [sym__special_characters] = ACTIONS(5963), + [anon_sym_DQUOTE] = ACTIONS(5965), + [anon_sym_DOLLAR] = ACTIONS(5963), + [sym_raw_string] = ACTIONS(5965), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5965), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5965), + [anon_sym_BQUOTE] = ACTIONS(5965), + [anon_sym_LT_LPAREN] = ACTIONS(5965), + [anon_sym_GT_LPAREN] = ACTIONS(5965), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6391), + [sym_word] = ACTIONS(5963), }, - [2918] = { - [sym__special_characters] = ACTIONS(6393), - [anon_sym_DQUOTE] = ACTIONS(6393), - [anon_sym_DOLLAR] = ACTIONS(6391), - [sym_raw_string] = ACTIONS(6393), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6393), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6393), - [anon_sym_BQUOTE] = ACTIONS(6393), - [anon_sym_LT_LPAREN] = ACTIONS(6393), - [anon_sym_GT_LPAREN] = ACTIONS(6393), + [2652] = { + [sym__special_characters] = ACTIONS(5965), + [anon_sym_DQUOTE] = ACTIONS(5965), + [anon_sym_DOLLAR] = ACTIONS(5963), + [sym_raw_string] = ACTIONS(5965), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5965), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5965), + [anon_sym_BQUOTE] = ACTIONS(5965), + [anon_sym_LT_LPAREN] = ACTIONS(5965), + [anon_sym_GT_LPAREN] = ACTIONS(5965), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6393), + [sym_word] = ACTIONS(5965), }, - [2919] = { + [2653] = { [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(7006), + [anon_sym_SEMI_SEMI] = ACTIONS(6342), [anon_sym_PIPE_AMP] = ACTIONS(329), [anon_sym_AMP_AMP] = ACTIONS(333), [anon_sym_PIPE_PIPE] = ACTIONS(333), @@ -76512,11 +67078,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(335), [anon_sym_AMP] = ACTIONS(331), }, - [2920] = { + [2654] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(7006), + [anon_sym_SEMI_SEMI] = ACTIONS(6342), [anon_sym_PIPE_AMP] = ACTIONS(329), [anon_sym_AMP_AMP] = ACTIONS(333), [anon_sym_PIPE_PIPE] = ACTIONS(333), @@ -76542,7 +67108,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(335), [anon_sym_AMP] = ACTIONS(331), }, - [2921] = { + [2655] = { [sym_file_descriptor] = ACTIONS(951), [sym_variable_name] = ACTIONS(951), [anon_sym_for] = ACTIONS(953), @@ -76569,34 +67135,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(951), [anon_sym_LT_AMP] = ACTIONS(951), [anon_sym_GT_AMP] = ACTIONS(951), - [sym__special_characters] = ACTIONS(6399), - [anon_sym_DQUOTE] = ACTIONS(6401), - [anon_sym_DOLLAR] = ACTIONS(6399), - [sym_raw_string] = ACTIONS(6401), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6401), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6401), - [anon_sym_BQUOTE] = ACTIONS(6401), - [anon_sym_LT_LPAREN] = ACTIONS(6401), - [anon_sym_GT_LPAREN] = ACTIONS(6401), + [sym__special_characters] = ACTIONS(5971), + [anon_sym_DQUOTE] = ACTIONS(5973), + [anon_sym_DOLLAR] = ACTIONS(5971), + [sym_raw_string] = ACTIONS(5973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5973), + [anon_sym_BQUOTE] = ACTIONS(5973), + [anon_sym_LT_LPAREN] = ACTIONS(5973), + [anon_sym_GT_LPAREN] = ACTIONS(5973), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6399), + [sym_word] = ACTIONS(5971), }, - [2922] = { - [sym__special_characters] = ACTIONS(6401), - [anon_sym_DQUOTE] = ACTIONS(6401), - [anon_sym_DOLLAR] = ACTIONS(6399), - [sym_raw_string] = ACTIONS(6401), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6401), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6401), - [anon_sym_BQUOTE] = ACTIONS(6401), - [anon_sym_LT_LPAREN] = ACTIONS(6401), - [anon_sym_GT_LPAREN] = ACTIONS(6401), + [2656] = { + [sym__special_characters] = ACTIONS(5973), + [anon_sym_DQUOTE] = ACTIONS(5973), + [anon_sym_DOLLAR] = ACTIONS(5971), + [sym_raw_string] = ACTIONS(5973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5973), + [anon_sym_BQUOTE] = ACTIONS(5973), + [anon_sym_LT_LPAREN] = ACTIONS(5973), + [anon_sym_GT_LPAREN] = ACTIONS(5973), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6401), + [sym_word] = ACTIONS(5973), }, - [2923] = { + [2657] = { [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(7008), + [anon_sym_SEMI_SEMI] = ACTIONS(6344), [anon_sym_PIPE_AMP] = ACTIONS(329), [anon_sym_AMP_AMP] = ACTIONS(333), [anon_sym_PIPE_PIPE] = ACTIONS(333), @@ -76605,11 +67171,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(335), [anon_sym_AMP] = ACTIONS(331), }, - [2924] = { + [2658] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(7008), + [anon_sym_SEMI_SEMI] = ACTIONS(6344), [anon_sym_PIPE_AMP] = ACTIONS(329), [anon_sym_AMP_AMP] = ACTIONS(333), [anon_sym_PIPE_PIPE] = ACTIONS(333), @@ -76635,187 +67201,187 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(335), [anon_sym_AMP] = ACTIONS(331), }, - [2925] = { - [sym_file_descriptor] = ACTIONS(5540), - [sym__concat] = ACTIONS(5540), - [anon_sym_esac] = ACTIONS(5542), - [anon_sym_PIPE] = ACTIONS(5542), - [anon_sym_RPAREN] = ACTIONS(5542), - [anon_sym_SEMI_SEMI] = ACTIONS(5542), - [anon_sym_PIPE_AMP] = ACTIONS(5542), - [anon_sym_AMP_AMP] = ACTIONS(5542), - [anon_sym_PIPE_PIPE] = ACTIONS(5542), - [anon_sym_LT] = ACTIONS(5542), - [anon_sym_GT] = ACTIONS(5542), - [anon_sym_GT_GT] = ACTIONS(5542), - [anon_sym_AMP_GT] = ACTIONS(5542), - [anon_sym_AMP_GT_GT] = ACTIONS(5542), - [anon_sym_LT_AMP] = ACTIONS(5542), - [anon_sym_GT_AMP] = ACTIONS(5542), - [anon_sym_LT_LT] = ACTIONS(5542), - [anon_sym_LT_LT_DASH] = ACTIONS(5542), - [anon_sym_LT_LT_LT] = ACTIONS(5542), + [2659] = { + [sym_file_descriptor] = ACTIONS(5325), + [sym__concat] = ACTIONS(5325), + [anon_sym_esac] = ACTIONS(5327), + [anon_sym_PIPE] = ACTIONS(5327), + [anon_sym_RPAREN] = ACTIONS(5327), + [anon_sym_SEMI_SEMI] = ACTIONS(5327), + [anon_sym_PIPE_AMP] = ACTIONS(5327), + [anon_sym_AMP_AMP] = ACTIONS(5327), + [anon_sym_PIPE_PIPE] = ACTIONS(5327), + [anon_sym_LT] = ACTIONS(5327), + [anon_sym_GT] = ACTIONS(5327), + [anon_sym_GT_GT] = ACTIONS(5327), + [anon_sym_AMP_GT] = ACTIONS(5327), + [anon_sym_AMP_GT_GT] = ACTIONS(5327), + [anon_sym_LT_AMP] = ACTIONS(5327), + [anon_sym_GT_AMP] = ACTIONS(5327), + [anon_sym_LT_LT] = ACTIONS(5327), + [anon_sym_LT_LT_DASH] = ACTIONS(5327), + [anon_sym_LT_LT_LT] = ACTIONS(5327), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5542), - [anon_sym_LF] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(5542), + [anon_sym_SEMI] = ACTIONS(5327), + [anon_sym_LF] = ACTIONS(5325), + [anon_sym_AMP] = ACTIONS(5327), }, - [2926] = { - [sym_file_descriptor] = ACTIONS(5544), - [sym__concat] = ACTIONS(5544), - [anon_sym_esac] = ACTIONS(5546), - [anon_sym_PIPE] = ACTIONS(5546), - [anon_sym_RPAREN] = ACTIONS(5546), - [anon_sym_SEMI_SEMI] = ACTIONS(5546), - [anon_sym_PIPE_AMP] = ACTIONS(5546), - [anon_sym_AMP_AMP] = ACTIONS(5546), - [anon_sym_PIPE_PIPE] = ACTIONS(5546), - [anon_sym_LT] = ACTIONS(5546), - [anon_sym_GT] = ACTIONS(5546), - [anon_sym_GT_GT] = ACTIONS(5546), - [anon_sym_AMP_GT] = ACTIONS(5546), - [anon_sym_AMP_GT_GT] = ACTIONS(5546), - [anon_sym_LT_AMP] = ACTIONS(5546), - [anon_sym_GT_AMP] = ACTIONS(5546), - [anon_sym_LT_LT] = ACTIONS(5546), - [anon_sym_LT_LT_DASH] = ACTIONS(5546), - [anon_sym_LT_LT_LT] = ACTIONS(5546), + [2660] = { + [sym_file_descriptor] = ACTIONS(5329), + [sym__concat] = ACTIONS(5329), + [anon_sym_esac] = ACTIONS(5331), + [anon_sym_PIPE] = ACTIONS(5331), + [anon_sym_RPAREN] = ACTIONS(5331), + [anon_sym_SEMI_SEMI] = ACTIONS(5331), + [anon_sym_PIPE_AMP] = ACTIONS(5331), + [anon_sym_AMP_AMP] = ACTIONS(5331), + [anon_sym_PIPE_PIPE] = ACTIONS(5331), + [anon_sym_LT] = ACTIONS(5331), + [anon_sym_GT] = ACTIONS(5331), + [anon_sym_GT_GT] = ACTIONS(5331), + [anon_sym_AMP_GT] = ACTIONS(5331), + [anon_sym_AMP_GT_GT] = ACTIONS(5331), + [anon_sym_LT_AMP] = ACTIONS(5331), + [anon_sym_GT_AMP] = ACTIONS(5331), + [anon_sym_LT_LT] = ACTIONS(5331), + [anon_sym_LT_LT_DASH] = ACTIONS(5331), + [anon_sym_LT_LT_LT] = ACTIONS(5331), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5546), - [anon_sym_LF] = ACTIONS(5544), - [anon_sym_AMP] = ACTIONS(5546), + [anon_sym_SEMI] = ACTIONS(5331), + [anon_sym_LF] = ACTIONS(5329), + [anon_sym_AMP] = ACTIONS(5331), }, - [2927] = { - [sym_file_descriptor] = ACTIONS(5548), - [sym__concat] = ACTIONS(5548), - [anon_sym_esac] = ACTIONS(5550), - [anon_sym_PIPE] = ACTIONS(5550), - [anon_sym_RPAREN] = ACTIONS(5550), - [anon_sym_SEMI_SEMI] = ACTIONS(5550), - [anon_sym_PIPE_AMP] = ACTIONS(5550), - [anon_sym_AMP_AMP] = ACTIONS(5550), - [anon_sym_PIPE_PIPE] = ACTIONS(5550), - [anon_sym_LT] = ACTIONS(5550), - [anon_sym_GT] = ACTIONS(5550), - [anon_sym_GT_GT] = ACTIONS(5550), - [anon_sym_AMP_GT] = ACTIONS(5550), - [anon_sym_AMP_GT_GT] = ACTIONS(5550), - [anon_sym_LT_AMP] = ACTIONS(5550), - [anon_sym_GT_AMP] = ACTIONS(5550), - [anon_sym_LT_LT] = ACTIONS(5550), - [anon_sym_LT_LT_DASH] = ACTIONS(5550), - [anon_sym_LT_LT_LT] = ACTIONS(5550), + [2661] = { + [sym_file_descriptor] = ACTIONS(5333), + [sym__concat] = ACTIONS(5333), + [anon_sym_esac] = ACTIONS(5335), + [anon_sym_PIPE] = ACTIONS(5335), + [anon_sym_RPAREN] = ACTIONS(5335), + [anon_sym_SEMI_SEMI] = ACTIONS(5335), + [anon_sym_PIPE_AMP] = ACTIONS(5335), + [anon_sym_AMP_AMP] = ACTIONS(5335), + [anon_sym_PIPE_PIPE] = ACTIONS(5335), + [anon_sym_LT] = ACTIONS(5335), + [anon_sym_GT] = ACTIONS(5335), + [anon_sym_GT_GT] = ACTIONS(5335), + [anon_sym_AMP_GT] = ACTIONS(5335), + [anon_sym_AMP_GT_GT] = ACTIONS(5335), + [anon_sym_LT_AMP] = ACTIONS(5335), + [anon_sym_GT_AMP] = ACTIONS(5335), + [anon_sym_LT_LT] = ACTIONS(5335), + [anon_sym_LT_LT_DASH] = ACTIONS(5335), + [anon_sym_LT_LT_LT] = ACTIONS(5335), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5550), - [anon_sym_LF] = ACTIONS(5548), - [anon_sym_AMP] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5335), + [anon_sym_LF] = ACTIONS(5333), + [anon_sym_AMP] = ACTIONS(5335), }, - [2928] = { - [sym_file_descriptor] = ACTIONS(4884), - [sym__concat] = ACTIONS(4884), - [anon_sym_PIPE] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4884), - [anon_sym_PIPE_AMP] = ACTIONS(4884), - [anon_sym_AMP_AMP] = ACTIONS(4884), - [anon_sym_PIPE_PIPE] = ACTIONS(4884), - [anon_sym_LT] = ACTIONS(4886), - [anon_sym_GT] = ACTIONS(4886), - [anon_sym_GT_GT] = ACTIONS(4884), - [anon_sym_AMP_GT] = ACTIONS(4886), - [anon_sym_AMP_GT_GT] = ACTIONS(4884), - [anon_sym_LT_AMP] = ACTIONS(4884), - [anon_sym_GT_AMP] = ACTIONS(4884), - [anon_sym_LT_LT] = ACTIONS(4886), - [anon_sym_LT_LT_DASH] = ACTIONS(4884), - [anon_sym_LT_LT_LT] = ACTIONS(4884), - [anon_sym_BQUOTE] = ACTIONS(4884), + [2662] = { + [sym_file_descriptor] = ACTIONS(4741), + [sym__concat] = ACTIONS(4741), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4741), + [anon_sym_PIPE_AMP] = ACTIONS(4741), + [anon_sym_AMP_AMP] = ACTIONS(4741), + [anon_sym_PIPE_PIPE] = ACTIONS(4741), + [anon_sym_LT] = ACTIONS(4743), + [anon_sym_GT] = ACTIONS(4743), + [anon_sym_GT_GT] = ACTIONS(4741), + [anon_sym_AMP_GT] = ACTIONS(4743), + [anon_sym_AMP_GT_GT] = ACTIONS(4741), + [anon_sym_LT_AMP] = ACTIONS(4741), + [anon_sym_GT_AMP] = ACTIONS(4741), + [anon_sym_LT_LT] = ACTIONS(4743), + [anon_sym_LT_LT_DASH] = ACTIONS(4741), + [anon_sym_LT_LT_LT] = ACTIONS(4741), + [anon_sym_BQUOTE] = ACTIONS(4741), [sym_comment] = ACTIONS(53), }, - [2929] = { - [sym_file_descriptor] = ACTIONS(4888), - [sym__concat] = ACTIONS(4888), - [anon_sym_PIPE] = ACTIONS(4890), - [anon_sym_RPAREN] = ACTIONS(4888), - [anon_sym_PIPE_AMP] = ACTIONS(4888), - [anon_sym_AMP_AMP] = ACTIONS(4888), - [anon_sym_PIPE_PIPE] = ACTIONS(4888), - [anon_sym_LT] = ACTIONS(4890), - [anon_sym_GT] = ACTIONS(4890), - [anon_sym_GT_GT] = ACTIONS(4888), - [anon_sym_AMP_GT] = ACTIONS(4890), - [anon_sym_AMP_GT_GT] = ACTIONS(4888), - [anon_sym_LT_AMP] = ACTIONS(4888), - [anon_sym_GT_AMP] = ACTIONS(4888), - [anon_sym_LT_LT] = ACTIONS(4890), - [anon_sym_LT_LT_DASH] = ACTIONS(4888), - [anon_sym_LT_LT_LT] = ACTIONS(4888), - [anon_sym_BQUOTE] = ACTIONS(4888), + [2663] = { + [sym_file_descriptor] = ACTIONS(4745), + [sym__concat] = ACTIONS(4745), + [anon_sym_PIPE] = ACTIONS(4747), + [anon_sym_RPAREN] = ACTIONS(4745), + [anon_sym_PIPE_AMP] = ACTIONS(4745), + [anon_sym_AMP_AMP] = ACTIONS(4745), + [anon_sym_PIPE_PIPE] = ACTIONS(4745), + [anon_sym_LT] = ACTIONS(4747), + [anon_sym_GT] = ACTIONS(4747), + [anon_sym_GT_GT] = ACTIONS(4745), + [anon_sym_AMP_GT] = ACTIONS(4747), + [anon_sym_AMP_GT_GT] = ACTIONS(4745), + [anon_sym_LT_AMP] = ACTIONS(4745), + [anon_sym_GT_AMP] = ACTIONS(4745), + [anon_sym_LT_LT] = ACTIONS(4747), + [anon_sym_LT_LT_DASH] = ACTIONS(4745), + [anon_sym_LT_LT_LT] = ACTIONS(4745), + [anon_sym_BQUOTE] = ACTIONS(4745), [sym_comment] = ACTIONS(53), }, - [2930] = { - [sym_file_descriptor] = ACTIONS(4892), - [sym__concat] = ACTIONS(4892), - [anon_sym_PIPE] = ACTIONS(4894), - [anon_sym_RPAREN] = ACTIONS(4892), - [anon_sym_PIPE_AMP] = ACTIONS(4892), - [anon_sym_AMP_AMP] = ACTIONS(4892), - [anon_sym_PIPE_PIPE] = ACTIONS(4892), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_GT_GT] = ACTIONS(4892), - [anon_sym_AMP_GT] = ACTIONS(4894), - [anon_sym_AMP_GT_GT] = ACTIONS(4892), - [anon_sym_LT_AMP] = ACTIONS(4892), - [anon_sym_GT_AMP] = ACTIONS(4892), - [anon_sym_LT_LT] = ACTIONS(4894), - [anon_sym_LT_LT_DASH] = ACTIONS(4892), - [anon_sym_LT_LT_LT] = ACTIONS(4892), - [anon_sym_BQUOTE] = ACTIONS(4892), + [2664] = { + [sym_file_descriptor] = ACTIONS(4749), + [sym__concat] = ACTIONS(4749), + [anon_sym_PIPE] = ACTIONS(4751), + [anon_sym_RPAREN] = ACTIONS(4749), + [anon_sym_PIPE_AMP] = ACTIONS(4749), + [anon_sym_AMP_AMP] = ACTIONS(4749), + [anon_sym_PIPE_PIPE] = ACTIONS(4749), + [anon_sym_LT] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4751), + [anon_sym_GT_GT] = ACTIONS(4749), + [anon_sym_AMP_GT] = ACTIONS(4751), + [anon_sym_AMP_GT_GT] = ACTIONS(4749), + [anon_sym_LT_AMP] = ACTIONS(4749), + [anon_sym_GT_AMP] = ACTIONS(4749), + [anon_sym_LT_LT] = ACTIONS(4751), + [anon_sym_LT_LT_DASH] = ACTIONS(4749), + [anon_sym_LT_LT_LT] = ACTIONS(4749), + [anon_sym_BQUOTE] = ACTIONS(4749), [sym_comment] = ACTIONS(53), }, - [2931] = { - [sym_file_descriptor] = ACTIONS(4896), - [sym__concat] = ACTIONS(4896), - [anon_sym_PIPE] = ACTIONS(4898), - [anon_sym_RPAREN] = ACTIONS(4896), - [anon_sym_PIPE_AMP] = ACTIONS(4896), - [anon_sym_AMP_AMP] = ACTIONS(4896), - [anon_sym_PIPE_PIPE] = ACTIONS(4896), - [anon_sym_LT] = ACTIONS(4898), - [anon_sym_GT] = ACTIONS(4898), - [anon_sym_GT_GT] = ACTIONS(4896), - [anon_sym_AMP_GT] = ACTIONS(4898), - [anon_sym_AMP_GT_GT] = ACTIONS(4896), - [anon_sym_LT_AMP] = ACTIONS(4896), - [anon_sym_GT_AMP] = ACTIONS(4896), - [anon_sym_LT_LT] = ACTIONS(4898), - [anon_sym_LT_LT_DASH] = ACTIONS(4896), - [anon_sym_LT_LT_LT] = ACTIONS(4896), - [anon_sym_BQUOTE] = ACTIONS(4896), + [2665] = { + [sym_file_descriptor] = ACTIONS(4753), + [sym__concat] = ACTIONS(4753), + [anon_sym_PIPE] = ACTIONS(4755), + [anon_sym_RPAREN] = ACTIONS(4753), + [anon_sym_PIPE_AMP] = ACTIONS(4753), + [anon_sym_AMP_AMP] = ACTIONS(4753), + [anon_sym_PIPE_PIPE] = ACTIONS(4753), + [anon_sym_LT] = ACTIONS(4755), + [anon_sym_GT] = ACTIONS(4755), + [anon_sym_GT_GT] = ACTIONS(4753), + [anon_sym_AMP_GT] = ACTIONS(4755), + [anon_sym_AMP_GT_GT] = ACTIONS(4753), + [anon_sym_LT_AMP] = ACTIONS(4753), + [anon_sym_GT_AMP] = ACTIONS(4753), + [anon_sym_LT_LT] = ACTIONS(4755), + [anon_sym_LT_LT_DASH] = ACTIONS(4753), + [anon_sym_LT_LT_LT] = ACTIONS(4753), + [anon_sym_BQUOTE] = ACTIONS(4753), [sym_comment] = ACTIONS(53), }, - [2932] = { - [sym_concatenation] = STATE(839), + [2666] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7010), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6346), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -76823,49 +67389,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2933] = { - [sym_file_descriptor] = ACTIONS(4902), - [sym__concat] = ACTIONS(4902), - [anon_sym_PIPE] = ACTIONS(4904), - [anon_sym_RPAREN] = ACTIONS(4902), - [anon_sym_PIPE_AMP] = ACTIONS(4902), - [anon_sym_AMP_AMP] = ACTIONS(4902), - [anon_sym_PIPE_PIPE] = ACTIONS(4902), - [anon_sym_LT] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4904), - [anon_sym_GT_GT] = ACTIONS(4902), - [anon_sym_AMP_GT] = ACTIONS(4904), - [anon_sym_AMP_GT_GT] = ACTIONS(4902), - [anon_sym_LT_AMP] = ACTIONS(4902), - [anon_sym_GT_AMP] = ACTIONS(4902), - [anon_sym_LT_LT] = ACTIONS(4904), - [anon_sym_LT_LT_DASH] = ACTIONS(4902), - [anon_sym_LT_LT_LT] = ACTIONS(4902), - [anon_sym_BQUOTE] = ACTIONS(4902), + [2667] = { + [sym_file_descriptor] = ACTIONS(4759), + [sym__concat] = ACTIONS(4759), + [anon_sym_PIPE] = ACTIONS(4761), + [anon_sym_RPAREN] = ACTIONS(4759), + [anon_sym_PIPE_AMP] = ACTIONS(4759), + [anon_sym_AMP_AMP] = ACTIONS(4759), + [anon_sym_PIPE_PIPE] = ACTIONS(4759), + [anon_sym_LT] = ACTIONS(4761), + [anon_sym_GT] = ACTIONS(4761), + [anon_sym_GT_GT] = ACTIONS(4759), + [anon_sym_AMP_GT] = ACTIONS(4761), + [anon_sym_AMP_GT_GT] = ACTIONS(4759), + [anon_sym_LT_AMP] = ACTIONS(4759), + [anon_sym_GT_AMP] = ACTIONS(4759), + [anon_sym_LT_LT] = ACTIONS(4761), + [anon_sym_LT_LT_DASH] = ACTIONS(4759), + [anon_sym_LT_LT_LT] = ACTIONS(4759), + [anon_sym_BQUOTE] = ACTIONS(4759), [sym_comment] = ACTIONS(53), }, - [2934] = { - [sym_concatenation] = STATE(839), + [2668] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7012), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6348), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -76873,49 +67439,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2935] = { - [sym_file_descriptor] = ACTIONS(4908), - [sym__concat] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4910), - [anon_sym_RPAREN] = ACTIONS(4908), - [anon_sym_PIPE_AMP] = ACTIONS(4908), - [anon_sym_AMP_AMP] = ACTIONS(4908), - [anon_sym_PIPE_PIPE] = ACTIONS(4908), - [anon_sym_LT] = ACTIONS(4910), - [anon_sym_GT] = ACTIONS(4910), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_AMP_GT] = ACTIONS(4910), - [anon_sym_AMP_GT_GT] = ACTIONS(4908), - [anon_sym_LT_AMP] = ACTIONS(4908), - [anon_sym_GT_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4910), - [anon_sym_LT_LT_DASH] = ACTIONS(4908), - [anon_sym_LT_LT_LT] = ACTIONS(4908), - [anon_sym_BQUOTE] = ACTIONS(4908), + [2669] = { + [sym_file_descriptor] = ACTIONS(4765), + [sym__concat] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4767), + [anon_sym_RPAREN] = ACTIONS(4765), + [anon_sym_PIPE_AMP] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_LT] = ACTIONS(4767), + [anon_sym_GT] = ACTIONS(4767), + [anon_sym_GT_GT] = ACTIONS(4765), + [anon_sym_AMP_GT] = ACTIONS(4767), + [anon_sym_AMP_GT_GT] = ACTIONS(4765), + [anon_sym_LT_AMP] = ACTIONS(4765), + [anon_sym_GT_AMP] = ACTIONS(4765), + [anon_sym_LT_LT] = ACTIONS(4767), + [anon_sym_LT_LT_DASH] = ACTIONS(4765), + [anon_sym_LT_LT_LT] = ACTIONS(4765), + [anon_sym_BQUOTE] = ACTIONS(4765), [sym_comment] = ACTIONS(53), }, - [2936] = { - [sym_concatenation] = STATE(839), + [2670] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7014), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6350), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -76923,434 +67489,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2937] = { - [sym_file_descriptor] = ACTIONS(4914), - [sym__concat] = ACTIONS(4914), - [anon_sym_PIPE] = ACTIONS(4916), - [anon_sym_RPAREN] = ACTIONS(4914), - [anon_sym_PIPE_AMP] = ACTIONS(4914), - [anon_sym_AMP_AMP] = ACTIONS(4914), - [anon_sym_PIPE_PIPE] = ACTIONS(4914), - [anon_sym_LT] = ACTIONS(4916), - [anon_sym_GT] = ACTIONS(4916), - [anon_sym_GT_GT] = ACTIONS(4914), - [anon_sym_AMP_GT] = ACTIONS(4916), - [anon_sym_AMP_GT_GT] = ACTIONS(4914), - [anon_sym_LT_AMP] = ACTIONS(4914), - [anon_sym_GT_AMP] = ACTIONS(4914), - [anon_sym_LT_LT] = ACTIONS(4916), - [anon_sym_LT_LT_DASH] = ACTIONS(4914), - [anon_sym_LT_LT_LT] = ACTIONS(4914), - [anon_sym_BQUOTE] = ACTIONS(4914), + [2671] = { + [sym_file_descriptor] = ACTIONS(4771), + [sym__concat] = ACTIONS(4771), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_RPAREN] = ACTIONS(4771), + [anon_sym_PIPE_AMP] = ACTIONS(4771), + [anon_sym_AMP_AMP] = ACTIONS(4771), + [anon_sym_PIPE_PIPE] = ACTIONS(4771), + [anon_sym_LT] = ACTIONS(4773), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4771), + [anon_sym_AMP_GT] = ACTIONS(4773), + [anon_sym_AMP_GT_GT] = ACTIONS(4771), + [anon_sym_LT_AMP] = ACTIONS(4771), + [anon_sym_GT_AMP] = ACTIONS(4771), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_LT_LT_DASH] = ACTIONS(4771), + [anon_sym_LT_LT_LT] = ACTIONS(4771), + [anon_sym_BQUOTE] = ACTIONS(4771), [sym_comment] = ACTIONS(53), }, - [2938] = { - [sym_file_descriptor] = ACTIONS(4918), - [sym__concat] = ACTIONS(4918), - [anon_sym_PIPE] = ACTIONS(4920), - [anon_sym_RPAREN] = ACTIONS(4918), - [anon_sym_PIPE_AMP] = ACTIONS(4918), - [anon_sym_AMP_AMP] = ACTIONS(4918), - [anon_sym_PIPE_PIPE] = ACTIONS(4918), - [anon_sym_LT] = ACTIONS(4920), - [anon_sym_GT] = ACTIONS(4920), - [anon_sym_GT_GT] = ACTIONS(4918), - [anon_sym_AMP_GT] = ACTIONS(4920), - [anon_sym_AMP_GT_GT] = ACTIONS(4918), - [anon_sym_LT_AMP] = ACTIONS(4918), - [anon_sym_GT_AMP] = ACTIONS(4918), - [anon_sym_LT_LT] = ACTIONS(4920), - [anon_sym_LT_LT_DASH] = ACTIONS(4918), - [anon_sym_LT_LT_LT] = ACTIONS(4918), - [anon_sym_BQUOTE] = ACTIONS(4918), + [2672] = { + [sym_file_descriptor] = ACTIONS(4775), + [sym__concat] = ACTIONS(4775), + [anon_sym_PIPE] = ACTIONS(4777), + [anon_sym_RPAREN] = ACTIONS(4775), + [anon_sym_PIPE_AMP] = ACTIONS(4775), + [anon_sym_AMP_AMP] = ACTIONS(4775), + [anon_sym_PIPE_PIPE] = ACTIONS(4775), + [anon_sym_LT] = ACTIONS(4777), + [anon_sym_GT] = ACTIONS(4777), + [anon_sym_GT_GT] = ACTIONS(4775), + [anon_sym_AMP_GT] = ACTIONS(4777), + [anon_sym_AMP_GT_GT] = ACTIONS(4775), + [anon_sym_LT_AMP] = ACTIONS(4775), + [anon_sym_GT_AMP] = ACTIONS(4775), + [anon_sym_LT_LT] = ACTIONS(4777), + [anon_sym_LT_LT_DASH] = ACTIONS(4775), + [anon_sym_LT_LT_LT] = ACTIONS(4775), + [anon_sym_BQUOTE] = ACTIONS(4775), [sym_comment] = ACTIONS(53), }, - [2939] = { - [sym_file_descriptor] = ACTIONS(2752), - [sym__concat] = ACTIONS(2752), - [sym_variable_name] = ACTIONS(2752), - [anon_sym_esac] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_SEMI_SEMI] = ACTIONS(2754), - [anon_sym_PIPE_AMP] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2754), - [anon_sym_GT] = ACTIONS(2754), - [anon_sym_GT_GT] = ACTIONS(2754), - [anon_sym_AMP_GT] = ACTIONS(2754), - [anon_sym_AMP_GT_GT] = ACTIONS(2754), - [anon_sym_LT_AMP] = ACTIONS(2754), - [anon_sym_GT_AMP] = ACTIONS(2754), - [sym__special_characters] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2754), - [anon_sym_DOLLAR] = ACTIONS(2754), - [sym_raw_string] = ACTIONS(2754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2754), - [anon_sym_BQUOTE] = ACTIONS(2754), - [anon_sym_LT_LPAREN] = ACTIONS(2754), - [anon_sym_GT_LPAREN] = ACTIONS(2754), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2754), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_LF] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2754), - }, - [2940] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(7016), - [sym_comment] = ACTIONS(53), - }, - [2941] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(7018), - [sym_comment] = ACTIONS(53), - }, - [2942] = { - [anon_sym_RBRACE] = ACTIONS(7018), - [sym_comment] = ACTIONS(53), - }, - [2943] = { - [sym_concatenation] = STATE(3050), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3050), - [anon_sym_RBRACE] = ACTIONS(7020), - [anon_sym_EQ] = ACTIONS(7022), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(7022), - [anon_sym_COLON_QMARK] = ACTIONS(7022), - [anon_sym_COLON_DASH] = ACTIONS(7022), - [anon_sym_PERCENT] = ACTIONS(7022), - [anon_sym_DASH] = ACTIONS(7022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2944] = { - [sym_file_descriptor] = ACTIONS(2830), - [sym__concat] = ACTIONS(2830), - [sym_variable_name] = ACTIONS(2830), - [anon_sym_esac] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_SEMI_SEMI] = ACTIONS(2832), - [anon_sym_PIPE_AMP] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_PIPE_PIPE] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_GT_GT] = ACTIONS(2832), - [anon_sym_AMP_GT] = ACTIONS(2832), - [anon_sym_AMP_GT_GT] = ACTIONS(2832), - [anon_sym_LT_AMP] = ACTIONS(2832), - [anon_sym_GT_AMP] = ACTIONS(2832), - [sym__special_characters] = ACTIONS(2832), - [anon_sym_DQUOTE] = ACTIONS(2832), - [anon_sym_DOLLAR] = ACTIONS(2832), - [sym_raw_string] = ACTIONS(2832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2832), - [anon_sym_BQUOTE] = ACTIONS(2832), - [anon_sym_LT_LPAREN] = ACTIONS(2832), - [anon_sym_GT_LPAREN] = ACTIONS(2832), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_LF] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2832), - }, - [2945] = { - [sym_concatenation] = STATE(3053), - [sym_string] = STATE(3052), - [sym_simple_expansion] = STATE(3052), - [sym_string_expansion] = STATE(3052), - [sym_expansion] = STATE(3052), - [sym_command_substitution] = STATE(3052), - [sym_process_substitution] = STATE(3052), - [anon_sym_RBRACE] = ACTIONS(7018), - [sym__special_characters] = ACTIONS(7026), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(7028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(7028), - }, - [2946] = { - [sym_file_descriptor] = ACTIONS(2873), - [sym__concat] = ACTIONS(2873), - [sym_variable_name] = ACTIONS(2873), - [anon_sym_esac] = ACTIONS(2875), - [anon_sym_PIPE] = ACTIONS(2875), - [anon_sym_SEMI_SEMI] = ACTIONS(2875), - [anon_sym_PIPE_AMP] = ACTIONS(2875), - [anon_sym_AMP_AMP] = ACTIONS(2875), - [anon_sym_PIPE_PIPE] = ACTIONS(2875), - [anon_sym_LT] = ACTIONS(2875), - [anon_sym_GT] = ACTIONS(2875), - [anon_sym_GT_GT] = ACTIONS(2875), - [anon_sym_AMP_GT] = ACTIONS(2875), - [anon_sym_AMP_GT_GT] = ACTIONS(2875), - [anon_sym_LT_AMP] = ACTIONS(2875), - [anon_sym_GT_AMP] = ACTIONS(2875), - [sym__special_characters] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2875), - [anon_sym_DOLLAR] = ACTIONS(2875), - [sym_raw_string] = ACTIONS(2875), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2875), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2875), - [anon_sym_BQUOTE] = ACTIONS(2875), - [anon_sym_LT_LPAREN] = ACTIONS(2875), - [anon_sym_GT_LPAREN] = ACTIONS(2875), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym_LF] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2875), - }, - [2947] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(7030), - }, - [2948] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7032), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2949] = { - [sym_file_descriptor] = ACTIONS(2881), - [sym__concat] = ACTIONS(2881), - [sym_variable_name] = ACTIONS(2881), - [anon_sym_esac] = ACTIONS(2883), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_SEMI_SEMI] = ACTIONS(2883), - [anon_sym_PIPE_AMP] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_PIPE_PIPE] = ACTIONS(2883), - [anon_sym_LT] = ACTIONS(2883), - [anon_sym_GT] = ACTIONS(2883), - [anon_sym_GT_GT] = ACTIONS(2883), - [anon_sym_AMP_GT] = ACTIONS(2883), - [anon_sym_AMP_GT_GT] = ACTIONS(2883), - [anon_sym_LT_AMP] = ACTIONS(2883), - [anon_sym_GT_AMP] = ACTIONS(2883), - [sym__special_characters] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2883), - [sym_raw_string] = ACTIONS(2883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2883), - [anon_sym_BQUOTE] = ACTIONS(2883), - [anon_sym_LT_LPAREN] = ACTIONS(2883), - [anon_sym_GT_LPAREN] = ACTIONS(2883), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2883), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym_LF] = ACTIONS(2881), - [anon_sym_AMP] = ACTIONS(2883), - }, - [2950] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(7034), - }, - [2951] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7036), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2952] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(7038), - }, - [2953] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7018), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2954] = { - [sym_concatenation] = STATE(3060), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3060), - [anon_sym_RBRACE] = ACTIONS(7040), - [anon_sym_EQ] = ACTIONS(7042), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7044), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(7042), - [anon_sym_COLON_QMARK] = ACTIONS(7042), - [anon_sym_COLON_DASH] = ACTIONS(7042), - [anon_sym_PERCENT] = ACTIONS(7042), - [anon_sym_DASH] = ACTIONS(7042), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2955] = { - [sym_file_descriptor] = ACTIONS(2897), - [sym__concat] = ACTIONS(2897), - [sym_variable_name] = ACTIONS(2897), - [anon_sym_esac] = ACTIONS(2899), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_SEMI_SEMI] = ACTIONS(2899), - [anon_sym_PIPE_AMP] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_PIPE_PIPE] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [anon_sym_GT_GT] = ACTIONS(2899), - [anon_sym_AMP_GT] = ACTIONS(2899), - [anon_sym_AMP_GT_GT] = ACTIONS(2899), - [anon_sym_LT_AMP] = ACTIONS(2899), - [anon_sym_GT_AMP] = ACTIONS(2899), - [sym__special_characters] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2899), - [anon_sym_DOLLAR] = ACTIONS(2899), - [sym_raw_string] = ACTIONS(2899), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2899), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2899), - [anon_sym_BQUOTE] = ACTIONS(2899), - [anon_sym_LT_LPAREN] = ACTIONS(2899), - [anon_sym_GT_LPAREN] = ACTIONS(2899), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2899), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym_LF] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2899), - }, - [2956] = { - [sym_concatenation] = STATE(3062), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3062), - [anon_sym_RBRACE] = ACTIONS(7046), - [anon_sym_EQ] = ACTIONS(7048), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7050), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(7048), - [anon_sym_COLON_QMARK] = ACTIONS(7048), - [anon_sym_COLON_DASH] = ACTIONS(7048), - [anon_sym_PERCENT] = ACTIONS(7048), - [anon_sym_DASH] = ACTIONS(7048), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2957] = { - [aux_sym_concatenation_repeat1] = STATE(2960), - [sym__concat] = ACTIONS(6826), + [2673] = { + [aux_sym_concatenation_repeat1] = STATE(2676), + [sym__concat] = ACTIONS(6233), [anon_sym_esac] = ACTIONS(1091), [anon_sym_PIPE] = ACTIONS(1091), [anon_sym_SEMI_SEMI] = ACTIONS(1091), @@ -77362,9 +67545,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1089), [anon_sym_AMP] = ACTIONS(1091), }, - [2958] = { - [aux_sym_concatenation_repeat1] = STATE(2960), - [sym__concat] = ACTIONS(6826), + [2674] = { + [aux_sym_concatenation_repeat1] = STATE(2676), + [sym__concat] = ACTIONS(6233), [anon_sym_esac] = ACTIONS(1095), [anon_sym_PIPE] = ACTIONS(1095), [anon_sym_SEMI_SEMI] = ACTIONS(1095), @@ -77376,28 +67559,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1093), [anon_sym_AMP] = ACTIONS(1095), }, - [2959] = { - [sym_string] = STATE(3063), - [sym_simple_expansion] = STATE(3063), - [sym_string_expansion] = STATE(3063), - [sym_expansion] = STATE(3063), - [sym_command_substitution] = STATE(3063), - [sym_process_substitution] = STATE(3063), - [sym__special_characters] = ACTIONS(7052), - [anon_sym_DQUOTE] = ACTIONS(6533), - [anon_sym_DOLLAR] = ACTIONS(6535), - [sym_raw_string] = ACTIONS(7052), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6539), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6541), - [anon_sym_BQUOTE] = ACTIONS(6543), - [anon_sym_LT_LPAREN] = ACTIONS(6545), - [anon_sym_GT_LPAREN] = ACTIONS(6545), + [2675] = { + [sym_string] = STATE(2734), + [sym_simple_expansion] = STATE(2734), + [sym_string_expansion] = STATE(2734), + [sym_expansion] = STATE(2734), + [sym_command_substitution] = STATE(2734), + [sym_process_substitution] = STATE(2734), + [sym__special_characters] = ACTIONS(6352), + [anon_sym_DQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR] = ACTIONS(6063), + [sym_raw_string] = ACTIONS(6352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6069), + [anon_sym_BQUOTE] = ACTIONS(6071), + [anon_sym_LT_LPAREN] = ACTIONS(6073), + [anon_sym_GT_LPAREN] = ACTIONS(6073), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(7052), + [sym_word] = ACTIONS(6352), }, - [2960] = { - [aux_sym_concatenation_repeat1] = STATE(3064), - [sym__concat] = ACTIONS(6826), + [2676] = { + [aux_sym_concatenation_repeat1] = STATE(2735), + [sym__concat] = ACTIONS(6233), [anon_sym_esac] = ACTIONS(695), [anon_sym_PIPE] = ACTIONS(695), [anon_sym_SEMI_SEMI] = ACTIONS(695), @@ -77409,7 +67592,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(693), [anon_sym_AMP] = ACTIONS(695), }, - [2961] = { + [2677] = { [sym__concat] = ACTIONS(697), [anon_sym_esac] = ACTIONS(699), [anon_sym_PIPE] = ACTIONS(699), @@ -77422,12 +67605,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(697), [anon_sym_AMP] = ACTIONS(699), }, - [2962] = { + [2678] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(7054), + [anon_sym_DQUOTE] = ACTIONS(6354), [anon_sym_DOLLAR] = ACTIONS(229), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), @@ -77435,7 +67618,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(237), [sym_comment] = ACTIONS(177), }, - [2963] = { + [2679] = { [sym__concat] = ACTIONS(727), [anon_sym_esac] = ACTIONS(729), [anon_sym_PIPE] = ACTIONS(729), @@ -77448,7 +67631,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(727), [anon_sym_AMP] = ACTIONS(729), }, - [2964] = { + [2680] = { [sym__concat] = ACTIONS(731), [anon_sym_esac] = ACTIONS(733), [anon_sym_PIPE] = ACTIONS(733), @@ -77461,7 +67644,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(731), [anon_sym_AMP] = ACTIONS(733), }, - [2965] = { + [2681] = { [sym__concat] = ACTIONS(735), [anon_sym_esac] = ACTIONS(737), [anon_sym_PIPE] = ACTIONS(737), @@ -77474,34 +67657,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(735), [anon_sym_AMP] = ACTIONS(737), }, - [2966] = { + [2682] = { [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(7056), + [anon_sym_EQ] = ACTIONS(6356), [sym_comment] = ACTIONS(53), }, - [2967] = { - [sym_concatenation] = STATE(3069), + [2683] = { + [sym_concatenation] = STATE(2740), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3069), - [anon_sym_RBRACE] = ACTIONS(7058), - [anon_sym_EQ] = ACTIONS(7060), + [aux_sym_expansion_repeat1] = STATE(2740), + [anon_sym_RBRACE] = ACTIONS(6358), + [anon_sym_EQ] = ACTIONS(6360), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7062), + [anon_sym_POUND] = ACTIONS(6362), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(7064), - [anon_sym_COLON] = ACTIONS(7060), - [anon_sym_COLON_QMARK] = ACTIONS(7060), - [anon_sym_COLON_DASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7060), - [anon_sym_DASH] = ACTIONS(7060), + [aux_sym_SLASH] = ACTIONS(6364), + [anon_sym_COLON] = ACTIONS(6360), + [anon_sym_COLON_QMARK] = ACTIONS(6360), + [anon_sym_COLON_DASH] = ACTIONS(6360), + [anon_sym_PERCENT] = ACTIONS(6360), + [anon_sym_DASH] = ACTIONS(6360), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -77509,42 +67692,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2968] = { - [sym_subscript] = STATE(3073), - [sym_variable_name] = ACTIONS(7066), - [anon_sym_DOLLAR] = ACTIONS(7068), - [anon_sym_DASH] = ACTIONS(7068), + [2684] = { + [sym_subscript] = STATE(2744), + [sym_variable_name] = ACTIONS(6366), + [anon_sym_DOLLAR] = ACTIONS(6368), + [anon_sym_DASH] = ACTIONS(6368), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7070), - [anon_sym_STAR] = ACTIONS(7068), - [anon_sym_AT] = ACTIONS(7068), - [anon_sym_QMARK] = ACTIONS(7068), - [anon_sym_0] = ACTIONS(7072), - [anon_sym__] = ACTIONS(7072), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6370), + [anon_sym_STAR] = ACTIONS(6368), + [anon_sym_AT] = ACTIONS(6368), + [anon_sym_QMARK] = ACTIONS(6368), + [anon_sym_0] = ACTIONS(6372), + [anon_sym__] = ACTIONS(6372), }, - [2969] = { - [sym_concatenation] = STATE(3076), + [2685] = { + [sym_concatenation] = STATE(2747), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3076), - [anon_sym_RBRACE] = ACTIONS(7074), - [anon_sym_EQ] = ACTIONS(7076), + [aux_sym_expansion_repeat1] = STATE(2747), + [anon_sym_RBRACE] = ACTIONS(6374), + [anon_sym_EQ] = ACTIONS(6376), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7078), + [anon_sym_POUND] = ACTIONS(6378), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(7080), - [anon_sym_COLON] = ACTIONS(7076), - [anon_sym_COLON_QMARK] = ACTIONS(7076), - [anon_sym_COLON_DASH] = ACTIONS(7076), - [anon_sym_PERCENT] = ACTIONS(7076), - [anon_sym_DASH] = ACTIONS(7076), + [aux_sym_SLASH] = ACTIONS(6380), + [anon_sym_COLON] = ACTIONS(6376), + [anon_sym_COLON_QMARK] = ACTIONS(6376), + [anon_sym_COLON_DASH] = ACTIONS(6376), + [anon_sym_PERCENT] = ACTIONS(6376), + [anon_sym_DASH] = ACTIONS(6376), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -77552,29 +67735,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2970] = { - [sym_concatenation] = STATE(3079), + [2686] = { + [sym_concatenation] = STATE(2750), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3079), - [anon_sym_RBRACE] = ACTIONS(7082), - [anon_sym_EQ] = ACTIONS(7084), + [aux_sym_expansion_repeat1] = STATE(2750), + [anon_sym_RBRACE] = ACTIONS(6382), + [anon_sym_EQ] = ACTIONS(6384), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7086), + [anon_sym_POUND] = ACTIONS(6386), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(7088), - [anon_sym_COLON] = ACTIONS(7084), - [anon_sym_COLON_QMARK] = ACTIONS(7084), - [anon_sym_COLON_DASH] = ACTIONS(7084), - [anon_sym_PERCENT] = ACTIONS(7084), - [anon_sym_DASH] = ACTIONS(7084), + [aux_sym_SLASH] = ACTIONS(6388), + [anon_sym_COLON] = ACTIONS(6384), + [anon_sym_COLON_QMARK] = ACTIONS(6384), + [anon_sym_COLON_DASH] = ACTIONS(6384), + [anon_sym_PERCENT] = ACTIONS(6384), + [anon_sym_DASH] = ACTIONS(6384), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -77582,19 +67765,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2971] = { + [2687] = { [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(7090), + [anon_sym_RPAREN] = ACTIONS(6390), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), [sym_comment] = ACTIONS(53), }, - [2972] = { + [2688] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(7090), + [anon_sym_RPAREN] = ACTIONS(6390), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -77617,15 +67800,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(369), }, - [2973] = { + [2689] = { [anon_sym_PIPE] = ACTIONS(923), [anon_sym_PIPE_AMP] = ACTIONS(925), [anon_sym_AMP_AMP] = ACTIONS(927), [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_BQUOTE] = ACTIONS(7090), + [anon_sym_BQUOTE] = ACTIONS(6390), [sym_comment] = ACTIONS(53), }, - [2974] = { + [2690] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(923), @@ -77645,25 +67828,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(369), [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(7090), + [anon_sym_BQUOTE] = ACTIONS(6390), [anon_sym_LT_LPAREN] = ACTIONS(369), [anon_sym_GT_LPAREN] = ACTIONS(369), [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(369), }, - [2975] = { + [2691] = { [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(7092), + [anon_sym_RPAREN] = ACTIONS(6392), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), [sym_comment] = ACTIONS(53), }, - [2976] = { + [2692] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(7092), + [anon_sym_RPAREN] = ACTIONS(6392), [anon_sym_PIPE_AMP] = ACTIONS(873), [anon_sym_AMP_AMP] = ACTIONS(875), [anon_sym_PIPE_PIPE] = ACTIONS(875), @@ -77686,10 +67869,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(369), }, - [2977] = { - [aux_sym_concatenation_repeat1] = STATE(2979), + [2693] = { + [aux_sym_concatenation_repeat1] = STATE(2695), [sym_file_descriptor] = ACTIONS(1089), - [sym__concat] = ACTIONS(3687), + [sym__concat] = ACTIONS(3599), [anon_sym_esac] = ACTIONS(1091), [anon_sym_PIPE] = ACTIONS(1091), [anon_sym_SEMI_SEMI] = ACTIONS(1091), @@ -77711,10 +67894,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1089), [anon_sym_AMP] = ACTIONS(1091), }, - [2978] = { - [aux_sym_concatenation_repeat1] = STATE(2979), + [2694] = { + [aux_sym_concatenation_repeat1] = STATE(2695), [sym_file_descriptor] = ACTIONS(1093), - [sym__concat] = ACTIONS(3687), + [sym__concat] = ACTIONS(3599), [anon_sym_esac] = ACTIONS(1095), [anon_sym_PIPE] = ACTIONS(1095), [anon_sym_SEMI_SEMI] = ACTIONS(1095), @@ -77736,10 +67919,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1093), [anon_sym_AMP] = ACTIONS(1095), }, - [2979] = { - [aux_sym_concatenation_repeat1] = STATE(3082), + [2695] = { + [aux_sym_concatenation_repeat1] = STATE(2753), [sym_file_descriptor] = ACTIONS(693), - [sym__concat] = ACTIONS(3687), + [sym__concat] = ACTIONS(3599), [anon_sym_esac] = ACTIONS(695), [anon_sym_PIPE] = ACTIONS(695), [anon_sym_SEMI_SEMI] = ACTIONS(695), @@ -77761,127 +67944,127 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(693), [anon_sym_AMP] = ACTIONS(695), }, - [2980] = { - [sym_variable_name] = ACTIONS(3379), - [anon_sym_esac] = ACTIONS(3381), - [anon_sym_PIPE] = ACTIONS(3381), - [anon_sym_SEMI_SEMI] = ACTIONS(3381), - [anon_sym_PIPE_AMP] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_PIPE_PIPE] = ACTIONS(3381), - [sym__special_characters] = ACTIONS(3381), - [anon_sym_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3381), - [sym_raw_string] = ACTIONS(3381), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3381), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3381), - [anon_sym_BQUOTE] = ACTIONS(3381), - [anon_sym_LT_LPAREN] = ACTIONS(3381), - [anon_sym_GT_LPAREN] = ACTIONS(3381), + [2696] = { + [sym_variable_name] = ACTIONS(3337), + [anon_sym_esac] = ACTIONS(3339), + [anon_sym_PIPE] = ACTIONS(3339), + [anon_sym_SEMI_SEMI] = ACTIONS(3339), + [anon_sym_PIPE_AMP] = ACTIONS(3339), + [anon_sym_AMP_AMP] = ACTIONS(3339), + [anon_sym_PIPE_PIPE] = ACTIONS(3339), + [sym__special_characters] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(3339), + [anon_sym_DOLLAR] = ACTIONS(3339), + [sym_raw_string] = ACTIONS(3339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3339), + [anon_sym_BQUOTE] = ACTIONS(3339), + [anon_sym_LT_LPAREN] = ACTIONS(3339), + [anon_sym_GT_LPAREN] = ACTIONS(3339), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3381), - [sym_word] = ACTIONS(3381), - [anon_sym_SEMI] = ACTIONS(3381), - [anon_sym_LF] = ACTIONS(3379), - [anon_sym_AMP] = ACTIONS(3381), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3339), + [sym_word] = ACTIONS(3339), + [anon_sym_SEMI] = ACTIONS(3339), + [anon_sym_LF] = ACTIONS(3337), + [anon_sym_AMP] = ACTIONS(3339), }, - [2981] = { - [sym__concat] = ACTIONS(3917), - [sym_variable_name] = ACTIONS(3917), - [anon_sym_esac] = ACTIONS(3919), - [anon_sym_PIPE] = ACTIONS(3919), - [anon_sym_SEMI_SEMI] = ACTIONS(3919), - [anon_sym_PIPE_AMP] = ACTIONS(3919), - [anon_sym_AMP_AMP] = ACTIONS(3919), - [anon_sym_PIPE_PIPE] = ACTIONS(3919), - [sym__special_characters] = ACTIONS(3919), - [anon_sym_DQUOTE] = ACTIONS(3919), - [anon_sym_DOLLAR] = ACTIONS(3919), - [sym_raw_string] = ACTIONS(3919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3919), - [anon_sym_BQUOTE] = ACTIONS(3919), - [anon_sym_LT_LPAREN] = ACTIONS(3919), - [anon_sym_GT_LPAREN] = ACTIONS(3919), + [2697] = { + [sym__concat] = ACTIONS(3829), + [sym_variable_name] = ACTIONS(3829), + [anon_sym_esac] = ACTIONS(3831), + [anon_sym_PIPE] = ACTIONS(3831), + [anon_sym_SEMI_SEMI] = 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(3831), + [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(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3919), - [sym_word] = ACTIONS(3919), - [anon_sym_SEMI] = ACTIONS(3919), - [anon_sym_LF] = ACTIONS(3917), - [anon_sym_AMP] = ACTIONS(3919), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3831), + [sym_word] = ACTIONS(3831), + [anon_sym_SEMI] = ACTIONS(3831), + [anon_sym_LF] = ACTIONS(3829), + [anon_sym_AMP] = ACTIONS(3831), }, - [2982] = { - [sym__concat] = ACTIONS(3923), - [sym_variable_name] = ACTIONS(3923), - [anon_sym_esac] = ACTIONS(3925), - [anon_sym_PIPE] = ACTIONS(3925), - [anon_sym_SEMI_SEMI] = ACTIONS(3925), - [anon_sym_PIPE_AMP] = ACTIONS(3925), - [anon_sym_AMP_AMP] = ACTIONS(3925), - [anon_sym_PIPE_PIPE] = ACTIONS(3925), - [sym__special_characters] = ACTIONS(3925), - [anon_sym_DQUOTE] = ACTIONS(3925), - [anon_sym_DOLLAR] = ACTIONS(3925), - [sym_raw_string] = ACTIONS(3925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3925), - [anon_sym_BQUOTE] = ACTIONS(3925), - [anon_sym_LT_LPAREN] = ACTIONS(3925), - [anon_sym_GT_LPAREN] = ACTIONS(3925), + [2698] = { + [sym__concat] = ACTIONS(3835), + [sym_variable_name] = ACTIONS(3835), + [anon_sym_esac] = ACTIONS(3837), + [anon_sym_PIPE] = ACTIONS(3837), + [anon_sym_SEMI_SEMI] = ACTIONS(3837), + [anon_sym_PIPE_AMP] = ACTIONS(3837), + [anon_sym_AMP_AMP] = ACTIONS(3837), + [anon_sym_PIPE_PIPE] = ACTIONS(3837), + [sym__special_characters] = ACTIONS(3837), + [anon_sym_DQUOTE] = ACTIONS(3837), + [anon_sym_DOLLAR] = ACTIONS(3837), + [sym_raw_string] = ACTIONS(3837), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3837), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3837), + [anon_sym_BQUOTE] = ACTIONS(3837), + [anon_sym_LT_LPAREN] = ACTIONS(3837), + [anon_sym_GT_LPAREN] = ACTIONS(3837), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3925), - [sym_word] = ACTIONS(3925), - [anon_sym_SEMI] = ACTIONS(3925), - [anon_sym_LF] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3925), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3837), + [sym_word] = ACTIONS(3837), + [anon_sym_SEMI] = ACTIONS(3837), + [anon_sym_LF] = ACTIONS(3835), + [anon_sym_AMP] = ACTIONS(3837), }, - [2983] = { - [sym__concat] = ACTIONS(4008), - [sym_variable_name] = ACTIONS(4008), - [anon_sym_esac] = ACTIONS(4010), - [anon_sym_PIPE] = ACTIONS(4010), - [anon_sym_SEMI_SEMI] = ACTIONS(4010), - [anon_sym_PIPE_AMP] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym__special_characters] = ACTIONS(4010), - [anon_sym_DQUOTE] = ACTIONS(4010), - [anon_sym_DOLLAR] = ACTIONS(4010), - [sym_raw_string] = ACTIONS(4010), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4010), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4010), - [anon_sym_BQUOTE] = ACTIONS(4010), - [anon_sym_LT_LPAREN] = ACTIONS(4010), - [anon_sym_GT_LPAREN] = ACTIONS(4010), + [2699] = { + [sym__concat] = ACTIONS(3920), + [sym_variable_name] = ACTIONS(3920), + [anon_sym_esac] = ACTIONS(3922), + [anon_sym_PIPE] = ACTIONS(3922), + [anon_sym_SEMI_SEMI] = ACTIONS(3922), + [anon_sym_PIPE_AMP] = ACTIONS(3922), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3922), + [sym__special_characters] = ACTIONS(3922), + [anon_sym_DQUOTE] = ACTIONS(3922), + [anon_sym_DOLLAR] = ACTIONS(3922), + [sym_raw_string] = ACTIONS(3922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3922), + [anon_sym_BQUOTE] = ACTIONS(3922), + [anon_sym_LT_LPAREN] = ACTIONS(3922), + [anon_sym_GT_LPAREN] = ACTIONS(3922), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4010), - [sym_word] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4010), - [anon_sym_LF] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4010), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3922), + [sym_word] = ACTIONS(3922), + [anon_sym_SEMI] = ACTIONS(3922), + [anon_sym_LF] = ACTIONS(3920), + [anon_sym_AMP] = ACTIONS(3922), }, - [2984] = { - [sym_concatenation] = STATE(839), + [2700] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7094), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6394), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -77889,44 +68072,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2985] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(7096), + [2701] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(6396), [sym_comment] = ACTIONS(53), }, - [2986] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(7098), + [2702] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(6398), [sym_comment] = ACTIONS(53), }, - [2987] = { - [anon_sym_RBRACE] = ACTIONS(7098), + [2703] = { + [anon_sym_RBRACE] = ACTIONS(6398), [sym_comment] = ACTIONS(53), }, - [2988] = { - [sym_concatenation] = STATE(3087), + [2704] = { + [sym_concatenation] = STATE(2758), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3087), - [anon_sym_RBRACE] = ACTIONS(7100), - [anon_sym_EQ] = ACTIONS(7102), + [aux_sym_expansion_repeat1] = STATE(2758), + [anon_sym_RBRACE] = ACTIONS(6400), + [anon_sym_EQ] = ACTIONS(6402), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7104), + [anon_sym_POUND] = ACTIONS(6404), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(7102), - [anon_sym_COLON_QMARK] = ACTIONS(7102), - [anon_sym_COLON_DASH] = ACTIONS(7102), - [anon_sym_PERCENT] = ACTIONS(7102), - [anon_sym_DASH] = ACTIONS(7102), + [anon_sym_COLON] = ACTIONS(6402), + [anon_sym_COLON_QMARK] = ACTIONS(6402), + [anon_sym_COLON_DASH] = ACTIONS(6402), + [anon_sym_PERCENT] = ACTIONS(6402), + [anon_sym_DASH] = ACTIONS(6402), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -77934,53 +68117,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2989] = { - [sym__concat] = ACTIONS(4024), - [sym_variable_name] = ACTIONS(4024), - [anon_sym_esac] = ACTIONS(4026), - [anon_sym_PIPE] = ACTIONS(4026), - [anon_sym_SEMI_SEMI] = ACTIONS(4026), - [anon_sym_PIPE_AMP] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym__special_characters] = ACTIONS(4026), - [anon_sym_DQUOTE] = ACTIONS(4026), - [anon_sym_DOLLAR] = ACTIONS(4026), - [sym_raw_string] = ACTIONS(4026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4026), - [anon_sym_BQUOTE] = ACTIONS(4026), - [anon_sym_LT_LPAREN] = ACTIONS(4026), - [anon_sym_GT_LPAREN] = ACTIONS(4026), + [2705] = { + [sym__concat] = ACTIONS(3936), + [sym_variable_name] = ACTIONS(3936), + [anon_sym_esac] = ACTIONS(3938), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_SEMI_SEMI] = ACTIONS(3938), + [anon_sym_PIPE_AMP] = ACTIONS(3938), + [anon_sym_AMP_AMP] = ACTIONS(3938), + [anon_sym_PIPE_PIPE] = ACTIONS(3938), + [sym__special_characters] = ACTIONS(3938), + [anon_sym_DQUOTE] = ACTIONS(3938), + [anon_sym_DOLLAR] = ACTIONS(3938), + [sym_raw_string] = ACTIONS(3938), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3938), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3938), + [anon_sym_BQUOTE] = ACTIONS(3938), + [anon_sym_LT_LPAREN] = ACTIONS(3938), + [anon_sym_GT_LPAREN] = ACTIONS(3938), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4026), - [sym_word] = ACTIONS(4026), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym_LF] = ACTIONS(4024), - [anon_sym_AMP] = ACTIONS(4026), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3938), + [sym_word] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(3938), + [anon_sym_LF] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3938), }, - [2990] = { - [sym_concatenation] = STATE(3089), + [2706] = { + [sym_concatenation] = STATE(2760), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3089), - [anon_sym_RBRACE] = ACTIONS(7106), - [anon_sym_EQ] = ACTIONS(7108), + [aux_sym_expansion_repeat1] = STATE(2760), + [anon_sym_RBRACE] = ACTIONS(6406), + [anon_sym_EQ] = ACTIONS(6408), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7110), + [anon_sym_POUND] = ACTIONS(6410), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(7108), - [anon_sym_COLON_QMARK] = ACTIONS(7108), - [anon_sym_COLON_DASH] = ACTIONS(7108), - [anon_sym_PERCENT] = ACTIONS(7108), - [anon_sym_DASH] = ACTIONS(7108), + [anon_sym_COLON] = ACTIONS(6408), + [anon_sym_COLON_QMARK] = ACTIONS(6408), + [anon_sym_COLON_DASH] = ACTIONS(6408), + [anon_sym_PERCENT] = ACTIONS(6408), + [anon_sym_DASH] = ACTIONS(6408), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -77988,53 +68171,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2991] = { - [sym__concat] = ACTIONS(4034), - [sym_variable_name] = ACTIONS(4034), - [anon_sym_esac] = ACTIONS(4036), - [anon_sym_PIPE] = ACTIONS(4036), - [anon_sym_SEMI_SEMI] = ACTIONS(4036), - [anon_sym_PIPE_AMP] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [sym__special_characters] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_DOLLAR] = ACTIONS(4036), - [sym_raw_string] = ACTIONS(4036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4036), - [anon_sym_BQUOTE] = ACTIONS(4036), - [anon_sym_LT_LPAREN] = ACTIONS(4036), - [anon_sym_GT_LPAREN] = ACTIONS(4036), + [2707] = { + [sym__concat] = ACTIONS(3946), + [sym_variable_name] = ACTIONS(3946), + [anon_sym_esac] = ACTIONS(3948), + [anon_sym_PIPE] = ACTIONS(3948), + [anon_sym_SEMI_SEMI] = ACTIONS(3948), + [anon_sym_PIPE_AMP] = ACTIONS(3948), + [anon_sym_AMP_AMP] = ACTIONS(3948), + [anon_sym_PIPE_PIPE] = ACTIONS(3948), + [sym__special_characters] = ACTIONS(3948), + [anon_sym_DQUOTE] = ACTIONS(3948), + [anon_sym_DOLLAR] = ACTIONS(3948), + [sym_raw_string] = ACTIONS(3948), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3948), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3948), + [anon_sym_BQUOTE] = ACTIONS(3948), + [anon_sym_LT_LPAREN] = ACTIONS(3948), + [anon_sym_GT_LPAREN] = ACTIONS(3948), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4036), - [sym_word] = ACTIONS(4036), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_LF] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4036), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3948), + [sym_word] = ACTIONS(3948), + [anon_sym_SEMI] = ACTIONS(3948), + [anon_sym_LF] = ACTIONS(3946), + [anon_sym_AMP] = ACTIONS(3948), }, - [2992] = { - [sym_concatenation] = STATE(3091), + [2708] = { + [sym_concatenation] = STATE(2762), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3091), - [anon_sym_RBRACE] = ACTIONS(7112), - [anon_sym_EQ] = ACTIONS(7114), + [aux_sym_expansion_repeat1] = STATE(2762), + [anon_sym_RBRACE] = ACTIONS(6412), + [anon_sym_EQ] = ACTIONS(6414), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7116), + [anon_sym_POUND] = ACTIONS(6416), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(7114), - [anon_sym_COLON_QMARK] = ACTIONS(7114), - [anon_sym_COLON_DASH] = ACTIONS(7114), - [anon_sym_PERCENT] = ACTIONS(7114), - [anon_sym_DASH] = ACTIONS(7114), + [anon_sym_COLON] = ACTIONS(6414), + [anon_sym_COLON_QMARK] = ACTIONS(6414), + [anon_sym_COLON_DASH] = ACTIONS(6414), + [anon_sym_PERCENT] = ACTIONS(6414), + [anon_sym_DASH] = ACTIONS(6414), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -78042,53 +68225,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2993] = { - [sym__concat] = ACTIONS(4044), - [sym_variable_name] = ACTIONS(4044), - [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__special_characters] = ACTIONS(4046), - [anon_sym_DQUOTE] = ACTIONS(4046), - [anon_sym_DOLLAR] = ACTIONS(4046), - [sym_raw_string] = ACTIONS(4046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4046), - [anon_sym_BQUOTE] = ACTIONS(4046), - [anon_sym_LT_LPAREN] = ACTIONS(4046), - [anon_sym_GT_LPAREN] = ACTIONS(4046), + [2709] = { + [sym__concat] = ACTIONS(3956), + [sym_variable_name] = ACTIONS(3956), + [anon_sym_esac] = ACTIONS(3958), + [anon_sym_PIPE] = ACTIONS(3958), + [anon_sym_SEMI_SEMI] = ACTIONS(3958), + [anon_sym_PIPE_AMP] = ACTIONS(3958), + [anon_sym_AMP_AMP] = ACTIONS(3958), + [anon_sym_PIPE_PIPE] = ACTIONS(3958), + [sym__special_characters] = ACTIONS(3958), + [anon_sym_DQUOTE] = ACTIONS(3958), + [anon_sym_DOLLAR] = ACTIONS(3958), + [sym_raw_string] = ACTIONS(3958), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3958), + [anon_sym_BQUOTE] = ACTIONS(3958), + [anon_sym_LT_LPAREN] = ACTIONS(3958), + [anon_sym_GT_LPAREN] = ACTIONS(3958), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4046), - [sym_word] = ACTIONS(4046), - [anon_sym_SEMI] = ACTIONS(4046), - [anon_sym_LF] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4046), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3958), + [sym_word] = ACTIONS(3958), + [anon_sym_SEMI] = ACTIONS(3958), + [anon_sym_LF] = ACTIONS(3956), + [anon_sym_AMP] = ACTIONS(3958), }, - [2994] = { - [sym_concatenation] = STATE(839), + [2710] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7118), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6418), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -78096,53 +68279,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2995] = { - [sym__concat] = ACTIONS(4050), - [sym_variable_name] = ACTIONS(4050), - [anon_sym_esac] = ACTIONS(4052), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_SEMI_SEMI] = ACTIONS(4052), - [anon_sym_PIPE_AMP] = ACTIONS(4052), - [anon_sym_AMP_AMP] = ACTIONS(4052), - [anon_sym_PIPE_PIPE] = ACTIONS(4052), - [sym__special_characters] = ACTIONS(4052), - [anon_sym_DQUOTE] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4052), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4052), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4052), - [anon_sym_BQUOTE] = ACTIONS(4052), - [anon_sym_LT_LPAREN] = ACTIONS(4052), - [anon_sym_GT_LPAREN] = ACTIONS(4052), + [2711] = { + [sym__concat] = ACTIONS(3962), + [sym_variable_name] = ACTIONS(3962), + [anon_sym_esac] = ACTIONS(3964), + [anon_sym_PIPE] = ACTIONS(3964), + [anon_sym_SEMI_SEMI] = ACTIONS(3964), + [anon_sym_PIPE_AMP] = ACTIONS(3964), + [anon_sym_AMP_AMP] = ACTIONS(3964), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [sym__special_characters] = ACTIONS(3964), + [anon_sym_DQUOTE] = ACTIONS(3964), + [anon_sym_DOLLAR] = ACTIONS(3964), + [sym_raw_string] = ACTIONS(3964), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3964), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3964), + [anon_sym_BQUOTE] = ACTIONS(3964), + [anon_sym_LT_LPAREN] = ACTIONS(3964), + [anon_sym_GT_LPAREN] = ACTIONS(3964), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4052), - [sym_word] = ACTIONS(4052), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4052), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3964), + [sym_word] = ACTIONS(3964), + [anon_sym_SEMI] = ACTIONS(3964), + [anon_sym_LF] = ACTIONS(3962), + [anon_sym_AMP] = ACTIONS(3964), }, - [2996] = { - [sym_concatenation] = STATE(839), + [2712] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7120), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6420), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -78150,100 +68333,100 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [2997] = { - [sym__concat] = ACTIONS(3917), - [anon_sym_esac] = ACTIONS(3919), - [anon_sym_PIPE] = ACTIONS(3919), - [anon_sym_SEMI_SEMI] = ACTIONS(3919), - [anon_sym_PIPE_AMP] = ACTIONS(3919), - [anon_sym_AMP_AMP] = ACTIONS(3919), - [anon_sym_PIPE_PIPE] = ACTIONS(3919), - [sym__special_characters] = ACTIONS(3919), - [anon_sym_DQUOTE] = ACTIONS(3919), - [anon_sym_DOLLAR] = ACTIONS(3919), - [sym_raw_string] = ACTIONS(3919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3919), - [anon_sym_BQUOTE] = ACTIONS(3919), - [anon_sym_LT_LPAREN] = ACTIONS(3919), - [anon_sym_GT_LPAREN] = ACTIONS(3919), + [2713] = { + [sym__concat] = ACTIONS(3829), + [anon_sym_esac] = ACTIONS(3831), + [anon_sym_PIPE] = ACTIONS(3831), + [anon_sym_SEMI_SEMI] = 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(3831), + [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(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3919), - [sym_word] = ACTIONS(3919), - [anon_sym_SEMI] = ACTIONS(3919), - [anon_sym_LF] = ACTIONS(3917), - [anon_sym_AMP] = ACTIONS(3919), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3831), + [sym_word] = ACTIONS(3831), + [anon_sym_SEMI] = ACTIONS(3831), + [anon_sym_LF] = ACTIONS(3829), + [anon_sym_AMP] = ACTIONS(3831), }, - [2998] = { - [sym__concat] = ACTIONS(3923), - [anon_sym_esac] = ACTIONS(3925), - [anon_sym_PIPE] = ACTIONS(3925), - [anon_sym_SEMI_SEMI] = ACTIONS(3925), - [anon_sym_PIPE_AMP] = ACTIONS(3925), - [anon_sym_AMP_AMP] = ACTIONS(3925), - [anon_sym_PIPE_PIPE] = ACTIONS(3925), - [sym__special_characters] = ACTIONS(3925), - [anon_sym_DQUOTE] = ACTIONS(3925), - [anon_sym_DOLLAR] = ACTIONS(3925), - [sym_raw_string] = ACTIONS(3925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3925), - [anon_sym_BQUOTE] = ACTIONS(3925), - [anon_sym_LT_LPAREN] = ACTIONS(3925), - [anon_sym_GT_LPAREN] = ACTIONS(3925), + [2714] = { + [sym__concat] = ACTIONS(3835), + [anon_sym_esac] = ACTIONS(3837), + [anon_sym_PIPE] = ACTIONS(3837), + [anon_sym_SEMI_SEMI] = ACTIONS(3837), + [anon_sym_PIPE_AMP] = ACTIONS(3837), + [anon_sym_AMP_AMP] = ACTIONS(3837), + [anon_sym_PIPE_PIPE] = ACTIONS(3837), + [sym__special_characters] = ACTIONS(3837), + [anon_sym_DQUOTE] = ACTIONS(3837), + [anon_sym_DOLLAR] = ACTIONS(3837), + [sym_raw_string] = ACTIONS(3837), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3837), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3837), + [anon_sym_BQUOTE] = ACTIONS(3837), + [anon_sym_LT_LPAREN] = ACTIONS(3837), + [anon_sym_GT_LPAREN] = ACTIONS(3837), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3925), - [sym_word] = ACTIONS(3925), - [anon_sym_SEMI] = ACTIONS(3925), - [anon_sym_LF] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3925), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3837), + [sym_word] = ACTIONS(3837), + [anon_sym_SEMI] = ACTIONS(3837), + [anon_sym_LF] = ACTIONS(3835), + [anon_sym_AMP] = ACTIONS(3837), }, - [2999] = { - [sym__concat] = ACTIONS(4008), - [anon_sym_esac] = ACTIONS(4010), - [anon_sym_PIPE] = ACTIONS(4010), - [anon_sym_SEMI_SEMI] = ACTIONS(4010), - [anon_sym_PIPE_AMP] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym__special_characters] = ACTIONS(4010), - [anon_sym_DQUOTE] = ACTIONS(4010), - [anon_sym_DOLLAR] = ACTIONS(4010), - [sym_raw_string] = ACTIONS(4010), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4010), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4010), - [anon_sym_BQUOTE] = ACTIONS(4010), - [anon_sym_LT_LPAREN] = ACTIONS(4010), - [anon_sym_GT_LPAREN] = ACTIONS(4010), + [2715] = { + [sym__concat] = ACTIONS(3920), + [anon_sym_esac] = ACTIONS(3922), + [anon_sym_PIPE] = ACTIONS(3922), + [anon_sym_SEMI_SEMI] = ACTIONS(3922), + [anon_sym_PIPE_AMP] = ACTIONS(3922), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3922), + [sym__special_characters] = ACTIONS(3922), + [anon_sym_DQUOTE] = ACTIONS(3922), + [anon_sym_DOLLAR] = ACTIONS(3922), + [sym_raw_string] = ACTIONS(3922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3922), + [anon_sym_BQUOTE] = ACTIONS(3922), + [anon_sym_LT_LPAREN] = ACTIONS(3922), + [anon_sym_GT_LPAREN] = ACTIONS(3922), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4010), - [sym_word] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4010), - [anon_sym_LF] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4010), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3922), + [sym_word] = ACTIONS(3922), + [anon_sym_SEMI] = ACTIONS(3922), + [anon_sym_LF] = ACTIONS(3920), + [anon_sym_AMP] = ACTIONS(3922), }, - [3000] = { - [sym_concatenation] = STATE(839), + [2716] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7122), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6422), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -78251,44 +68434,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3001] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(7124), + [2717] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(6424), [sym_comment] = ACTIONS(53), }, - [3002] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(7126), + [2718] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(6426), [sym_comment] = ACTIONS(53), }, - [3003] = { - [anon_sym_RBRACE] = ACTIONS(7126), + [2719] = { + [anon_sym_RBRACE] = ACTIONS(6426), [sym_comment] = ACTIONS(53), }, - [3004] = { - [sym_concatenation] = STATE(3098), + [2720] = { + [sym_concatenation] = STATE(2769), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3098), - [anon_sym_RBRACE] = ACTIONS(7128), - [anon_sym_EQ] = ACTIONS(7130), + [aux_sym_expansion_repeat1] = STATE(2769), + [anon_sym_RBRACE] = ACTIONS(6428), + [anon_sym_EQ] = ACTIONS(6430), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7132), + [anon_sym_POUND] = ACTIONS(6432), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(7130), - [anon_sym_COLON_QMARK] = ACTIONS(7130), - [anon_sym_COLON_DASH] = ACTIONS(7130), - [anon_sym_PERCENT] = ACTIONS(7130), - [anon_sym_DASH] = ACTIONS(7130), + [anon_sym_COLON] = ACTIONS(6430), + [anon_sym_COLON_QMARK] = ACTIONS(6430), + [anon_sym_COLON_DASH] = ACTIONS(6430), + [anon_sym_PERCENT] = ACTIONS(6430), + [anon_sym_DASH] = ACTIONS(6430), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -78296,52 +68479,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3005] = { - [sym__concat] = ACTIONS(4024), - [anon_sym_esac] = ACTIONS(4026), - [anon_sym_PIPE] = ACTIONS(4026), - [anon_sym_SEMI_SEMI] = ACTIONS(4026), - [anon_sym_PIPE_AMP] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym__special_characters] = ACTIONS(4026), - [anon_sym_DQUOTE] = ACTIONS(4026), - [anon_sym_DOLLAR] = ACTIONS(4026), - [sym_raw_string] = ACTIONS(4026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4026), - [anon_sym_BQUOTE] = ACTIONS(4026), - [anon_sym_LT_LPAREN] = ACTIONS(4026), - [anon_sym_GT_LPAREN] = ACTIONS(4026), + [2721] = { + [sym__concat] = ACTIONS(3936), + [anon_sym_esac] = ACTIONS(3938), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_SEMI_SEMI] = ACTIONS(3938), + [anon_sym_PIPE_AMP] = ACTIONS(3938), + [anon_sym_AMP_AMP] = ACTIONS(3938), + [anon_sym_PIPE_PIPE] = ACTIONS(3938), + [sym__special_characters] = ACTIONS(3938), + [anon_sym_DQUOTE] = ACTIONS(3938), + [anon_sym_DOLLAR] = ACTIONS(3938), + [sym_raw_string] = ACTIONS(3938), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3938), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3938), + [anon_sym_BQUOTE] = ACTIONS(3938), + [anon_sym_LT_LPAREN] = ACTIONS(3938), + [anon_sym_GT_LPAREN] = ACTIONS(3938), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4026), - [sym_word] = ACTIONS(4026), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym_LF] = ACTIONS(4024), - [anon_sym_AMP] = ACTIONS(4026), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3938), + [sym_word] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(3938), + [anon_sym_LF] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3938), }, - [3006] = { - [sym_concatenation] = STATE(3100), + [2722] = { + [sym_concatenation] = STATE(2771), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3100), - [anon_sym_RBRACE] = ACTIONS(7134), - [anon_sym_EQ] = ACTIONS(7136), + [aux_sym_expansion_repeat1] = STATE(2771), + [anon_sym_RBRACE] = ACTIONS(6434), + [anon_sym_EQ] = ACTIONS(6436), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7138), + [anon_sym_POUND] = ACTIONS(6438), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(7136), - [anon_sym_COLON_QMARK] = ACTIONS(7136), - [anon_sym_COLON_DASH] = ACTIONS(7136), - [anon_sym_PERCENT] = ACTIONS(7136), - [anon_sym_DASH] = ACTIONS(7136), + [anon_sym_COLON] = ACTIONS(6436), + [anon_sym_COLON_QMARK] = ACTIONS(6436), + [anon_sym_COLON_DASH] = ACTIONS(6436), + [anon_sym_PERCENT] = ACTIONS(6436), + [anon_sym_DASH] = ACTIONS(6436), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -78349,52 +68532,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3007] = { - [sym__concat] = ACTIONS(4034), - [anon_sym_esac] = ACTIONS(4036), - [anon_sym_PIPE] = ACTIONS(4036), - [anon_sym_SEMI_SEMI] = ACTIONS(4036), - [anon_sym_PIPE_AMP] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [sym__special_characters] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_DOLLAR] = ACTIONS(4036), - [sym_raw_string] = ACTIONS(4036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4036), - [anon_sym_BQUOTE] = ACTIONS(4036), - [anon_sym_LT_LPAREN] = ACTIONS(4036), - [anon_sym_GT_LPAREN] = ACTIONS(4036), + [2723] = { + [sym__concat] = ACTIONS(3946), + [anon_sym_esac] = ACTIONS(3948), + [anon_sym_PIPE] = ACTIONS(3948), + [anon_sym_SEMI_SEMI] = ACTIONS(3948), + [anon_sym_PIPE_AMP] = ACTIONS(3948), + [anon_sym_AMP_AMP] = ACTIONS(3948), + [anon_sym_PIPE_PIPE] = ACTIONS(3948), + [sym__special_characters] = ACTIONS(3948), + [anon_sym_DQUOTE] = ACTIONS(3948), + [anon_sym_DOLLAR] = ACTIONS(3948), + [sym_raw_string] = ACTIONS(3948), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3948), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3948), + [anon_sym_BQUOTE] = ACTIONS(3948), + [anon_sym_LT_LPAREN] = ACTIONS(3948), + [anon_sym_GT_LPAREN] = ACTIONS(3948), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4036), - [sym_word] = ACTIONS(4036), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_LF] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4036), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3948), + [sym_word] = ACTIONS(3948), + [anon_sym_SEMI] = ACTIONS(3948), + [anon_sym_LF] = ACTIONS(3946), + [anon_sym_AMP] = ACTIONS(3948), }, - [3008] = { - [sym_concatenation] = STATE(3102), + [2724] = { + [sym_concatenation] = STATE(2773), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3102), - [anon_sym_RBRACE] = ACTIONS(7140), - [anon_sym_EQ] = ACTIONS(7142), + [aux_sym_expansion_repeat1] = STATE(2773), + [anon_sym_RBRACE] = ACTIONS(6440), + [anon_sym_EQ] = ACTIONS(6442), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7144), + [anon_sym_POUND] = ACTIONS(6444), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(7142), - [anon_sym_COLON_QMARK] = ACTIONS(7142), - [anon_sym_COLON_DASH] = ACTIONS(7142), - [anon_sym_PERCENT] = ACTIONS(7142), - [anon_sym_DASH] = ACTIONS(7142), + [anon_sym_COLON] = ACTIONS(6442), + [anon_sym_COLON_QMARK] = ACTIONS(6442), + [anon_sym_COLON_DASH] = ACTIONS(6442), + [anon_sym_PERCENT] = ACTIONS(6442), + [anon_sym_DASH] = ACTIONS(6442), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -78402,52 +68585,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3009] = { - [sym__concat] = ACTIONS(4044), - [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__special_characters] = ACTIONS(4046), - [anon_sym_DQUOTE] = ACTIONS(4046), - [anon_sym_DOLLAR] = ACTIONS(4046), - [sym_raw_string] = ACTIONS(4046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4046), - [anon_sym_BQUOTE] = ACTIONS(4046), - [anon_sym_LT_LPAREN] = ACTIONS(4046), - [anon_sym_GT_LPAREN] = ACTIONS(4046), + [2725] = { + [sym__concat] = ACTIONS(3956), + [anon_sym_esac] = ACTIONS(3958), + [anon_sym_PIPE] = ACTIONS(3958), + [anon_sym_SEMI_SEMI] = ACTIONS(3958), + [anon_sym_PIPE_AMP] = ACTIONS(3958), + [anon_sym_AMP_AMP] = ACTIONS(3958), + [anon_sym_PIPE_PIPE] = ACTIONS(3958), + [sym__special_characters] = ACTIONS(3958), + [anon_sym_DQUOTE] = ACTIONS(3958), + [anon_sym_DOLLAR] = ACTIONS(3958), + [sym_raw_string] = ACTIONS(3958), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3958), + [anon_sym_BQUOTE] = ACTIONS(3958), + [anon_sym_LT_LPAREN] = ACTIONS(3958), + [anon_sym_GT_LPAREN] = ACTIONS(3958), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4046), - [sym_word] = ACTIONS(4046), - [anon_sym_SEMI] = ACTIONS(4046), - [anon_sym_LF] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4046), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3958), + [sym_word] = ACTIONS(3958), + [anon_sym_SEMI] = ACTIONS(3958), + [anon_sym_LF] = ACTIONS(3956), + [anon_sym_AMP] = ACTIONS(3958), }, - [3010] = { - [sym_concatenation] = STATE(839), + [2726] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7146), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6446), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -78455,52 +68638,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3011] = { - [sym__concat] = ACTIONS(4050), - [anon_sym_esac] = ACTIONS(4052), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_SEMI_SEMI] = ACTIONS(4052), - [anon_sym_PIPE_AMP] = ACTIONS(4052), - [anon_sym_AMP_AMP] = ACTIONS(4052), - [anon_sym_PIPE_PIPE] = ACTIONS(4052), - [sym__special_characters] = ACTIONS(4052), - [anon_sym_DQUOTE] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4052), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4052), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4052), - [anon_sym_BQUOTE] = ACTIONS(4052), - [anon_sym_LT_LPAREN] = ACTIONS(4052), - [anon_sym_GT_LPAREN] = ACTIONS(4052), + [2727] = { + [sym__concat] = ACTIONS(3962), + [anon_sym_esac] = ACTIONS(3964), + [anon_sym_PIPE] = ACTIONS(3964), + [anon_sym_SEMI_SEMI] = ACTIONS(3964), + [anon_sym_PIPE_AMP] = ACTIONS(3964), + [anon_sym_AMP_AMP] = ACTIONS(3964), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [sym__special_characters] = ACTIONS(3964), + [anon_sym_DQUOTE] = ACTIONS(3964), + [anon_sym_DOLLAR] = ACTIONS(3964), + [sym_raw_string] = ACTIONS(3964), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3964), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3964), + [anon_sym_BQUOTE] = ACTIONS(3964), + [anon_sym_LT_LPAREN] = ACTIONS(3964), + [anon_sym_GT_LPAREN] = ACTIONS(3964), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4052), - [sym_word] = ACTIONS(4052), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4052), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3964), + [sym_word] = ACTIONS(3964), + [anon_sym_SEMI] = ACTIONS(3964), + [anon_sym_LF] = ACTIONS(3962), + [anon_sym_AMP] = ACTIONS(3964), }, - [3012] = { - [sym_concatenation] = STATE(839), + [2728] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7148), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6448), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -78508,751 +68691,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3013] = { - [sym__simple_heredoc_body] = ACTIONS(4884), - [sym__heredoc_body_beginning] = ACTIONS(4884), - [sym_file_descriptor] = ACTIONS(4884), - [sym__concat] = ACTIONS(4884), - [anon_sym_esac] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4886), - [anon_sym_SEMI_SEMI] = ACTIONS(4886), - [anon_sym_PIPE_AMP] = ACTIONS(4886), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_EQ_TILDE] = ACTIONS(4886), - [anon_sym_EQ_EQ] = ACTIONS(4886), - [anon_sym_LT] = ACTIONS(4886), - [anon_sym_GT] = ACTIONS(4886), - [anon_sym_GT_GT] = ACTIONS(4886), - [anon_sym_AMP_GT] = ACTIONS(4886), - [anon_sym_AMP_GT_GT] = ACTIONS(4886), - [anon_sym_LT_AMP] = ACTIONS(4886), - [anon_sym_GT_AMP] = ACTIONS(4886), - [anon_sym_LT_LT] = ACTIONS(4886), - [anon_sym_LT_LT_DASH] = ACTIONS(4886), - [anon_sym_LT_LT_LT] = ACTIONS(4886), - [sym__special_characters] = ACTIONS(4886), - [anon_sym_DQUOTE] = ACTIONS(4886), - [anon_sym_DOLLAR] = ACTIONS(4886), - [sym_raw_string] = ACTIONS(4886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4886), - [anon_sym_BQUOTE] = ACTIONS(4886), - [anon_sym_LT_LPAREN] = ACTIONS(4886), - [anon_sym_GT_LPAREN] = ACTIONS(4886), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4886), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym_LF] = ACTIONS(4884), - [anon_sym_AMP] = ACTIONS(4886), - }, - [3014] = { - [sym__simple_heredoc_body] = ACTIONS(4888), - [sym__heredoc_body_beginning] = ACTIONS(4888), - [sym_file_descriptor] = ACTIONS(4888), - [sym__concat] = ACTIONS(4888), - [anon_sym_esac] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4890), - [anon_sym_SEMI_SEMI] = ACTIONS(4890), - [anon_sym_PIPE_AMP] = ACTIONS(4890), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [anon_sym_EQ_TILDE] = ACTIONS(4890), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_LT] = ACTIONS(4890), - [anon_sym_GT] = ACTIONS(4890), - [anon_sym_GT_GT] = ACTIONS(4890), - [anon_sym_AMP_GT] = ACTIONS(4890), - [anon_sym_AMP_GT_GT] = ACTIONS(4890), - [anon_sym_LT_AMP] = ACTIONS(4890), - [anon_sym_GT_AMP] = ACTIONS(4890), - [anon_sym_LT_LT] = ACTIONS(4890), - [anon_sym_LT_LT_DASH] = ACTIONS(4890), - [anon_sym_LT_LT_LT] = ACTIONS(4890), - [sym__special_characters] = ACTIONS(4890), - [anon_sym_DQUOTE] = ACTIONS(4890), - [anon_sym_DOLLAR] = ACTIONS(4890), - [sym_raw_string] = ACTIONS(4890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4890), - [anon_sym_BQUOTE] = ACTIONS(4890), - [anon_sym_LT_LPAREN] = ACTIONS(4890), - [anon_sym_GT_LPAREN] = ACTIONS(4890), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4890), - [anon_sym_SEMI] = ACTIONS(4890), - [anon_sym_LF] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4890), - }, - [3015] = { - [sym__simple_heredoc_body] = ACTIONS(4892), - [sym__heredoc_body_beginning] = ACTIONS(4892), - [sym_file_descriptor] = ACTIONS(4892), - [sym__concat] = ACTIONS(4892), - [anon_sym_esac] = ACTIONS(4894), - [anon_sym_PIPE] = ACTIONS(4894), - [anon_sym_SEMI_SEMI] = ACTIONS(4894), - [anon_sym_PIPE_AMP] = ACTIONS(4894), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE_PIPE] = ACTIONS(4894), - [anon_sym_EQ_TILDE] = ACTIONS(4894), - [anon_sym_EQ_EQ] = ACTIONS(4894), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_GT_GT] = ACTIONS(4894), - [anon_sym_AMP_GT] = ACTIONS(4894), - [anon_sym_AMP_GT_GT] = ACTIONS(4894), - [anon_sym_LT_AMP] = ACTIONS(4894), - [anon_sym_GT_AMP] = ACTIONS(4894), - [anon_sym_LT_LT] = ACTIONS(4894), - [anon_sym_LT_LT_DASH] = ACTIONS(4894), - [anon_sym_LT_LT_LT] = ACTIONS(4894), - [sym__special_characters] = ACTIONS(4894), - [anon_sym_DQUOTE] = ACTIONS(4894), - [anon_sym_DOLLAR] = ACTIONS(4894), - [sym_raw_string] = ACTIONS(4894), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4894), - [anon_sym_BQUOTE] = ACTIONS(4894), - [anon_sym_LT_LPAREN] = ACTIONS(4894), - [anon_sym_GT_LPAREN] = ACTIONS(4894), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4894), - [anon_sym_SEMI] = ACTIONS(4894), - [anon_sym_LF] = ACTIONS(4892), - [anon_sym_AMP] = ACTIONS(4894), - }, - [3016] = { - [sym__simple_heredoc_body] = ACTIONS(4896), - [sym__heredoc_body_beginning] = ACTIONS(4896), - [sym_file_descriptor] = ACTIONS(4896), - [sym__concat] = ACTIONS(4896), - [anon_sym_esac] = ACTIONS(4898), - [anon_sym_PIPE] = ACTIONS(4898), - [anon_sym_SEMI_SEMI] = ACTIONS(4898), - [anon_sym_PIPE_AMP] = ACTIONS(4898), - [anon_sym_AMP_AMP] = ACTIONS(4898), - [anon_sym_PIPE_PIPE] = ACTIONS(4898), - [anon_sym_EQ_TILDE] = ACTIONS(4898), - [anon_sym_EQ_EQ] = ACTIONS(4898), - [anon_sym_LT] = ACTIONS(4898), - [anon_sym_GT] = ACTIONS(4898), - [anon_sym_GT_GT] = ACTIONS(4898), - [anon_sym_AMP_GT] = ACTIONS(4898), - [anon_sym_AMP_GT_GT] = ACTIONS(4898), - [anon_sym_LT_AMP] = ACTIONS(4898), - [anon_sym_GT_AMP] = ACTIONS(4898), - [anon_sym_LT_LT] = ACTIONS(4898), - [anon_sym_LT_LT_DASH] = ACTIONS(4898), - [anon_sym_LT_LT_LT] = ACTIONS(4898), - [sym__special_characters] = ACTIONS(4898), - [anon_sym_DQUOTE] = ACTIONS(4898), - [anon_sym_DOLLAR] = ACTIONS(4898), - [sym_raw_string] = ACTIONS(4898), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4898), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4898), - [anon_sym_BQUOTE] = ACTIONS(4898), - [anon_sym_LT_LPAREN] = ACTIONS(4898), - [anon_sym_GT_LPAREN] = ACTIONS(4898), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4898), - [anon_sym_SEMI] = ACTIONS(4898), - [anon_sym_LF] = ACTIONS(4896), - [anon_sym_AMP] = ACTIONS(4898), - }, - [3017] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7150), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [3018] = { - [sym__simple_heredoc_body] = ACTIONS(4902), - [sym__heredoc_body_beginning] = ACTIONS(4902), - [sym_file_descriptor] = ACTIONS(4902), - [sym__concat] = ACTIONS(4902), - [anon_sym_esac] = ACTIONS(4904), - [anon_sym_PIPE] = ACTIONS(4904), - [anon_sym_SEMI_SEMI] = ACTIONS(4904), - [anon_sym_PIPE_AMP] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4904), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_EQ_TILDE] = ACTIONS(4904), - [anon_sym_EQ_EQ] = ACTIONS(4904), - [anon_sym_LT] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4904), - [anon_sym_GT_GT] = ACTIONS(4904), - [anon_sym_AMP_GT] = ACTIONS(4904), - [anon_sym_AMP_GT_GT] = ACTIONS(4904), - [anon_sym_LT_AMP] = ACTIONS(4904), - [anon_sym_GT_AMP] = ACTIONS(4904), - [anon_sym_LT_LT] = ACTIONS(4904), - [anon_sym_LT_LT_DASH] = ACTIONS(4904), - [anon_sym_LT_LT_LT] = ACTIONS(4904), - [sym__special_characters] = ACTIONS(4904), - [anon_sym_DQUOTE] = ACTIONS(4904), - [anon_sym_DOLLAR] = ACTIONS(4904), - [sym_raw_string] = ACTIONS(4904), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4904), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4904), - [anon_sym_BQUOTE] = ACTIONS(4904), - [anon_sym_LT_LPAREN] = ACTIONS(4904), - [anon_sym_GT_LPAREN] = ACTIONS(4904), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4904), - [anon_sym_SEMI] = ACTIONS(4904), - [anon_sym_LF] = ACTIONS(4902), - [anon_sym_AMP] = ACTIONS(4904), - }, - [3019] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7152), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [3020] = { - [sym__simple_heredoc_body] = ACTIONS(4908), - [sym__heredoc_body_beginning] = ACTIONS(4908), - [sym_file_descriptor] = ACTIONS(4908), - [sym__concat] = ACTIONS(4908), - [anon_sym_esac] = ACTIONS(4910), - [anon_sym_PIPE] = ACTIONS(4910), - [anon_sym_SEMI_SEMI] = ACTIONS(4910), - [anon_sym_PIPE_AMP] = ACTIONS(4910), - [anon_sym_AMP_AMP] = ACTIONS(4910), - [anon_sym_PIPE_PIPE] = ACTIONS(4910), - [anon_sym_EQ_TILDE] = ACTIONS(4910), - [anon_sym_EQ_EQ] = ACTIONS(4910), - [anon_sym_LT] = ACTIONS(4910), - [anon_sym_GT] = ACTIONS(4910), - [anon_sym_GT_GT] = ACTIONS(4910), - [anon_sym_AMP_GT] = ACTIONS(4910), - [anon_sym_AMP_GT_GT] = ACTIONS(4910), - [anon_sym_LT_AMP] = ACTIONS(4910), - [anon_sym_GT_AMP] = ACTIONS(4910), - [anon_sym_LT_LT] = ACTIONS(4910), - [anon_sym_LT_LT_DASH] = ACTIONS(4910), - [anon_sym_LT_LT_LT] = ACTIONS(4910), - [sym__special_characters] = ACTIONS(4910), - [anon_sym_DQUOTE] = ACTIONS(4910), - [anon_sym_DOLLAR] = ACTIONS(4910), - [sym_raw_string] = ACTIONS(4910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4910), - [anon_sym_BQUOTE] = ACTIONS(4910), - [anon_sym_LT_LPAREN] = ACTIONS(4910), - [anon_sym_GT_LPAREN] = ACTIONS(4910), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4910), - [anon_sym_SEMI] = ACTIONS(4910), - [anon_sym_LF] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4910), - }, - [3021] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7154), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [3022] = { - [sym__simple_heredoc_body] = ACTIONS(4914), - [sym__heredoc_body_beginning] = ACTIONS(4914), - [sym_file_descriptor] = ACTIONS(4914), - [sym__concat] = ACTIONS(4914), - [anon_sym_esac] = ACTIONS(4916), - [anon_sym_PIPE] = ACTIONS(4916), - [anon_sym_SEMI_SEMI] = ACTIONS(4916), - [anon_sym_PIPE_AMP] = ACTIONS(4916), - [anon_sym_AMP_AMP] = ACTIONS(4916), - [anon_sym_PIPE_PIPE] = ACTIONS(4916), - [anon_sym_EQ_TILDE] = ACTIONS(4916), - [anon_sym_EQ_EQ] = ACTIONS(4916), - [anon_sym_LT] = ACTIONS(4916), - [anon_sym_GT] = ACTIONS(4916), - [anon_sym_GT_GT] = ACTIONS(4916), - [anon_sym_AMP_GT] = ACTIONS(4916), - [anon_sym_AMP_GT_GT] = ACTIONS(4916), - [anon_sym_LT_AMP] = ACTIONS(4916), - [anon_sym_GT_AMP] = ACTIONS(4916), - [anon_sym_LT_LT] = ACTIONS(4916), - [anon_sym_LT_LT_DASH] = ACTIONS(4916), - [anon_sym_LT_LT_LT] = ACTIONS(4916), - [sym__special_characters] = ACTIONS(4916), - [anon_sym_DQUOTE] = ACTIONS(4916), - [anon_sym_DOLLAR] = ACTIONS(4916), - [sym_raw_string] = ACTIONS(4916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4916), - [anon_sym_BQUOTE] = ACTIONS(4916), - [anon_sym_LT_LPAREN] = ACTIONS(4916), - [anon_sym_GT_LPAREN] = ACTIONS(4916), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4916), - [anon_sym_SEMI] = ACTIONS(4916), - [anon_sym_LF] = ACTIONS(4914), - [anon_sym_AMP] = ACTIONS(4916), - }, - [3023] = { - [sym__simple_heredoc_body] = ACTIONS(4918), - [sym__heredoc_body_beginning] = ACTIONS(4918), - [sym_file_descriptor] = ACTIONS(4918), - [sym__concat] = ACTIONS(4918), - [anon_sym_esac] = ACTIONS(4920), - [anon_sym_PIPE] = ACTIONS(4920), - [anon_sym_SEMI_SEMI] = ACTIONS(4920), - [anon_sym_PIPE_AMP] = ACTIONS(4920), - [anon_sym_AMP_AMP] = ACTIONS(4920), - [anon_sym_PIPE_PIPE] = ACTIONS(4920), - [anon_sym_EQ_TILDE] = ACTIONS(4920), - [anon_sym_EQ_EQ] = ACTIONS(4920), - [anon_sym_LT] = ACTIONS(4920), - [anon_sym_GT] = ACTIONS(4920), - [anon_sym_GT_GT] = ACTIONS(4920), - [anon_sym_AMP_GT] = ACTIONS(4920), - [anon_sym_AMP_GT_GT] = ACTIONS(4920), - [anon_sym_LT_AMP] = ACTIONS(4920), - [anon_sym_GT_AMP] = ACTIONS(4920), - [anon_sym_LT_LT] = ACTIONS(4920), - [anon_sym_LT_LT_DASH] = ACTIONS(4920), - [anon_sym_LT_LT_LT] = ACTIONS(4920), - [sym__special_characters] = ACTIONS(4920), - [anon_sym_DQUOTE] = ACTIONS(4920), - [anon_sym_DOLLAR] = ACTIONS(4920), - [sym_raw_string] = ACTIONS(4920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4920), - [anon_sym_BQUOTE] = ACTIONS(4920), - [anon_sym_LT_LPAREN] = ACTIONS(4920), - [anon_sym_GT_LPAREN] = ACTIONS(4920), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4920), - [anon_sym_SEMI] = ACTIONS(4920), - [anon_sym_LF] = ACTIONS(4918), - [anon_sym_AMP] = ACTIONS(4920), - }, - [3024] = { - [sym__simple_heredoc_body] = ACTIONS(2752), - [sym__heredoc_body_beginning] = ACTIONS(2752), - [sym_file_descriptor] = ACTIONS(2752), - [sym__concat] = ACTIONS(2752), - [anon_sym_esac] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_SEMI_SEMI] = ACTIONS(2754), - [anon_sym_PIPE_AMP] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2754), - [anon_sym_GT] = ACTIONS(2754), - [anon_sym_GT_GT] = ACTIONS(2754), - [anon_sym_AMP_GT] = ACTIONS(2754), - [anon_sym_AMP_GT_GT] = ACTIONS(2754), - [anon_sym_LT_AMP] = ACTIONS(2754), - [anon_sym_GT_AMP] = ACTIONS(2754), - [anon_sym_LT_LT] = ACTIONS(2754), - [anon_sym_LT_LT_DASH] = ACTIONS(2754), - [anon_sym_LT_LT_LT] = ACTIONS(2754), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_LF] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2754), - }, - [3025] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(7156), - [sym_comment] = ACTIONS(53), - }, - [3026] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(7158), - [sym_comment] = ACTIONS(53), - }, - [3027] = { - [anon_sym_RBRACE] = ACTIONS(7158), - [sym_comment] = ACTIONS(53), - }, - [3028] = { - [sym_concatenation] = STATE(3111), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3111), - [anon_sym_RBRACE] = ACTIONS(7160), - [anon_sym_EQ] = ACTIONS(7162), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(7162), - [anon_sym_COLON_QMARK] = ACTIONS(7162), - [anon_sym_COLON_DASH] = ACTIONS(7162), - [anon_sym_PERCENT] = ACTIONS(7162), - [anon_sym_DASH] = ACTIONS(7162), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [3029] = { - [sym__simple_heredoc_body] = ACTIONS(2830), - [sym__heredoc_body_beginning] = ACTIONS(2830), - [sym_file_descriptor] = ACTIONS(2830), - [sym__concat] = ACTIONS(2830), - [anon_sym_esac] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_SEMI_SEMI] = ACTIONS(2832), - [anon_sym_PIPE_AMP] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_PIPE_PIPE] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_GT_GT] = ACTIONS(2832), - [anon_sym_AMP_GT] = ACTIONS(2832), - [anon_sym_AMP_GT_GT] = ACTIONS(2832), - [anon_sym_LT_AMP] = ACTIONS(2832), - [anon_sym_GT_AMP] = ACTIONS(2832), - [anon_sym_LT_LT] = ACTIONS(2832), - [anon_sym_LT_LT_DASH] = ACTIONS(2832), - [anon_sym_LT_LT_LT] = ACTIONS(2832), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_LF] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2832), - }, - [3030] = { - [sym_concatenation] = STATE(3114), - [sym_string] = STATE(3113), - [sym_simple_expansion] = STATE(3113), - [sym_string_expansion] = STATE(3113), - [sym_expansion] = STATE(3113), - [sym_command_substitution] = STATE(3113), - [sym_process_substitution] = STATE(3113), - [anon_sym_RBRACE] = ACTIONS(7158), - [sym__special_characters] = ACTIONS(7166), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(7168), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(7168), - }, - [3031] = { - [sym__simple_heredoc_body] = ACTIONS(2873), - [sym__heredoc_body_beginning] = ACTIONS(2873), - [sym_file_descriptor] = ACTIONS(2873), - [sym__concat] = ACTIONS(2873), - [anon_sym_esac] = ACTIONS(2875), - [anon_sym_PIPE] = ACTIONS(2875), - [anon_sym_SEMI_SEMI] = ACTIONS(2875), - [anon_sym_PIPE_AMP] = ACTIONS(2875), - [anon_sym_AMP_AMP] = ACTIONS(2875), - [anon_sym_PIPE_PIPE] = ACTIONS(2875), - [anon_sym_LT] = ACTIONS(2875), - [anon_sym_GT] = ACTIONS(2875), - [anon_sym_GT_GT] = ACTIONS(2875), - [anon_sym_AMP_GT] = ACTIONS(2875), - [anon_sym_AMP_GT_GT] = ACTIONS(2875), - [anon_sym_LT_AMP] = ACTIONS(2875), - [anon_sym_GT_AMP] = ACTIONS(2875), - [anon_sym_LT_LT] = ACTIONS(2875), - [anon_sym_LT_LT_DASH] = ACTIONS(2875), - [anon_sym_LT_LT_LT] = ACTIONS(2875), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym_LF] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2875), - }, - [3032] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(7170), - }, - [3033] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7172), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [3034] = { - [sym__simple_heredoc_body] = ACTIONS(2881), - [sym__heredoc_body_beginning] = ACTIONS(2881), - [sym_file_descriptor] = ACTIONS(2881), - [sym__concat] = ACTIONS(2881), - [anon_sym_esac] = ACTIONS(2883), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_SEMI_SEMI] = ACTIONS(2883), - [anon_sym_PIPE_AMP] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_PIPE_PIPE] = ACTIONS(2883), - [anon_sym_LT] = ACTIONS(2883), - [anon_sym_GT] = ACTIONS(2883), - [anon_sym_GT_GT] = ACTIONS(2883), - [anon_sym_AMP_GT] = ACTIONS(2883), - [anon_sym_AMP_GT_GT] = ACTIONS(2883), - [anon_sym_LT_AMP] = ACTIONS(2883), - [anon_sym_GT_AMP] = ACTIONS(2883), - [anon_sym_LT_LT] = ACTIONS(2883), - [anon_sym_LT_LT_DASH] = ACTIONS(2883), - [anon_sym_LT_LT_LT] = ACTIONS(2883), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym_LF] = ACTIONS(2881), - [anon_sym_AMP] = ACTIONS(2883), - }, - [3035] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(7174), - }, - [3036] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7176), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [3037] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(7178), - }, - [3038] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7158), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [3039] = { - [sym_concatenation] = STATE(3121), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3121), - [anon_sym_RBRACE] = ACTIONS(7180), - [anon_sym_EQ] = ACTIONS(7182), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7184), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(7182), - [anon_sym_COLON_QMARK] = ACTIONS(7182), - [anon_sym_COLON_DASH] = ACTIONS(7182), - [anon_sym_PERCENT] = ACTIONS(7182), - [anon_sym_DASH] = ACTIONS(7182), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [3040] = { - [sym__simple_heredoc_body] = ACTIONS(2897), - [sym__heredoc_body_beginning] = ACTIONS(2897), - [sym_file_descriptor] = ACTIONS(2897), - [sym__concat] = ACTIONS(2897), - [anon_sym_esac] = ACTIONS(2899), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_SEMI_SEMI] = ACTIONS(2899), - [anon_sym_PIPE_AMP] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_PIPE_PIPE] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [anon_sym_GT_GT] = ACTIONS(2899), - [anon_sym_AMP_GT] = ACTIONS(2899), - [anon_sym_AMP_GT_GT] = ACTIONS(2899), - [anon_sym_LT_AMP] = ACTIONS(2899), - [anon_sym_GT_AMP] = ACTIONS(2899), - [anon_sym_LT_LT] = ACTIONS(2899), - [anon_sym_LT_LT_DASH] = ACTIONS(2899), - [anon_sym_LT_LT_LT] = ACTIONS(2899), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym_LF] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2899), - }, - [3041] = { - [sym_concatenation] = STATE(3123), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3123), - [anon_sym_RBRACE] = ACTIONS(7186), - [anon_sym_EQ] = ACTIONS(7188), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(7188), - [anon_sym_COLON_QMARK] = ACTIONS(7188), - [anon_sym_COLON_DASH] = ACTIONS(7188), - [anon_sym_PERCENT] = ACTIONS(7188), - [anon_sym_DASH] = ACTIONS(7188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [3042] = { + [2729] = { [sym_file_descriptor] = ACTIONS(951), [sym_variable_name] = ACTIONS(951), [anon_sym_for] = ACTIONS(953), @@ -79279,19 +68718,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(951), [anon_sym_LT_AMP] = ACTIONS(951), [anon_sym_GT_AMP] = ACTIONS(951), - [sym__special_characters] = ACTIONS(6727), - [anon_sym_DQUOTE] = ACTIONS(6729), - [anon_sym_DOLLAR] = ACTIONS(6727), - [sym_raw_string] = ACTIONS(6729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6729), - [anon_sym_BQUOTE] = ACTIONS(6729), - [anon_sym_LT_LPAREN] = ACTIONS(6729), - [anon_sym_GT_LPAREN] = ACTIONS(6729), + [sym__special_characters] = ACTIONS(6177), + [anon_sym_DQUOTE] = ACTIONS(6179), + [anon_sym_DOLLAR] = ACTIONS(6177), + [sym_raw_string] = ACTIONS(6179), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6179), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6179), + [anon_sym_BQUOTE] = ACTIONS(6179), + [anon_sym_LT_LPAREN] = ACTIONS(6179), + [anon_sym_GT_LPAREN] = ACTIONS(6179), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6727), + [sym_word] = ACTIONS(6177), }, - [3043] = { + [2730] = { [sym_file_descriptor] = ACTIONS(951), [sym_variable_name] = ACTIONS(951), [anon_sym_for] = ACTIONS(953), @@ -79318,199 +68757,181 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(951), [anon_sym_LT_AMP] = ACTIONS(951), [anon_sym_GT_AMP] = ACTIONS(951), - [sym__special_characters] = ACTIONS(6733), - [anon_sym_DQUOTE] = ACTIONS(6735), - [anon_sym_DOLLAR] = ACTIONS(6733), - [sym_raw_string] = ACTIONS(6735), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6735), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6735), - [anon_sym_BQUOTE] = ACTIONS(6735), - [anon_sym_LT_LPAREN] = ACTIONS(6735), - [anon_sym_GT_LPAREN] = ACTIONS(6735), + [sym__special_characters] = ACTIONS(6183), + [anon_sym_DQUOTE] = ACTIONS(6185), + [anon_sym_DOLLAR] = ACTIONS(6183), + [sym_raw_string] = ACTIONS(6185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6185), + [anon_sym_BQUOTE] = ACTIONS(6185), + [anon_sym_LT_LPAREN] = ACTIONS(6185), + [anon_sym_GT_LPAREN] = ACTIONS(6185), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6733), + [sym_word] = ACTIONS(6183), }, - [3044] = { - [sym_file_descriptor] = ACTIONS(5540), - [sym__concat] = ACTIONS(5540), - [anon_sym_PIPE] = ACTIONS(5542), - [anon_sym_RPAREN] = ACTIONS(5540), - [anon_sym_PIPE_AMP] = ACTIONS(5540), - [anon_sym_AMP_AMP] = ACTIONS(5540), - [anon_sym_PIPE_PIPE] = ACTIONS(5540), - [anon_sym_LT] = ACTIONS(5542), - [anon_sym_GT] = ACTIONS(5542), - [anon_sym_GT_GT] = ACTIONS(5540), - [anon_sym_AMP_GT] = ACTIONS(5542), - [anon_sym_AMP_GT_GT] = ACTIONS(5540), - [anon_sym_LT_AMP] = ACTIONS(5540), - [anon_sym_GT_AMP] = ACTIONS(5540), - [anon_sym_LT_LT] = ACTIONS(5542), - [anon_sym_LT_LT_DASH] = ACTIONS(5540), - [anon_sym_LT_LT_LT] = ACTIONS(5540), - [anon_sym_BQUOTE] = ACTIONS(5540), + [2731] = { + [sym_file_descriptor] = ACTIONS(5325), + [sym__concat] = ACTIONS(5325), + [anon_sym_PIPE] = ACTIONS(5327), + [anon_sym_RPAREN] = ACTIONS(5325), + [anon_sym_PIPE_AMP] = ACTIONS(5325), + [anon_sym_AMP_AMP] = ACTIONS(5325), + [anon_sym_PIPE_PIPE] = ACTIONS(5325), + [anon_sym_LT] = ACTIONS(5327), + [anon_sym_GT] = ACTIONS(5327), + [anon_sym_GT_GT] = ACTIONS(5325), + [anon_sym_AMP_GT] = ACTIONS(5327), + [anon_sym_AMP_GT_GT] = ACTIONS(5325), + [anon_sym_LT_AMP] = ACTIONS(5325), + [anon_sym_GT_AMP] = ACTIONS(5325), + [anon_sym_LT_LT] = ACTIONS(5327), + [anon_sym_LT_LT_DASH] = ACTIONS(5325), + [anon_sym_LT_LT_LT] = ACTIONS(5325), + [anon_sym_BQUOTE] = ACTIONS(5325), [sym_comment] = ACTIONS(53), }, - [3045] = { - [sym_file_descriptor] = ACTIONS(5544), - [sym__concat] = ACTIONS(5544), - [anon_sym_PIPE] = ACTIONS(5546), - [anon_sym_RPAREN] = ACTIONS(5544), - [anon_sym_PIPE_AMP] = ACTIONS(5544), - [anon_sym_AMP_AMP] = ACTIONS(5544), - [anon_sym_PIPE_PIPE] = ACTIONS(5544), - [anon_sym_LT] = ACTIONS(5546), - [anon_sym_GT] = ACTIONS(5546), - [anon_sym_GT_GT] = ACTIONS(5544), - [anon_sym_AMP_GT] = ACTIONS(5546), - [anon_sym_AMP_GT_GT] = ACTIONS(5544), - [anon_sym_LT_AMP] = ACTIONS(5544), - [anon_sym_GT_AMP] = ACTIONS(5544), - [anon_sym_LT_LT] = ACTIONS(5546), - [anon_sym_LT_LT_DASH] = ACTIONS(5544), - [anon_sym_LT_LT_LT] = ACTIONS(5544), - [anon_sym_BQUOTE] = ACTIONS(5544), + [2732] = { + [sym_file_descriptor] = ACTIONS(5329), + [sym__concat] = ACTIONS(5329), + [anon_sym_PIPE] = ACTIONS(5331), + [anon_sym_RPAREN] = ACTIONS(5329), + [anon_sym_PIPE_AMP] = ACTIONS(5329), + [anon_sym_AMP_AMP] = ACTIONS(5329), + [anon_sym_PIPE_PIPE] = ACTIONS(5329), + [anon_sym_LT] = ACTIONS(5331), + [anon_sym_GT] = ACTIONS(5331), + [anon_sym_GT_GT] = ACTIONS(5329), + [anon_sym_AMP_GT] = ACTIONS(5331), + [anon_sym_AMP_GT_GT] = ACTIONS(5329), + [anon_sym_LT_AMP] = ACTIONS(5329), + [anon_sym_GT_AMP] = ACTIONS(5329), + [anon_sym_LT_LT] = ACTIONS(5331), + [anon_sym_LT_LT_DASH] = ACTIONS(5329), + [anon_sym_LT_LT_LT] = ACTIONS(5329), + [anon_sym_BQUOTE] = ACTIONS(5329), [sym_comment] = ACTIONS(53), }, - [3046] = { - [sym_file_descriptor] = ACTIONS(5548), - [sym__concat] = ACTIONS(5548), - [anon_sym_PIPE] = ACTIONS(5550), - [anon_sym_RPAREN] = ACTIONS(5548), - [anon_sym_PIPE_AMP] = ACTIONS(5548), - [anon_sym_AMP_AMP] = ACTIONS(5548), - [anon_sym_PIPE_PIPE] = ACTIONS(5548), - [anon_sym_LT] = ACTIONS(5550), - [anon_sym_GT] = ACTIONS(5550), - [anon_sym_GT_GT] = ACTIONS(5548), - [anon_sym_AMP_GT] = ACTIONS(5550), - [anon_sym_AMP_GT_GT] = ACTIONS(5548), - [anon_sym_LT_AMP] = ACTIONS(5548), - [anon_sym_GT_AMP] = ACTIONS(5548), - [anon_sym_LT_LT] = ACTIONS(5550), - [anon_sym_LT_LT_DASH] = ACTIONS(5548), - [anon_sym_LT_LT_LT] = ACTIONS(5548), - [anon_sym_BQUOTE] = ACTIONS(5548), + [2733] = { + [sym_file_descriptor] = ACTIONS(5333), + [sym__concat] = ACTIONS(5333), + [anon_sym_PIPE] = ACTIONS(5335), + [anon_sym_RPAREN] = ACTIONS(5333), + [anon_sym_PIPE_AMP] = ACTIONS(5333), + [anon_sym_AMP_AMP] = ACTIONS(5333), + [anon_sym_PIPE_PIPE] = ACTIONS(5333), + [anon_sym_LT] = ACTIONS(5335), + [anon_sym_GT] = ACTIONS(5335), + [anon_sym_GT_GT] = ACTIONS(5333), + [anon_sym_AMP_GT] = ACTIONS(5335), + [anon_sym_AMP_GT_GT] = ACTIONS(5333), + [anon_sym_LT_AMP] = ACTIONS(5333), + [anon_sym_GT_AMP] = ACTIONS(5333), + [anon_sym_LT_LT] = ACTIONS(5335), + [anon_sym_LT_LT_DASH] = ACTIONS(5333), + [anon_sym_LT_LT_LT] = ACTIONS(5333), + [anon_sym_BQUOTE] = ACTIONS(5333), [sym_comment] = ACTIONS(53), }, - [3047] = { - [sym_file_descriptor] = ACTIONS(3917), - [sym__concat] = ACTIONS(3917), - [sym_variable_name] = ACTIONS(3917), - [anon_sym_esac] = ACTIONS(3919), - [anon_sym_PIPE] = ACTIONS(3919), - [anon_sym_SEMI_SEMI] = ACTIONS(3919), - [anon_sym_PIPE_AMP] = ACTIONS(3919), - [anon_sym_AMP_AMP] = ACTIONS(3919), - [anon_sym_PIPE_PIPE] = ACTIONS(3919), - [anon_sym_LT] = ACTIONS(3919), - [anon_sym_GT] = ACTIONS(3919), - [anon_sym_GT_GT] = ACTIONS(3919), - [anon_sym_AMP_GT] = ACTIONS(3919), - [anon_sym_AMP_GT_GT] = ACTIONS(3919), - [anon_sym_LT_AMP] = ACTIONS(3919), - [anon_sym_GT_AMP] = ACTIONS(3919), - [sym__special_characters] = ACTIONS(3919), - [anon_sym_DQUOTE] = ACTIONS(3919), - [anon_sym_DOLLAR] = ACTIONS(3919), - [sym_raw_string] = ACTIONS(3919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3919), - [anon_sym_BQUOTE] = ACTIONS(3919), - [anon_sym_LT_LPAREN] = ACTIONS(3919), - [anon_sym_GT_LPAREN] = ACTIONS(3919), + [2734] = { + [sym__concat] = ACTIONS(1642), + [anon_sym_esac] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3919), - [anon_sym_SEMI] = ACTIONS(3919), - [anon_sym_LF] = ACTIONS(3917), - [anon_sym_AMP] = ACTIONS(3919), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, - [3048] = { - [sym_file_descriptor] = ACTIONS(3923), - [sym__concat] = ACTIONS(3923), - [sym_variable_name] = ACTIONS(3923), - [anon_sym_esac] = ACTIONS(3925), - [anon_sym_PIPE] = ACTIONS(3925), - [anon_sym_SEMI_SEMI] = ACTIONS(3925), - [anon_sym_PIPE_AMP] = ACTIONS(3925), - [anon_sym_AMP_AMP] = ACTIONS(3925), - [anon_sym_PIPE_PIPE] = ACTIONS(3925), - [anon_sym_LT] = ACTIONS(3925), - [anon_sym_GT] = ACTIONS(3925), - [anon_sym_GT_GT] = ACTIONS(3925), - [anon_sym_AMP_GT] = ACTIONS(3925), - [anon_sym_AMP_GT_GT] = ACTIONS(3925), - [anon_sym_LT_AMP] = ACTIONS(3925), - [anon_sym_GT_AMP] = ACTIONS(3925), - [sym__special_characters] = ACTIONS(3925), - [anon_sym_DQUOTE] = ACTIONS(3925), - [anon_sym_DOLLAR] = ACTIONS(3925), - [sym_raw_string] = ACTIONS(3925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3925), - [anon_sym_BQUOTE] = ACTIONS(3925), - [anon_sym_LT_LPAREN] = ACTIONS(3925), - [anon_sym_GT_LPAREN] = ACTIONS(3925), + [2735] = { + [aux_sym_concatenation_repeat1] = STATE(2735), + [sym__concat] = ACTIONS(6450), + [anon_sym_esac] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3925), - [anon_sym_SEMI] = ACTIONS(3925), - [anon_sym_LF] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, - [3049] = { - [sym_file_descriptor] = ACTIONS(4008), - [sym__concat] = ACTIONS(4008), - [sym_variable_name] = ACTIONS(4008), - [anon_sym_esac] = ACTIONS(4010), - [anon_sym_PIPE] = ACTIONS(4010), - [anon_sym_SEMI_SEMI] = ACTIONS(4010), - [anon_sym_PIPE_AMP] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_GT_GT] = ACTIONS(4010), - [anon_sym_AMP_GT] = ACTIONS(4010), - [anon_sym_AMP_GT_GT] = ACTIONS(4010), - [anon_sym_LT_AMP] = ACTIONS(4010), - [anon_sym_GT_AMP] = ACTIONS(4010), - [sym__special_characters] = ACTIONS(4010), - [anon_sym_DQUOTE] = ACTIONS(4010), - [anon_sym_DOLLAR] = ACTIONS(4010), - [sym_raw_string] = ACTIONS(4010), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4010), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4010), - [anon_sym_BQUOTE] = ACTIONS(4010), - [anon_sym_LT_LPAREN] = ACTIONS(4010), - [anon_sym_GT_LPAREN] = ACTIONS(4010), + [2736] = { + [sym__concat] = ACTIONS(1691), + [anon_sym_esac] = ACTIONS(1693), + [anon_sym_PIPE] = ACTIONS(1693), + [anon_sym_SEMI_SEMI] = ACTIONS(1693), + [anon_sym_PIPE_AMP] = ACTIONS(1693), + [anon_sym_AMP_AMP] = ACTIONS(1693), + [anon_sym_PIPE_PIPE] = ACTIONS(1693), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4010), - [anon_sym_LF] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4010), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_LF] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1693), }, - [3050] = { - [sym_concatenation] = STATE(839), + [2737] = { + [sym_concatenation] = STATE(2779), + [sym_string] = STATE(2778), + [sym_simple_expansion] = STATE(2778), + [sym_string_expansion] = STATE(2778), + [sym_expansion] = STATE(2778), + [sym_command_substitution] = STATE(2778), + [sym_process_substitution] = STATE(2778), + [anon_sym_RBRACE] = ACTIONS(6453), + [sym__special_characters] = ACTIONS(6455), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(6457), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6457), + }, + [2738] = { + [sym__concat] = ACTIONS(1732), + [anon_sym_esac] = ACTIONS(1734), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_SEMI_SEMI] = ACTIONS(1734), + [anon_sym_PIPE_AMP] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_LF] = ACTIONS(1732), + [anon_sym_AMP] = ACTIONS(1734), + }, + [2739] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(6459), + }, + [2740] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7192), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6461), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -79518,430 +68939,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3051] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(7194), - [sym_comment] = ACTIONS(53), - }, - [3052] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(7196), - [sym_comment] = ACTIONS(53), - }, - [3053] = { - [anon_sym_RBRACE] = ACTIONS(7196), - [sym_comment] = ACTIONS(53), - }, - [3054] = { - [sym_concatenation] = STATE(3128), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3128), - [anon_sym_RBRACE] = ACTIONS(7198), - [anon_sym_EQ] = ACTIONS(7200), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(7200), - [anon_sym_COLON_QMARK] = ACTIONS(7200), - [anon_sym_COLON_DASH] = ACTIONS(7200), - [anon_sym_PERCENT] = ACTIONS(7200), - [anon_sym_DASH] = ACTIONS(7200), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [3055] = { - [sym_file_descriptor] = ACTIONS(4024), - [sym__concat] = ACTIONS(4024), - [sym_variable_name] = ACTIONS(4024), - [anon_sym_esac] = ACTIONS(4026), - [anon_sym_PIPE] = ACTIONS(4026), - [anon_sym_SEMI_SEMI] = ACTIONS(4026), - [anon_sym_PIPE_AMP] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [anon_sym_LT] = ACTIONS(4026), - [anon_sym_GT] = ACTIONS(4026), - [anon_sym_GT_GT] = ACTIONS(4026), - [anon_sym_AMP_GT] = ACTIONS(4026), - [anon_sym_AMP_GT_GT] = ACTIONS(4026), - [anon_sym_LT_AMP] = ACTIONS(4026), - [anon_sym_GT_AMP] = ACTIONS(4026), - [sym__special_characters] = ACTIONS(4026), - [anon_sym_DQUOTE] = ACTIONS(4026), - [anon_sym_DOLLAR] = ACTIONS(4026), - [sym_raw_string] = ACTIONS(4026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4026), - [anon_sym_BQUOTE] = ACTIONS(4026), - [anon_sym_LT_LPAREN] = ACTIONS(4026), - [anon_sym_GT_LPAREN] = ACTIONS(4026), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4026), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym_LF] = ACTIONS(4024), - [anon_sym_AMP] = ACTIONS(4026), - }, - [3056] = { - [sym_concatenation] = STATE(3130), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3130), - [anon_sym_RBRACE] = ACTIONS(7204), - [anon_sym_EQ] = ACTIONS(7206), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(7206), - [anon_sym_COLON_QMARK] = ACTIONS(7206), - [anon_sym_COLON_DASH] = ACTIONS(7206), - [anon_sym_PERCENT] = ACTIONS(7206), - [anon_sym_DASH] = ACTIONS(7206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [3057] = { - [sym_file_descriptor] = ACTIONS(4034), - [sym__concat] = ACTIONS(4034), - [sym_variable_name] = ACTIONS(4034), - [anon_sym_esac] = ACTIONS(4036), - [anon_sym_PIPE] = ACTIONS(4036), - [anon_sym_SEMI_SEMI] = ACTIONS(4036), - [anon_sym_PIPE_AMP] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [anon_sym_LT] = ACTIONS(4036), - [anon_sym_GT] = ACTIONS(4036), - [anon_sym_GT_GT] = ACTIONS(4036), - [anon_sym_AMP_GT] = ACTIONS(4036), - [anon_sym_AMP_GT_GT] = ACTIONS(4036), - [anon_sym_LT_AMP] = ACTIONS(4036), - [anon_sym_GT_AMP] = ACTIONS(4036), - [sym__special_characters] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_DOLLAR] = ACTIONS(4036), - [sym_raw_string] = ACTIONS(4036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4036), - [anon_sym_BQUOTE] = ACTIONS(4036), - [anon_sym_LT_LPAREN] = ACTIONS(4036), - [anon_sym_GT_LPAREN] = ACTIONS(4036), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4036), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_LF] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4036), - }, - [3058] = { - [sym_concatenation] = STATE(3132), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3132), - [anon_sym_RBRACE] = ACTIONS(7210), - [anon_sym_EQ] = ACTIONS(7212), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(7212), - [anon_sym_COLON_QMARK] = ACTIONS(7212), - [anon_sym_COLON_DASH] = ACTIONS(7212), - [anon_sym_PERCENT] = ACTIONS(7212), - [anon_sym_DASH] = ACTIONS(7212), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [3059] = { - [sym_file_descriptor] = ACTIONS(4044), - [sym__concat] = ACTIONS(4044), - [sym_variable_name] = ACTIONS(4044), - [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), - [sym__special_characters] = ACTIONS(4046), - [anon_sym_DQUOTE] = ACTIONS(4046), - [anon_sym_DOLLAR] = ACTIONS(4046), - [sym_raw_string] = ACTIONS(4046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4046), - [anon_sym_BQUOTE] = ACTIONS(4046), - [anon_sym_LT_LPAREN] = ACTIONS(4046), - [anon_sym_GT_LPAREN] = ACTIONS(4046), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4046), - [anon_sym_SEMI] = ACTIONS(4046), - [anon_sym_LF] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4046), - }, - [3060] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7216), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [3061] = { - [sym_file_descriptor] = ACTIONS(4050), - [sym__concat] = ACTIONS(4050), - [sym_variable_name] = ACTIONS(4050), - [anon_sym_esac] = ACTIONS(4052), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_SEMI_SEMI] = ACTIONS(4052), - [anon_sym_PIPE_AMP] = ACTIONS(4052), - [anon_sym_AMP_AMP] = ACTIONS(4052), - [anon_sym_PIPE_PIPE] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_GT_GT] = ACTIONS(4052), - [anon_sym_AMP_GT] = ACTIONS(4052), - [anon_sym_AMP_GT_GT] = ACTIONS(4052), - [anon_sym_LT_AMP] = ACTIONS(4052), - [anon_sym_GT_AMP] = ACTIONS(4052), - [sym__special_characters] = ACTIONS(4052), - [anon_sym_DQUOTE] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4052), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4052), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4052), - [anon_sym_BQUOTE] = ACTIONS(4052), - [anon_sym_LT_LPAREN] = ACTIONS(4052), - [anon_sym_GT_LPAREN] = ACTIONS(4052), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4052), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4052), - }, - [3062] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7218), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [3063] = { - [sym__concat] = ACTIONS(1654), - [anon_sym_esac] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), - }, - [3064] = { - [aux_sym_concatenation_repeat1] = STATE(3064), - [sym__concat] = ACTIONS(7220), - [anon_sym_esac] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), - }, - [3065] = { - [sym__concat] = ACTIONS(1703), - [anon_sym_esac] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_SEMI_SEMI] = ACTIONS(1705), - [anon_sym_PIPE_AMP] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1705), - [anon_sym_PIPE_PIPE] = ACTIONS(1705), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_LF] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1705), - }, - [3066] = { - [sym_concatenation] = STATE(3138), - [sym_string] = STATE(3137), - [sym_simple_expansion] = STATE(3137), - [sym_string_expansion] = STATE(3137), - [sym_expansion] = STATE(3137), - [sym_command_substitution] = STATE(3137), - [sym_process_substitution] = STATE(3137), - [anon_sym_RBRACE] = ACTIONS(7223), - [sym__special_characters] = ACTIONS(7225), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(7227), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(7227), - }, - [3067] = { - [sym__concat] = ACTIONS(1744), - [anon_sym_esac] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_SEMI_SEMI] = ACTIONS(1746), - [anon_sym_PIPE_AMP] = ACTIONS(1746), - [anon_sym_AMP_AMP] = ACTIONS(1746), - [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LF] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1746), - }, - [3068] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(7229), - }, - [3069] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7231), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [3070] = { + [2741] = { [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(7233), + [anon_sym_EQ] = ACTIONS(6463), [sym_comment] = ACTIONS(53), }, - [3071] = { - [sym_concatenation] = STATE(3144), + [2742] = { + [sym_concatenation] = STATE(2785), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3144), - [anon_sym_RBRACE] = ACTIONS(7235), - [anon_sym_EQ] = ACTIONS(7237), + [aux_sym_expansion_repeat1] = STATE(2785), + [anon_sym_RBRACE] = ACTIONS(6465), + [anon_sym_EQ] = ACTIONS(6467), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7239), + [anon_sym_POUND] = ACTIONS(6469), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(7241), - [anon_sym_COLON] = ACTIONS(7237), - [anon_sym_COLON_QMARK] = ACTIONS(7237), - [anon_sym_COLON_DASH] = ACTIONS(7237), - [anon_sym_PERCENT] = ACTIONS(7237), - [anon_sym_DASH] = ACTIONS(7237), + [aux_sym_SLASH] = ACTIONS(6471), + [anon_sym_COLON] = ACTIONS(6467), + [anon_sym_COLON_QMARK] = ACTIONS(6467), + [anon_sym_COLON_DASH] = ACTIONS(6467), + [anon_sym_PERCENT] = ACTIONS(6467), + [anon_sym_DASH] = ACTIONS(6467), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -79949,29 +68974,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3072] = { - [sym_concatenation] = STATE(3147), + [2743] = { + [sym_concatenation] = STATE(2788), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3147), - [anon_sym_RBRACE] = ACTIONS(7243), - [anon_sym_EQ] = ACTIONS(7245), + [aux_sym_expansion_repeat1] = STATE(2788), + [anon_sym_RBRACE] = ACTIONS(6473), + [anon_sym_EQ] = ACTIONS(6475), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7247), + [anon_sym_POUND] = ACTIONS(6477), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(7249), - [anon_sym_COLON] = ACTIONS(7245), - [anon_sym_COLON_QMARK] = ACTIONS(7245), - [anon_sym_COLON_DASH] = ACTIONS(7245), - [anon_sym_PERCENT] = ACTIONS(7245), - [anon_sym_DASH] = ACTIONS(7245), + [aux_sym_SLASH] = ACTIONS(6479), + [anon_sym_COLON] = ACTIONS(6475), + [anon_sym_COLON_QMARK] = ACTIONS(6475), + [anon_sym_COLON_DASH] = ACTIONS(6475), + [anon_sym_PERCENT] = ACTIONS(6475), + [anon_sym_DASH] = ACTIONS(6475), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -79979,29 +69004,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3073] = { - [sym_concatenation] = STATE(3149), + [2744] = { + [sym_concatenation] = STATE(2790), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3149), - [anon_sym_RBRACE] = ACTIONS(7223), - [anon_sym_EQ] = ACTIONS(7251), + [aux_sym_expansion_repeat1] = STATE(2790), + [anon_sym_RBRACE] = ACTIONS(6453), + [anon_sym_EQ] = ACTIONS(6481), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7253), + [anon_sym_POUND] = ACTIONS(6483), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(7255), - [anon_sym_COLON] = ACTIONS(7251), - [anon_sym_COLON_QMARK] = ACTIONS(7251), - [anon_sym_COLON_DASH] = ACTIONS(7251), - [anon_sym_PERCENT] = ACTIONS(7251), - [anon_sym_DASH] = ACTIONS(7251), + [aux_sym_SLASH] = ACTIONS(6485), + [anon_sym_COLON] = ACTIONS(6481), + [anon_sym_COLON_QMARK] = ACTIONS(6481), + [anon_sym_COLON_DASH] = ACTIONS(6481), + [anon_sym_PERCENT] = ACTIONS(6481), + [anon_sym_DASH] = ACTIONS(6481), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -80009,45 +69034,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3074] = { - [sym__concat] = ACTIONS(1810), - [anon_sym_esac] = ACTIONS(1812), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_SEMI_SEMI] = ACTIONS(1812), - [anon_sym_PIPE_AMP] = ACTIONS(1812), - [anon_sym_AMP_AMP] = ACTIONS(1812), - [anon_sym_PIPE_PIPE] = ACTIONS(1812), + [2745] = { + [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(177), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_LF] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1812), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_LF] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1800), }, - [3075] = { + [2746] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(7257), + [sym_regex_without_right_brace] = ACTIONS(6487), }, - [3076] = { - [sym_concatenation] = STATE(839), + [2747] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7259), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6489), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -80055,45 +69080,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3077] = { - [sym__concat] = ACTIONS(1818), - [anon_sym_esac] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_SEMI_SEMI] = ACTIONS(1820), - [anon_sym_PIPE_AMP] = ACTIONS(1820), - [anon_sym_AMP_AMP] = ACTIONS(1820), - [anon_sym_PIPE_PIPE] = ACTIONS(1820), + [2748] = { + [sym__concat] = ACTIONS(1806), + [anon_sym_esac] = ACTIONS(1808), + [anon_sym_PIPE] = ACTIONS(1808), + [anon_sym_SEMI_SEMI] = ACTIONS(1808), + [anon_sym_PIPE_AMP] = ACTIONS(1808), + [anon_sym_AMP_AMP] = ACTIONS(1808), + [anon_sym_PIPE_PIPE] = ACTIONS(1808), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_LF] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1808), + [anon_sym_LF] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1808), }, - [3078] = { + [2749] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(7261), + [sym_regex_without_right_brace] = ACTIONS(6491), }, - [3079] = { - [sym_concatenation] = STATE(839), + [2750] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7223), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6453), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -80101,179 +69126,179 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3080] = { - [sym__concat] = ACTIONS(1952), - [anon_sym_esac] = ACTIONS(1954), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_SEMI_SEMI] = ACTIONS(1954), - [anon_sym_PIPE_AMP] = ACTIONS(1954), - [anon_sym_AMP_AMP] = ACTIONS(1954), - [anon_sym_PIPE_PIPE] = ACTIONS(1954), + [2751] = { + [sym__concat] = ACTIONS(1940), + [anon_sym_esac] = ACTIONS(1942), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1942), + [anon_sym_PIPE_AMP] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1942), + [anon_sym_PIPE_PIPE] = ACTIONS(1942), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_LF] = ACTIONS(1952), - [anon_sym_AMP] = ACTIONS(1954), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1942), }, - [3081] = { - [sym__concat] = ACTIONS(2018), - [anon_sym_esac] = ACTIONS(2020), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_SEMI_SEMI] = ACTIONS(2020), - [anon_sym_PIPE_AMP] = ACTIONS(2020), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), + [2752] = { + [sym__concat] = ACTIONS(2006), + [anon_sym_esac] = ACTIONS(2008), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_SEMI_SEMI] = ACTIONS(2008), + [anon_sym_PIPE_AMP] = ACTIONS(2008), + [anon_sym_AMP_AMP] = ACTIONS(2008), + [anon_sym_PIPE_PIPE] = ACTIONS(2008), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2020), - [anon_sym_LF] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_LF] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2008), }, - [3082] = { - [aux_sym_concatenation_repeat1] = STATE(3082), - [sym_file_descriptor] = ACTIONS(1654), - [sym__concat] = ACTIONS(5399), - [anon_sym_esac] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_SEMI_SEMI] = ACTIONS(1656), - [anon_sym_PIPE_AMP] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1656), - [anon_sym_PIPE_PIPE] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_GT] = ACTIONS(1656), - [anon_sym_AMP_GT] = ACTIONS(1656), - [anon_sym_AMP_GT_GT] = ACTIONS(1656), - [anon_sym_LT_AMP] = ACTIONS(1656), - [anon_sym_GT_AMP] = ACTIONS(1656), - [anon_sym_LT_LT] = ACTIONS(1656), - [anon_sym_LT_LT_DASH] = ACTIONS(1656), - [anon_sym_LT_LT_LT] = ACTIONS(1656), + [2753] = { + [aux_sym_concatenation_repeat1] = STATE(2753), + [sym_file_descriptor] = ACTIONS(1642), + [sym__concat] = ACTIONS(5184), + [anon_sym_esac] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_GT_GT] = ACTIONS(1644), + [anon_sym_AMP_GT] = ACTIONS(1644), + [anon_sym_AMP_GT_GT] = ACTIONS(1644), + [anon_sym_LT_AMP] = ACTIONS(1644), + [anon_sym_GT_AMP] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1644), + [anon_sym_LT_LT_DASH] = ACTIONS(1644), + [anon_sym_LT_LT_LT] = ACTIONS(1644), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LF] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1644), }, - [3083] = { - [sym__concat] = ACTIONS(4884), - [sym_variable_name] = ACTIONS(4884), - [anon_sym_esac] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4886), - [anon_sym_SEMI_SEMI] = ACTIONS(4886), - [anon_sym_PIPE_AMP] = ACTIONS(4886), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [sym__special_characters] = ACTIONS(4886), - [anon_sym_DQUOTE] = ACTIONS(4886), - [anon_sym_DOLLAR] = ACTIONS(4886), - [sym_raw_string] = ACTIONS(4886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4886), - [anon_sym_BQUOTE] = ACTIONS(4886), - [anon_sym_LT_LPAREN] = ACTIONS(4886), - [anon_sym_GT_LPAREN] = ACTIONS(4886), + [2754] = { + [sym__concat] = ACTIONS(4741), + [sym_variable_name] = ACTIONS(4741), + [anon_sym_esac] = ACTIONS(4743), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_SEMI_SEMI] = ACTIONS(4743), + [anon_sym_PIPE_AMP] = ACTIONS(4743), + [anon_sym_AMP_AMP] = ACTIONS(4743), + [anon_sym_PIPE_PIPE] = ACTIONS(4743), + [sym__special_characters] = ACTIONS(4743), + [anon_sym_DQUOTE] = ACTIONS(4743), + [anon_sym_DOLLAR] = ACTIONS(4743), + [sym_raw_string] = ACTIONS(4743), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4743), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4743), + [anon_sym_BQUOTE] = ACTIONS(4743), + [anon_sym_LT_LPAREN] = ACTIONS(4743), + [anon_sym_GT_LPAREN] = ACTIONS(4743), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4886), - [sym_word] = ACTIONS(4886), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym_LF] = ACTIONS(4884), - [anon_sym_AMP] = ACTIONS(4886), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4743), + [sym_word] = ACTIONS(4743), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym_LF] = ACTIONS(4741), + [anon_sym_AMP] = ACTIONS(4743), }, - [3084] = { - [sym__concat] = ACTIONS(4888), - [sym_variable_name] = ACTIONS(4888), - [anon_sym_esac] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4890), - [anon_sym_SEMI_SEMI] = ACTIONS(4890), - [anon_sym_PIPE_AMP] = ACTIONS(4890), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [sym__special_characters] = ACTIONS(4890), - [anon_sym_DQUOTE] = ACTIONS(4890), - [anon_sym_DOLLAR] = ACTIONS(4890), - [sym_raw_string] = ACTIONS(4890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4890), - [anon_sym_BQUOTE] = ACTIONS(4890), - [anon_sym_LT_LPAREN] = ACTIONS(4890), - [anon_sym_GT_LPAREN] = ACTIONS(4890), + [2755] = { + [sym__concat] = ACTIONS(4745), + [sym_variable_name] = ACTIONS(4745), + [anon_sym_esac] = ACTIONS(4747), + [anon_sym_PIPE] = ACTIONS(4747), + [anon_sym_SEMI_SEMI] = ACTIONS(4747), + [anon_sym_PIPE_AMP] = ACTIONS(4747), + [anon_sym_AMP_AMP] = ACTIONS(4747), + [anon_sym_PIPE_PIPE] = ACTIONS(4747), + [sym__special_characters] = ACTIONS(4747), + [anon_sym_DQUOTE] = ACTIONS(4747), + [anon_sym_DOLLAR] = ACTIONS(4747), + [sym_raw_string] = ACTIONS(4747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4747), + [anon_sym_BQUOTE] = ACTIONS(4747), + [anon_sym_LT_LPAREN] = ACTIONS(4747), + [anon_sym_GT_LPAREN] = ACTIONS(4747), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4890), - [sym_word] = ACTIONS(4890), - [anon_sym_SEMI] = ACTIONS(4890), - [anon_sym_LF] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4890), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4747), + [sym_word] = ACTIONS(4747), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_LF] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4747), }, - [3085] = { - [sym__concat] = ACTIONS(4892), - [sym_variable_name] = ACTIONS(4892), - [anon_sym_esac] = ACTIONS(4894), - [anon_sym_PIPE] = ACTIONS(4894), - [anon_sym_SEMI_SEMI] = ACTIONS(4894), - [anon_sym_PIPE_AMP] = ACTIONS(4894), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE_PIPE] = ACTIONS(4894), - [sym__special_characters] = ACTIONS(4894), - [anon_sym_DQUOTE] = ACTIONS(4894), - [anon_sym_DOLLAR] = ACTIONS(4894), - [sym_raw_string] = ACTIONS(4894), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4894), - [anon_sym_BQUOTE] = ACTIONS(4894), - [anon_sym_LT_LPAREN] = ACTIONS(4894), - [anon_sym_GT_LPAREN] = ACTIONS(4894), + [2756] = { + [sym__concat] = ACTIONS(4749), + [sym_variable_name] = ACTIONS(4749), + [anon_sym_esac] = ACTIONS(4751), + [anon_sym_PIPE] = ACTIONS(4751), + [anon_sym_SEMI_SEMI] = ACTIONS(4751), + [anon_sym_PIPE_AMP] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [sym__special_characters] = ACTIONS(4751), + [anon_sym_DQUOTE] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4751), + [sym_raw_string] = ACTIONS(4751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4751), + [anon_sym_BQUOTE] = ACTIONS(4751), + [anon_sym_LT_LPAREN] = ACTIONS(4751), + [anon_sym_GT_LPAREN] = ACTIONS(4751), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4894), - [sym_word] = ACTIONS(4894), - [anon_sym_SEMI] = ACTIONS(4894), - [anon_sym_LF] = ACTIONS(4892), - [anon_sym_AMP] = ACTIONS(4894), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4751), + [sym_word] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_LF] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4751), }, - [3086] = { - [sym__concat] = ACTIONS(4896), - [sym_variable_name] = ACTIONS(4896), - [anon_sym_esac] = ACTIONS(4898), - [anon_sym_PIPE] = ACTIONS(4898), - [anon_sym_SEMI_SEMI] = ACTIONS(4898), - [anon_sym_PIPE_AMP] = ACTIONS(4898), - [anon_sym_AMP_AMP] = ACTIONS(4898), - [anon_sym_PIPE_PIPE] = ACTIONS(4898), - [sym__special_characters] = ACTIONS(4898), - [anon_sym_DQUOTE] = ACTIONS(4898), - [anon_sym_DOLLAR] = ACTIONS(4898), - [sym_raw_string] = ACTIONS(4898), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4898), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4898), - [anon_sym_BQUOTE] = ACTIONS(4898), - [anon_sym_LT_LPAREN] = ACTIONS(4898), - [anon_sym_GT_LPAREN] = ACTIONS(4898), + [2757] = { + [sym__concat] = ACTIONS(4753), + [sym_variable_name] = ACTIONS(4753), + [anon_sym_esac] = ACTIONS(4755), + [anon_sym_PIPE] = ACTIONS(4755), + [anon_sym_SEMI_SEMI] = ACTIONS(4755), + [anon_sym_PIPE_AMP] = ACTIONS(4755), + [anon_sym_AMP_AMP] = ACTIONS(4755), + [anon_sym_PIPE_PIPE] = ACTIONS(4755), + [sym__special_characters] = ACTIONS(4755), + [anon_sym_DQUOTE] = ACTIONS(4755), + [anon_sym_DOLLAR] = ACTIONS(4755), + [sym_raw_string] = ACTIONS(4755), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4755), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4755), + [anon_sym_BQUOTE] = ACTIONS(4755), + [anon_sym_LT_LPAREN] = ACTIONS(4755), + [anon_sym_GT_LPAREN] = ACTIONS(4755), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4898), - [sym_word] = ACTIONS(4898), - [anon_sym_SEMI] = ACTIONS(4898), - [anon_sym_LF] = ACTIONS(4896), - [anon_sym_AMP] = ACTIONS(4898), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4755), + [sym_word] = ACTIONS(4755), + [anon_sym_SEMI] = ACTIONS(4755), + [anon_sym_LF] = ACTIONS(4753), + [anon_sym_AMP] = ACTIONS(4755), }, - [3087] = { - [sym_concatenation] = STATE(839), + [2758] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7263), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6493), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -80281,53 +69306,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3088] = { - [sym__concat] = ACTIONS(4902), - [sym_variable_name] = ACTIONS(4902), - [anon_sym_esac] = ACTIONS(4904), - [anon_sym_PIPE] = ACTIONS(4904), - [anon_sym_SEMI_SEMI] = ACTIONS(4904), - [anon_sym_PIPE_AMP] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4904), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [sym__special_characters] = ACTIONS(4904), - [anon_sym_DQUOTE] = ACTIONS(4904), - [anon_sym_DOLLAR] = ACTIONS(4904), - [sym_raw_string] = ACTIONS(4904), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4904), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4904), - [anon_sym_BQUOTE] = ACTIONS(4904), - [anon_sym_LT_LPAREN] = ACTIONS(4904), - [anon_sym_GT_LPAREN] = ACTIONS(4904), + [2759] = { + [sym__concat] = ACTIONS(4759), + [sym_variable_name] = ACTIONS(4759), + [anon_sym_esac] = ACTIONS(4761), + [anon_sym_PIPE] = ACTIONS(4761), + [anon_sym_SEMI_SEMI] = ACTIONS(4761), + [anon_sym_PIPE_AMP] = ACTIONS(4761), + [anon_sym_AMP_AMP] = ACTIONS(4761), + [anon_sym_PIPE_PIPE] = ACTIONS(4761), + [sym__special_characters] = ACTIONS(4761), + [anon_sym_DQUOTE] = ACTIONS(4761), + [anon_sym_DOLLAR] = ACTIONS(4761), + [sym_raw_string] = ACTIONS(4761), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4761), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4761), + [anon_sym_LT_LPAREN] = ACTIONS(4761), + [anon_sym_GT_LPAREN] = ACTIONS(4761), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4904), - [sym_word] = ACTIONS(4904), - [anon_sym_SEMI] = ACTIONS(4904), - [anon_sym_LF] = ACTIONS(4902), - [anon_sym_AMP] = ACTIONS(4904), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4761), + [sym_word] = ACTIONS(4761), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_LF] = ACTIONS(4759), + [anon_sym_AMP] = ACTIONS(4761), }, - [3089] = { - [sym_concatenation] = STATE(839), + [2760] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7265), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6495), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -80335,53 +69360,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3090] = { - [sym__concat] = ACTIONS(4908), - [sym_variable_name] = ACTIONS(4908), - [anon_sym_esac] = ACTIONS(4910), - [anon_sym_PIPE] = ACTIONS(4910), - [anon_sym_SEMI_SEMI] = ACTIONS(4910), - [anon_sym_PIPE_AMP] = ACTIONS(4910), - [anon_sym_AMP_AMP] = ACTIONS(4910), - [anon_sym_PIPE_PIPE] = ACTIONS(4910), - [sym__special_characters] = ACTIONS(4910), - [anon_sym_DQUOTE] = ACTIONS(4910), - [anon_sym_DOLLAR] = ACTIONS(4910), - [sym_raw_string] = ACTIONS(4910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4910), - [anon_sym_BQUOTE] = ACTIONS(4910), - [anon_sym_LT_LPAREN] = ACTIONS(4910), - [anon_sym_GT_LPAREN] = ACTIONS(4910), + [2761] = { + [sym__concat] = ACTIONS(4765), + [sym_variable_name] = ACTIONS(4765), + [anon_sym_esac] = ACTIONS(4767), + [anon_sym_PIPE] = ACTIONS(4767), + [anon_sym_SEMI_SEMI] = ACTIONS(4767), + [anon_sym_PIPE_AMP] = ACTIONS(4767), + [anon_sym_AMP_AMP] = ACTIONS(4767), + [anon_sym_PIPE_PIPE] = ACTIONS(4767), + [sym__special_characters] = ACTIONS(4767), + [anon_sym_DQUOTE] = ACTIONS(4767), + [anon_sym_DOLLAR] = ACTIONS(4767), + [sym_raw_string] = ACTIONS(4767), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4767), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4767), + [anon_sym_BQUOTE] = ACTIONS(4767), + [anon_sym_LT_LPAREN] = ACTIONS(4767), + [anon_sym_GT_LPAREN] = ACTIONS(4767), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4910), - [sym_word] = ACTIONS(4910), - [anon_sym_SEMI] = ACTIONS(4910), - [anon_sym_LF] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4910), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4767), + [sym_word] = ACTIONS(4767), + [anon_sym_SEMI] = ACTIONS(4767), + [anon_sym_LF] = ACTIONS(4765), + [anon_sym_AMP] = ACTIONS(4767), }, - [3091] = { - [sym_concatenation] = STATE(839), + [2762] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7267), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6497), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -80389,174 +69414,174 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3092] = { - [sym__concat] = ACTIONS(4914), - [sym_variable_name] = ACTIONS(4914), - [anon_sym_esac] = ACTIONS(4916), - [anon_sym_PIPE] = ACTIONS(4916), - [anon_sym_SEMI_SEMI] = ACTIONS(4916), - [anon_sym_PIPE_AMP] = ACTIONS(4916), - [anon_sym_AMP_AMP] = ACTIONS(4916), - [anon_sym_PIPE_PIPE] = ACTIONS(4916), - [sym__special_characters] = ACTIONS(4916), - [anon_sym_DQUOTE] = ACTIONS(4916), - [anon_sym_DOLLAR] = ACTIONS(4916), - [sym_raw_string] = ACTIONS(4916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4916), - [anon_sym_BQUOTE] = ACTIONS(4916), - [anon_sym_LT_LPAREN] = ACTIONS(4916), - [anon_sym_GT_LPAREN] = ACTIONS(4916), + [2763] = { + [sym__concat] = ACTIONS(4771), + [sym_variable_name] = ACTIONS(4771), + [anon_sym_esac] = ACTIONS(4773), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_SEMI_SEMI] = ACTIONS(4773), + [anon_sym_PIPE_AMP] = ACTIONS(4773), + [anon_sym_AMP_AMP] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4773), + [sym__special_characters] = ACTIONS(4773), + [anon_sym_DQUOTE] = ACTIONS(4773), + [anon_sym_DOLLAR] = ACTIONS(4773), + [sym_raw_string] = ACTIONS(4773), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4773), + [anon_sym_BQUOTE] = ACTIONS(4773), + [anon_sym_LT_LPAREN] = ACTIONS(4773), + [anon_sym_GT_LPAREN] = ACTIONS(4773), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4916), - [sym_word] = ACTIONS(4916), - [anon_sym_SEMI] = ACTIONS(4916), - [anon_sym_LF] = ACTIONS(4914), - [anon_sym_AMP] = ACTIONS(4916), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4773), + [sym_word] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4773), + [anon_sym_LF] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), }, - [3093] = { - [sym__concat] = ACTIONS(4918), - [sym_variable_name] = ACTIONS(4918), - [anon_sym_esac] = ACTIONS(4920), - [anon_sym_PIPE] = ACTIONS(4920), - [anon_sym_SEMI_SEMI] = ACTIONS(4920), - [anon_sym_PIPE_AMP] = ACTIONS(4920), - [anon_sym_AMP_AMP] = ACTIONS(4920), - [anon_sym_PIPE_PIPE] = ACTIONS(4920), - [sym__special_characters] = ACTIONS(4920), - [anon_sym_DQUOTE] = ACTIONS(4920), - [anon_sym_DOLLAR] = ACTIONS(4920), - [sym_raw_string] = ACTIONS(4920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4920), - [anon_sym_BQUOTE] = ACTIONS(4920), - [anon_sym_LT_LPAREN] = ACTIONS(4920), - [anon_sym_GT_LPAREN] = ACTIONS(4920), + [2764] = { + [sym__concat] = ACTIONS(4775), + [sym_variable_name] = ACTIONS(4775), + [anon_sym_esac] = ACTIONS(4777), + [anon_sym_PIPE] = ACTIONS(4777), + [anon_sym_SEMI_SEMI] = ACTIONS(4777), + [anon_sym_PIPE_AMP] = ACTIONS(4777), + [anon_sym_AMP_AMP] = ACTIONS(4777), + [anon_sym_PIPE_PIPE] = ACTIONS(4777), + [sym__special_characters] = ACTIONS(4777), + [anon_sym_DQUOTE] = ACTIONS(4777), + [anon_sym_DOLLAR] = ACTIONS(4777), + [sym_raw_string] = ACTIONS(4777), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4777), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4777), + [anon_sym_BQUOTE] = ACTIONS(4777), + [anon_sym_LT_LPAREN] = ACTIONS(4777), + [anon_sym_GT_LPAREN] = ACTIONS(4777), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4920), - [sym_word] = ACTIONS(4920), - [anon_sym_SEMI] = ACTIONS(4920), - [anon_sym_LF] = ACTIONS(4918), - [anon_sym_AMP] = ACTIONS(4920), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4777), + [sym_word] = ACTIONS(4777), + [anon_sym_SEMI] = ACTIONS(4777), + [anon_sym_LF] = ACTIONS(4775), + [anon_sym_AMP] = ACTIONS(4777), }, - [3094] = { - [sym__concat] = ACTIONS(4884), - [anon_sym_esac] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4886), - [anon_sym_SEMI_SEMI] = ACTIONS(4886), - [anon_sym_PIPE_AMP] = ACTIONS(4886), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [sym__special_characters] = ACTIONS(4886), - [anon_sym_DQUOTE] = ACTIONS(4886), - [anon_sym_DOLLAR] = ACTIONS(4886), - [sym_raw_string] = ACTIONS(4886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4886), - [anon_sym_BQUOTE] = ACTIONS(4886), - [anon_sym_LT_LPAREN] = ACTIONS(4886), - [anon_sym_GT_LPAREN] = ACTIONS(4886), + [2765] = { + [sym__concat] = ACTIONS(4741), + [anon_sym_esac] = ACTIONS(4743), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_SEMI_SEMI] = ACTIONS(4743), + [anon_sym_PIPE_AMP] = ACTIONS(4743), + [anon_sym_AMP_AMP] = ACTIONS(4743), + [anon_sym_PIPE_PIPE] = ACTIONS(4743), + [sym__special_characters] = ACTIONS(4743), + [anon_sym_DQUOTE] = ACTIONS(4743), + [anon_sym_DOLLAR] = ACTIONS(4743), + [sym_raw_string] = ACTIONS(4743), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4743), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4743), + [anon_sym_BQUOTE] = ACTIONS(4743), + [anon_sym_LT_LPAREN] = ACTIONS(4743), + [anon_sym_GT_LPAREN] = ACTIONS(4743), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4886), - [sym_word] = ACTIONS(4886), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym_LF] = ACTIONS(4884), - [anon_sym_AMP] = ACTIONS(4886), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4743), + [sym_word] = ACTIONS(4743), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym_LF] = ACTIONS(4741), + [anon_sym_AMP] = ACTIONS(4743), }, - [3095] = { - [sym__concat] = ACTIONS(4888), - [anon_sym_esac] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4890), - [anon_sym_SEMI_SEMI] = ACTIONS(4890), - [anon_sym_PIPE_AMP] = ACTIONS(4890), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [sym__special_characters] = ACTIONS(4890), - [anon_sym_DQUOTE] = ACTIONS(4890), - [anon_sym_DOLLAR] = ACTIONS(4890), - [sym_raw_string] = ACTIONS(4890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4890), - [anon_sym_BQUOTE] = ACTIONS(4890), - [anon_sym_LT_LPAREN] = ACTIONS(4890), - [anon_sym_GT_LPAREN] = ACTIONS(4890), + [2766] = { + [sym__concat] = ACTIONS(4745), + [anon_sym_esac] = ACTIONS(4747), + [anon_sym_PIPE] = ACTIONS(4747), + [anon_sym_SEMI_SEMI] = ACTIONS(4747), + [anon_sym_PIPE_AMP] = ACTIONS(4747), + [anon_sym_AMP_AMP] = ACTIONS(4747), + [anon_sym_PIPE_PIPE] = ACTIONS(4747), + [sym__special_characters] = ACTIONS(4747), + [anon_sym_DQUOTE] = ACTIONS(4747), + [anon_sym_DOLLAR] = ACTIONS(4747), + [sym_raw_string] = ACTIONS(4747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4747), + [anon_sym_BQUOTE] = ACTIONS(4747), + [anon_sym_LT_LPAREN] = ACTIONS(4747), + [anon_sym_GT_LPAREN] = ACTIONS(4747), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4890), - [sym_word] = ACTIONS(4890), - [anon_sym_SEMI] = ACTIONS(4890), - [anon_sym_LF] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4890), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4747), + [sym_word] = ACTIONS(4747), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_LF] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4747), }, - [3096] = { - [sym__concat] = ACTIONS(4892), - [anon_sym_esac] = ACTIONS(4894), - [anon_sym_PIPE] = ACTIONS(4894), - [anon_sym_SEMI_SEMI] = ACTIONS(4894), - [anon_sym_PIPE_AMP] = ACTIONS(4894), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE_PIPE] = ACTIONS(4894), - [sym__special_characters] = ACTIONS(4894), - [anon_sym_DQUOTE] = ACTIONS(4894), - [anon_sym_DOLLAR] = ACTIONS(4894), - [sym_raw_string] = ACTIONS(4894), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4894), - [anon_sym_BQUOTE] = ACTIONS(4894), - [anon_sym_LT_LPAREN] = ACTIONS(4894), - [anon_sym_GT_LPAREN] = ACTIONS(4894), + [2767] = { + [sym__concat] = ACTIONS(4749), + [anon_sym_esac] = ACTIONS(4751), + [anon_sym_PIPE] = ACTIONS(4751), + [anon_sym_SEMI_SEMI] = ACTIONS(4751), + [anon_sym_PIPE_AMP] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [sym__special_characters] = ACTIONS(4751), + [anon_sym_DQUOTE] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4751), + [sym_raw_string] = ACTIONS(4751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4751), + [anon_sym_BQUOTE] = ACTIONS(4751), + [anon_sym_LT_LPAREN] = ACTIONS(4751), + [anon_sym_GT_LPAREN] = ACTIONS(4751), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4894), - [sym_word] = ACTIONS(4894), - [anon_sym_SEMI] = ACTIONS(4894), - [anon_sym_LF] = ACTIONS(4892), - [anon_sym_AMP] = ACTIONS(4894), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4751), + [sym_word] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_LF] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4751), }, - [3097] = { - [sym__concat] = ACTIONS(4896), - [anon_sym_esac] = ACTIONS(4898), - [anon_sym_PIPE] = ACTIONS(4898), - [anon_sym_SEMI_SEMI] = ACTIONS(4898), - [anon_sym_PIPE_AMP] = ACTIONS(4898), - [anon_sym_AMP_AMP] = ACTIONS(4898), - [anon_sym_PIPE_PIPE] = ACTIONS(4898), - [sym__special_characters] = ACTIONS(4898), - [anon_sym_DQUOTE] = ACTIONS(4898), - [anon_sym_DOLLAR] = ACTIONS(4898), - [sym_raw_string] = ACTIONS(4898), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4898), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4898), - [anon_sym_BQUOTE] = ACTIONS(4898), - [anon_sym_LT_LPAREN] = ACTIONS(4898), - [anon_sym_GT_LPAREN] = ACTIONS(4898), + [2768] = { + [sym__concat] = ACTIONS(4753), + [anon_sym_esac] = ACTIONS(4755), + [anon_sym_PIPE] = ACTIONS(4755), + [anon_sym_SEMI_SEMI] = ACTIONS(4755), + [anon_sym_PIPE_AMP] = ACTIONS(4755), + [anon_sym_AMP_AMP] = ACTIONS(4755), + [anon_sym_PIPE_PIPE] = ACTIONS(4755), + [sym__special_characters] = ACTIONS(4755), + [anon_sym_DQUOTE] = ACTIONS(4755), + [anon_sym_DOLLAR] = ACTIONS(4755), + [sym_raw_string] = ACTIONS(4755), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4755), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4755), + [anon_sym_BQUOTE] = ACTIONS(4755), + [anon_sym_LT_LPAREN] = ACTIONS(4755), + [anon_sym_GT_LPAREN] = ACTIONS(4755), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4898), - [sym_word] = ACTIONS(4898), - [anon_sym_SEMI] = ACTIONS(4898), - [anon_sym_LF] = ACTIONS(4896), - [anon_sym_AMP] = ACTIONS(4898), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4755), + [sym_word] = ACTIONS(4755), + [anon_sym_SEMI] = ACTIONS(4755), + [anon_sym_LF] = ACTIONS(4753), + [anon_sym_AMP] = ACTIONS(4755), }, - [3098] = { - [sym_concatenation] = STATE(839), + [2769] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7269), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6499), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -80564,52 +69589,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3099] = { - [sym__concat] = ACTIONS(4902), - [anon_sym_esac] = ACTIONS(4904), - [anon_sym_PIPE] = ACTIONS(4904), - [anon_sym_SEMI_SEMI] = ACTIONS(4904), - [anon_sym_PIPE_AMP] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4904), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [sym__special_characters] = ACTIONS(4904), - [anon_sym_DQUOTE] = ACTIONS(4904), - [anon_sym_DOLLAR] = ACTIONS(4904), - [sym_raw_string] = ACTIONS(4904), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4904), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4904), - [anon_sym_BQUOTE] = ACTIONS(4904), - [anon_sym_LT_LPAREN] = ACTIONS(4904), - [anon_sym_GT_LPAREN] = ACTIONS(4904), + [2770] = { + [sym__concat] = ACTIONS(4759), + [anon_sym_esac] = ACTIONS(4761), + [anon_sym_PIPE] = ACTIONS(4761), + [anon_sym_SEMI_SEMI] = ACTIONS(4761), + [anon_sym_PIPE_AMP] = ACTIONS(4761), + [anon_sym_AMP_AMP] = ACTIONS(4761), + [anon_sym_PIPE_PIPE] = ACTIONS(4761), + [sym__special_characters] = ACTIONS(4761), + [anon_sym_DQUOTE] = ACTIONS(4761), + [anon_sym_DOLLAR] = ACTIONS(4761), + [sym_raw_string] = ACTIONS(4761), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4761), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4761), + [anon_sym_LT_LPAREN] = ACTIONS(4761), + [anon_sym_GT_LPAREN] = ACTIONS(4761), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4904), - [sym_word] = ACTIONS(4904), - [anon_sym_SEMI] = ACTIONS(4904), - [anon_sym_LF] = ACTIONS(4902), - [anon_sym_AMP] = ACTIONS(4904), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4761), + [sym_word] = ACTIONS(4761), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_LF] = ACTIONS(4759), + [anon_sym_AMP] = ACTIONS(4761), }, - [3100] = { - [sym_concatenation] = STATE(839), + [2771] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7271), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6501), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -80617,52 +69642,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3101] = { - [sym__concat] = ACTIONS(4908), - [anon_sym_esac] = ACTIONS(4910), - [anon_sym_PIPE] = ACTIONS(4910), - [anon_sym_SEMI_SEMI] = ACTIONS(4910), - [anon_sym_PIPE_AMP] = ACTIONS(4910), - [anon_sym_AMP_AMP] = ACTIONS(4910), - [anon_sym_PIPE_PIPE] = ACTIONS(4910), - [sym__special_characters] = ACTIONS(4910), - [anon_sym_DQUOTE] = ACTIONS(4910), - [anon_sym_DOLLAR] = ACTIONS(4910), - [sym_raw_string] = ACTIONS(4910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4910), - [anon_sym_BQUOTE] = ACTIONS(4910), - [anon_sym_LT_LPAREN] = ACTIONS(4910), - [anon_sym_GT_LPAREN] = ACTIONS(4910), + [2772] = { + [sym__concat] = ACTIONS(4765), + [anon_sym_esac] = ACTIONS(4767), + [anon_sym_PIPE] = ACTIONS(4767), + [anon_sym_SEMI_SEMI] = ACTIONS(4767), + [anon_sym_PIPE_AMP] = ACTIONS(4767), + [anon_sym_AMP_AMP] = ACTIONS(4767), + [anon_sym_PIPE_PIPE] = ACTIONS(4767), + [sym__special_characters] = ACTIONS(4767), + [anon_sym_DQUOTE] = ACTIONS(4767), + [anon_sym_DOLLAR] = ACTIONS(4767), + [sym_raw_string] = ACTIONS(4767), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4767), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4767), + [anon_sym_BQUOTE] = ACTIONS(4767), + [anon_sym_LT_LPAREN] = ACTIONS(4767), + [anon_sym_GT_LPAREN] = ACTIONS(4767), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4910), - [sym_word] = ACTIONS(4910), - [anon_sym_SEMI] = ACTIONS(4910), - [anon_sym_LF] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4910), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4767), + [sym_word] = ACTIONS(4767), + [anon_sym_SEMI] = ACTIONS(4767), + [anon_sym_LF] = ACTIONS(4765), + [anon_sym_AMP] = ACTIONS(4767), }, - [3102] = { - [sym_concatenation] = STATE(839), + [2773] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7273), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6503), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -80670,313 +69695,105 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3103] = { - [sym__concat] = ACTIONS(4914), - [anon_sym_esac] = ACTIONS(4916), - [anon_sym_PIPE] = ACTIONS(4916), - [anon_sym_SEMI_SEMI] = ACTIONS(4916), - [anon_sym_PIPE_AMP] = ACTIONS(4916), - [anon_sym_AMP_AMP] = ACTIONS(4916), - [anon_sym_PIPE_PIPE] = ACTIONS(4916), - [sym__special_characters] = ACTIONS(4916), - [anon_sym_DQUOTE] = ACTIONS(4916), - [anon_sym_DOLLAR] = ACTIONS(4916), - [sym_raw_string] = ACTIONS(4916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4916), - [anon_sym_BQUOTE] = ACTIONS(4916), - [anon_sym_LT_LPAREN] = ACTIONS(4916), - [anon_sym_GT_LPAREN] = ACTIONS(4916), + [2774] = { + [sym__concat] = ACTIONS(4771), + [anon_sym_esac] = ACTIONS(4773), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_SEMI_SEMI] = ACTIONS(4773), + [anon_sym_PIPE_AMP] = ACTIONS(4773), + [anon_sym_AMP_AMP] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4773), + [sym__special_characters] = ACTIONS(4773), + [anon_sym_DQUOTE] = ACTIONS(4773), + [anon_sym_DOLLAR] = ACTIONS(4773), + [sym_raw_string] = ACTIONS(4773), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4773), + [anon_sym_BQUOTE] = ACTIONS(4773), + [anon_sym_LT_LPAREN] = ACTIONS(4773), + [anon_sym_GT_LPAREN] = ACTIONS(4773), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4916), - [sym_word] = ACTIONS(4916), - [anon_sym_SEMI] = ACTIONS(4916), - [anon_sym_LF] = ACTIONS(4914), - [anon_sym_AMP] = ACTIONS(4916), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4773), + [sym_word] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4773), + [anon_sym_LF] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), }, - [3104] = { - [sym__concat] = ACTIONS(4918), - [anon_sym_esac] = ACTIONS(4920), - [anon_sym_PIPE] = ACTIONS(4920), - [anon_sym_SEMI_SEMI] = ACTIONS(4920), - [anon_sym_PIPE_AMP] = ACTIONS(4920), - [anon_sym_AMP_AMP] = ACTIONS(4920), - [anon_sym_PIPE_PIPE] = ACTIONS(4920), - [sym__special_characters] = ACTIONS(4920), - [anon_sym_DQUOTE] = ACTIONS(4920), - [anon_sym_DOLLAR] = ACTIONS(4920), - [sym_raw_string] = ACTIONS(4920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4920), - [anon_sym_BQUOTE] = ACTIONS(4920), - [anon_sym_LT_LPAREN] = ACTIONS(4920), - [anon_sym_GT_LPAREN] = ACTIONS(4920), + [2775] = { + [sym__concat] = ACTIONS(4775), + [anon_sym_esac] = ACTIONS(4777), + [anon_sym_PIPE] = ACTIONS(4777), + [anon_sym_SEMI_SEMI] = ACTIONS(4777), + [anon_sym_PIPE_AMP] = ACTIONS(4777), + [anon_sym_AMP_AMP] = ACTIONS(4777), + [anon_sym_PIPE_PIPE] = ACTIONS(4777), + [sym__special_characters] = ACTIONS(4777), + [anon_sym_DQUOTE] = ACTIONS(4777), + [anon_sym_DOLLAR] = ACTIONS(4777), + [sym_raw_string] = ACTIONS(4777), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4777), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4777), + [anon_sym_BQUOTE] = ACTIONS(4777), + [anon_sym_LT_LPAREN] = ACTIONS(4777), + [anon_sym_GT_LPAREN] = ACTIONS(4777), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4920), - [sym_word] = ACTIONS(4920), - [anon_sym_SEMI] = ACTIONS(4920), - [anon_sym_LF] = ACTIONS(4918), - [anon_sym_AMP] = ACTIONS(4920), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4777), + [sym_word] = ACTIONS(4777), + [anon_sym_SEMI] = ACTIONS(4777), + [anon_sym_LF] = ACTIONS(4775), + [anon_sym_AMP] = ACTIONS(4777), }, - [3105] = { - [sym__simple_heredoc_body] = ACTIONS(5540), - [sym__heredoc_body_beginning] = ACTIONS(5540), - [sym_file_descriptor] = ACTIONS(5540), - [sym__concat] = ACTIONS(5540), - [anon_sym_esac] = ACTIONS(5542), - [anon_sym_PIPE] = ACTIONS(5542), - [anon_sym_SEMI_SEMI] = ACTIONS(5542), - [anon_sym_PIPE_AMP] = ACTIONS(5542), - [anon_sym_AMP_AMP] = ACTIONS(5542), - [anon_sym_PIPE_PIPE] = ACTIONS(5542), - [anon_sym_EQ_TILDE] = ACTIONS(5542), - [anon_sym_EQ_EQ] = ACTIONS(5542), - [anon_sym_LT] = ACTIONS(5542), - [anon_sym_GT] = ACTIONS(5542), - [anon_sym_GT_GT] = ACTIONS(5542), - [anon_sym_AMP_GT] = ACTIONS(5542), - [anon_sym_AMP_GT_GT] = ACTIONS(5542), - [anon_sym_LT_AMP] = ACTIONS(5542), - [anon_sym_GT_AMP] = ACTIONS(5542), - [anon_sym_LT_LT] = ACTIONS(5542), - [anon_sym_LT_LT_DASH] = ACTIONS(5542), - [anon_sym_LT_LT_LT] = ACTIONS(5542), - [sym__special_characters] = ACTIONS(5542), - [anon_sym_DQUOTE] = ACTIONS(5542), - [anon_sym_DOLLAR] = ACTIONS(5542), - [sym_raw_string] = ACTIONS(5542), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5542), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5542), - [anon_sym_BQUOTE] = ACTIONS(5542), - [anon_sym_LT_LPAREN] = ACTIONS(5542), - [anon_sym_GT_LPAREN] = ACTIONS(5542), + [2776] = { + [sym__concat] = ACTIONS(2710), + [anon_sym_esac] = ACTIONS(2712), + [anon_sym_PIPE] = ACTIONS(2712), + [anon_sym_SEMI_SEMI] = ACTIONS(2712), + [anon_sym_PIPE_AMP] = ACTIONS(2712), + [anon_sym_AMP_AMP] = ACTIONS(2712), + [anon_sym_PIPE_PIPE] = ACTIONS(2712), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5542), - [anon_sym_LF] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(5542), + [anon_sym_SEMI] = ACTIONS(2712), + [anon_sym_LF] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2712), }, - [3106] = { - [sym__simple_heredoc_body] = ACTIONS(5544), - [sym__heredoc_body_beginning] = ACTIONS(5544), - [sym_file_descriptor] = ACTIONS(5544), - [sym__concat] = ACTIONS(5544), - [anon_sym_esac] = ACTIONS(5546), - [anon_sym_PIPE] = ACTIONS(5546), - [anon_sym_SEMI_SEMI] = ACTIONS(5546), - [anon_sym_PIPE_AMP] = ACTIONS(5546), - [anon_sym_AMP_AMP] = ACTIONS(5546), - [anon_sym_PIPE_PIPE] = ACTIONS(5546), - [anon_sym_EQ_TILDE] = ACTIONS(5546), - [anon_sym_EQ_EQ] = ACTIONS(5546), - [anon_sym_LT] = ACTIONS(5546), - [anon_sym_GT] = ACTIONS(5546), - [anon_sym_GT_GT] = ACTIONS(5546), - [anon_sym_AMP_GT] = ACTIONS(5546), - [anon_sym_AMP_GT_GT] = ACTIONS(5546), - [anon_sym_LT_AMP] = ACTIONS(5546), - [anon_sym_GT_AMP] = ACTIONS(5546), - [anon_sym_LT_LT] = ACTIONS(5546), - [anon_sym_LT_LT_DASH] = ACTIONS(5546), - [anon_sym_LT_LT_LT] = ACTIONS(5546), - [sym__special_characters] = ACTIONS(5546), - [anon_sym_DQUOTE] = ACTIONS(5546), - [anon_sym_DOLLAR] = ACTIONS(5546), - [sym_raw_string] = ACTIONS(5546), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5546), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5546), - [anon_sym_BQUOTE] = ACTIONS(5546), - [anon_sym_LT_LPAREN] = ACTIONS(5546), - [anon_sym_GT_LPAREN] = ACTIONS(5546), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5546), - [anon_sym_SEMI] = ACTIONS(5546), - [anon_sym_LF] = ACTIONS(5544), - [anon_sym_AMP] = ACTIONS(5546), - }, - [3107] = { - [sym__simple_heredoc_body] = ACTIONS(5548), - [sym__heredoc_body_beginning] = ACTIONS(5548), - [sym_file_descriptor] = ACTIONS(5548), - [sym__concat] = ACTIONS(5548), - [anon_sym_esac] = ACTIONS(5550), - [anon_sym_PIPE] = ACTIONS(5550), - [anon_sym_SEMI_SEMI] = ACTIONS(5550), - [anon_sym_PIPE_AMP] = ACTIONS(5550), - [anon_sym_AMP_AMP] = ACTIONS(5550), - [anon_sym_PIPE_PIPE] = ACTIONS(5550), - [anon_sym_EQ_TILDE] = ACTIONS(5550), - [anon_sym_EQ_EQ] = ACTIONS(5550), - [anon_sym_LT] = ACTIONS(5550), - [anon_sym_GT] = ACTIONS(5550), - [anon_sym_GT_GT] = ACTIONS(5550), - [anon_sym_AMP_GT] = ACTIONS(5550), - [anon_sym_AMP_GT_GT] = ACTIONS(5550), - [anon_sym_LT_AMP] = ACTIONS(5550), - [anon_sym_GT_AMP] = ACTIONS(5550), - [anon_sym_LT_LT] = ACTIONS(5550), - [anon_sym_LT_LT_DASH] = ACTIONS(5550), - [anon_sym_LT_LT_LT] = ACTIONS(5550), - [sym__special_characters] = ACTIONS(5550), - [anon_sym_DQUOTE] = ACTIONS(5550), - [anon_sym_DOLLAR] = ACTIONS(5550), - [sym_raw_string] = ACTIONS(5550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5550), - [anon_sym_BQUOTE] = ACTIONS(5550), - [anon_sym_LT_LPAREN] = ACTIONS(5550), - [anon_sym_GT_LPAREN] = ACTIONS(5550), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5550), - [anon_sym_SEMI] = ACTIONS(5550), - [anon_sym_LF] = ACTIONS(5548), - [anon_sym_AMP] = ACTIONS(5550), - }, - [3108] = { - [sym__simple_heredoc_body] = ACTIONS(3917), - [sym__heredoc_body_beginning] = ACTIONS(3917), - [sym_file_descriptor] = ACTIONS(3917), - [sym__concat] = ACTIONS(3917), - [anon_sym_esac] = ACTIONS(3919), - [anon_sym_PIPE] = ACTIONS(3919), - [anon_sym_SEMI_SEMI] = ACTIONS(3919), - [anon_sym_PIPE_AMP] = ACTIONS(3919), - [anon_sym_AMP_AMP] = ACTIONS(3919), - [anon_sym_PIPE_PIPE] = ACTIONS(3919), - [anon_sym_LT] = ACTIONS(3919), - [anon_sym_GT] = ACTIONS(3919), - [anon_sym_GT_GT] = ACTIONS(3919), - [anon_sym_AMP_GT] = ACTIONS(3919), - [anon_sym_AMP_GT_GT] = ACTIONS(3919), - [anon_sym_LT_AMP] = ACTIONS(3919), - [anon_sym_GT_AMP] = ACTIONS(3919), - [anon_sym_LT_LT] = ACTIONS(3919), - [anon_sym_LT_LT_DASH] = ACTIONS(3919), - [anon_sym_LT_LT_LT] = ACTIONS(3919), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3919), - [anon_sym_LF] = ACTIONS(3917), - [anon_sym_AMP] = ACTIONS(3919), - }, - [3109] = { - [sym__simple_heredoc_body] = ACTIONS(3923), - [sym__heredoc_body_beginning] = ACTIONS(3923), - [sym_file_descriptor] = ACTIONS(3923), - [sym__concat] = ACTIONS(3923), - [anon_sym_esac] = ACTIONS(3925), - [anon_sym_PIPE] = ACTIONS(3925), - [anon_sym_SEMI_SEMI] = ACTIONS(3925), - [anon_sym_PIPE_AMP] = ACTIONS(3925), - [anon_sym_AMP_AMP] = ACTIONS(3925), - [anon_sym_PIPE_PIPE] = ACTIONS(3925), - [anon_sym_LT] = ACTIONS(3925), - [anon_sym_GT] = ACTIONS(3925), - [anon_sym_GT_GT] = ACTIONS(3925), - [anon_sym_AMP_GT] = ACTIONS(3925), - [anon_sym_AMP_GT_GT] = ACTIONS(3925), - [anon_sym_LT_AMP] = ACTIONS(3925), - [anon_sym_GT_AMP] = ACTIONS(3925), - [anon_sym_LT_LT] = ACTIONS(3925), - [anon_sym_LT_LT_DASH] = ACTIONS(3925), - [anon_sym_LT_LT_LT] = ACTIONS(3925), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3925), - [anon_sym_LF] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3925), - }, - [3110] = { - [sym__simple_heredoc_body] = ACTIONS(4008), - [sym__heredoc_body_beginning] = ACTIONS(4008), - [sym_file_descriptor] = ACTIONS(4008), - [sym__concat] = ACTIONS(4008), - [anon_sym_esac] = ACTIONS(4010), - [anon_sym_PIPE] = ACTIONS(4010), - [anon_sym_SEMI_SEMI] = ACTIONS(4010), - [anon_sym_PIPE_AMP] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [anon_sym_LT] = ACTIONS(4010), - [anon_sym_GT] = ACTIONS(4010), - [anon_sym_GT_GT] = ACTIONS(4010), - [anon_sym_AMP_GT] = ACTIONS(4010), - [anon_sym_AMP_GT_GT] = ACTIONS(4010), - [anon_sym_LT_AMP] = ACTIONS(4010), - [anon_sym_GT_AMP] = ACTIONS(4010), - [anon_sym_LT_LT] = ACTIONS(4010), - [anon_sym_LT_LT_DASH] = ACTIONS(4010), - [anon_sym_LT_LT_LT] = ACTIONS(4010), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4010), - [anon_sym_LF] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4010), - }, - [3111] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7275), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [3112] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(7277), + [2777] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(6505), [sym_comment] = ACTIONS(53), }, - [3113] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(7279), + [2778] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(6507), [sym_comment] = ACTIONS(53), }, - [3114] = { - [anon_sym_RBRACE] = ACTIONS(7279), + [2779] = { + [anon_sym_RBRACE] = ACTIONS(6507), [sym_comment] = ACTIONS(53), }, - [3115] = { - [sym_concatenation] = STATE(3163), + [2780] = { + [sym_concatenation] = STATE(2803), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3163), - [anon_sym_RBRACE] = ACTIONS(7281), - [anon_sym_EQ] = ACTIONS(7283), + [aux_sym_expansion_repeat1] = STATE(2803), + [anon_sym_RBRACE] = ACTIONS(6509), + [anon_sym_EQ] = ACTIONS(6511), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7285), + [anon_sym_POUND] = ACTIONS(6513), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(7283), - [anon_sym_COLON_QMARK] = ACTIONS(7283), - [anon_sym_COLON_DASH] = ACTIONS(7283), - [anon_sym_PERCENT] = ACTIONS(7283), - [anon_sym_DASH] = ACTIONS(7283), + [anon_sym_COLON] = ACTIONS(6511), + [anon_sym_COLON_QMARK] = ACTIONS(6511), + [anon_sym_COLON_DASH] = ACTIONS(6511), + [anon_sym_PERCENT] = ACTIONS(6511), + [anon_sym_DASH] = ACTIONS(6511), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -80984,54 +69801,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3116] = { - [sym__simple_heredoc_body] = ACTIONS(4024), - [sym__heredoc_body_beginning] = ACTIONS(4024), - [sym_file_descriptor] = ACTIONS(4024), - [sym__concat] = ACTIONS(4024), - [anon_sym_esac] = ACTIONS(4026), - [anon_sym_PIPE] = ACTIONS(4026), - [anon_sym_SEMI_SEMI] = ACTIONS(4026), - [anon_sym_PIPE_AMP] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [anon_sym_LT] = ACTIONS(4026), - [anon_sym_GT] = ACTIONS(4026), - [anon_sym_GT_GT] = ACTIONS(4026), - [anon_sym_AMP_GT] = ACTIONS(4026), - [anon_sym_AMP_GT_GT] = ACTIONS(4026), - [anon_sym_LT_AMP] = ACTIONS(4026), - [anon_sym_GT_AMP] = ACTIONS(4026), - [anon_sym_LT_LT] = ACTIONS(4026), - [anon_sym_LT_LT_DASH] = ACTIONS(4026), - [anon_sym_LT_LT_LT] = ACTIONS(4026), + [2781] = { + [sym__concat] = ACTIONS(2788), + [anon_sym_esac] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_SEMI_SEMI] = ACTIONS(2790), + [anon_sym_PIPE_AMP] = ACTIONS(2790), + [anon_sym_AMP_AMP] = ACTIONS(2790), + [anon_sym_PIPE_PIPE] = ACTIONS(2790), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym_LF] = ACTIONS(4024), - [anon_sym_AMP] = ACTIONS(4026), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_LF] = ACTIONS(2788), + [anon_sym_AMP] = ACTIONS(2790), }, - [3117] = { - [sym_concatenation] = STATE(3165), + [2782] = { + [sym_concatenation] = STATE(2806), + [sym_string] = STATE(2805), + [sym_simple_expansion] = STATE(2805), + [sym_string_expansion] = STATE(2805), + [sym_expansion] = STATE(2805), + [sym_command_substitution] = STATE(2805), + [sym_process_substitution] = STATE(2805), + [anon_sym_RBRACE] = ACTIONS(6507), + [sym__special_characters] = ACTIONS(6515), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1720), + [sym_raw_string] = ACTIONS(6517), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6517), + }, + [2783] = { + [sym__concat] = ACTIONS(2831), + [anon_sym_esac] = ACTIONS(2833), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_SEMI_SEMI] = ACTIONS(2833), + [anon_sym_PIPE_AMP] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(2833), + }, + [2784] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(6519), + }, + [2785] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3165), - [anon_sym_RBRACE] = ACTIONS(7287), - [anon_sym_EQ] = ACTIONS(7289), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6521), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7291), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(7289), - [anon_sym_COLON_QMARK] = ACTIONS(7289), - [anon_sym_COLON_DASH] = ACTIONS(7289), - [anon_sym_PERCENT] = ACTIONS(7289), - [anon_sym_DASH] = ACTIONS(7289), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -81039,54 +69881,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3118] = { - [sym__simple_heredoc_body] = ACTIONS(4034), - [sym__heredoc_body_beginning] = ACTIONS(4034), - [sym_file_descriptor] = ACTIONS(4034), - [sym__concat] = ACTIONS(4034), - [anon_sym_esac] = ACTIONS(4036), - [anon_sym_PIPE] = ACTIONS(4036), - [anon_sym_SEMI_SEMI] = ACTIONS(4036), - [anon_sym_PIPE_AMP] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [anon_sym_LT] = ACTIONS(4036), - [anon_sym_GT] = ACTIONS(4036), - [anon_sym_GT_GT] = ACTIONS(4036), - [anon_sym_AMP_GT] = ACTIONS(4036), - [anon_sym_AMP_GT_GT] = ACTIONS(4036), - [anon_sym_LT_AMP] = ACTIONS(4036), - [anon_sym_GT_AMP] = ACTIONS(4036), - [anon_sym_LT_LT] = ACTIONS(4036), - [anon_sym_LT_LT_DASH] = ACTIONS(4036), - [anon_sym_LT_LT_LT] = ACTIONS(4036), + [2786] = { + [sym__concat] = ACTIONS(2839), + [anon_sym_esac] = ACTIONS(2841), + [anon_sym_PIPE] = ACTIONS(2841), + [anon_sym_SEMI_SEMI] = ACTIONS(2841), + [anon_sym_PIPE_AMP] = ACTIONS(2841), + [anon_sym_AMP_AMP] = ACTIONS(2841), + [anon_sym_PIPE_PIPE] = ACTIONS(2841), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_LF] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4036), + [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym_LF] = ACTIONS(2839), + [anon_sym_AMP] = ACTIONS(2841), }, - [3119] = { - [sym_concatenation] = STATE(3167), + [2787] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(6523), + }, + [2788] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3167), - [anon_sym_RBRACE] = ACTIONS(7293), - [anon_sym_EQ] = ACTIONS(7295), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6525), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7297), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(7295), - [anon_sym_COLON_QMARK] = ACTIONS(7295), - [anon_sym_COLON_DASH] = ACTIONS(7295), - [anon_sym_PERCENT] = ACTIONS(7295), - [anon_sym_DASH] = ACTIONS(7295), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -81094,54 +69927,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3120] = { - [sym__simple_heredoc_body] = ACTIONS(4044), - [sym__heredoc_body_beginning] = ACTIONS(4044), - [sym_file_descriptor] = ACTIONS(4044), - [sym__concat] = ACTIONS(4044), - [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), + [2789] = { [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4046), - [anon_sym_LF] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4046), + [sym_regex_without_right_brace] = ACTIONS(6527), }, - [3121] = { - [sym_concatenation] = STATE(839), + [2790] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7299), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6507), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -81149,54 +69960,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3122] = { - [sym__simple_heredoc_body] = ACTIONS(4050), - [sym__heredoc_body_beginning] = ACTIONS(4050), - [sym_file_descriptor] = ACTIONS(4050), - [sym__concat] = ACTIONS(4050), - [anon_sym_esac] = ACTIONS(4052), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_SEMI_SEMI] = ACTIONS(4052), - [anon_sym_PIPE_AMP] = ACTIONS(4052), - [anon_sym_AMP_AMP] = ACTIONS(4052), - [anon_sym_PIPE_PIPE] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_GT_GT] = ACTIONS(4052), - [anon_sym_AMP_GT] = ACTIONS(4052), - [anon_sym_AMP_GT_GT] = ACTIONS(4052), - [anon_sym_LT_AMP] = ACTIONS(4052), - [anon_sym_GT_AMP] = ACTIONS(4052), - [anon_sym_LT_LT] = ACTIONS(4052), - [anon_sym_LT_LT_DASH] = ACTIONS(4052), - [anon_sym_LT_LT_LT] = ACTIONS(4052), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4052), - }, - [3123] = { - [sym_concatenation] = STATE(839), + [2791] = { + [sym_concatenation] = STATE(2813), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7301), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(2813), + [anon_sym_RBRACE] = ACTIONS(6529), + [anon_sym_EQ] = ACTIONS(6531), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(6533), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_COLON] = ACTIONS(6531), + [anon_sym_COLON_QMARK] = ACTIONS(6531), + [anon_sym_COLON_DASH] = ACTIONS(6531), + [anon_sym_PERCENT] = ACTIONS(6531), + [anon_sym_DASH] = ACTIONS(6531), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -81204,156 +69989,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3124] = { - [sym_file_descriptor] = ACTIONS(4884), - [sym__concat] = ACTIONS(4884), - [sym_variable_name] = ACTIONS(4884), - [anon_sym_esac] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4886), - [anon_sym_SEMI_SEMI] = ACTIONS(4886), - [anon_sym_PIPE_AMP] = ACTIONS(4886), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_LT] = ACTIONS(4886), - [anon_sym_GT] = ACTIONS(4886), - [anon_sym_GT_GT] = ACTIONS(4886), - [anon_sym_AMP_GT] = ACTIONS(4886), - [anon_sym_AMP_GT_GT] = ACTIONS(4886), - [anon_sym_LT_AMP] = ACTIONS(4886), - [anon_sym_GT_AMP] = ACTIONS(4886), - [sym__special_characters] = ACTIONS(4886), - [anon_sym_DQUOTE] = ACTIONS(4886), - [anon_sym_DOLLAR] = ACTIONS(4886), - [sym_raw_string] = ACTIONS(4886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4886), - [anon_sym_BQUOTE] = ACTIONS(4886), - [anon_sym_LT_LPAREN] = ACTIONS(4886), - [anon_sym_GT_LPAREN] = ACTIONS(4886), + [2792] = { + [sym__concat] = ACTIONS(2855), + [anon_sym_esac] = ACTIONS(2857), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_SEMI_SEMI] = ACTIONS(2857), + [anon_sym_PIPE_AMP] = ACTIONS(2857), + [anon_sym_AMP_AMP] = ACTIONS(2857), + [anon_sym_PIPE_PIPE] = ACTIONS(2857), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4886), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym_LF] = ACTIONS(4884), - [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_LF] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2857), }, - [3125] = { - [sym_file_descriptor] = ACTIONS(4888), - [sym__concat] = ACTIONS(4888), - [sym_variable_name] = ACTIONS(4888), - [anon_sym_esac] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4890), - [anon_sym_SEMI_SEMI] = ACTIONS(4890), - [anon_sym_PIPE_AMP] = ACTIONS(4890), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [anon_sym_LT] = ACTIONS(4890), - [anon_sym_GT] = ACTIONS(4890), - [anon_sym_GT_GT] = ACTIONS(4890), - [anon_sym_AMP_GT] = ACTIONS(4890), - [anon_sym_AMP_GT_GT] = ACTIONS(4890), - [anon_sym_LT_AMP] = ACTIONS(4890), - [anon_sym_GT_AMP] = ACTIONS(4890), - [sym__special_characters] = ACTIONS(4890), - [anon_sym_DQUOTE] = ACTIONS(4890), - [anon_sym_DOLLAR] = ACTIONS(4890), - [sym_raw_string] = ACTIONS(4890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4890), - [anon_sym_BQUOTE] = ACTIONS(4890), - [anon_sym_LT_LPAREN] = ACTIONS(4890), - [anon_sym_GT_LPAREN] = ACTIONS(4890), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4890), - [anon_sym_SEMI] = ACTIONS(4890), - [anon_sym_LF] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4890), - }, - [3126] = { - [sym_file_descriptor] = ACTIONS(4892), - [sym__concat] = ACTIONS(4892), - [sym_variable_name] = ACTIONS(4892), - [anon_sym_esac] = ACTIONS(4894), - [anon_sym_PIPE] = ACTIONS(4894), - [anon_sym_SEMI_SEMI] = ACTIONS(4894), - [anon_sym_PIPE_AMP] = ACTIONS(4894), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE_PIPE] = ACTIONS(4894), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_GT_GT] = ACTIONS(4894), - [anon_sym_AMP_GT] = ACTIONS(4894), - [anon_sym_AMP_GT_GT] = ACTIONS(4894), - [anon_sym_LT_AMP] = ACTIONS(4894), - [anon_sym_GT_AMP] = ACTIONS(4894), - [sym__special_characters] = ACTIONS(4894), - [anon_sym_DQUOTE] = ACTIONS(4894), - [anon_sym_DOLLAR] = ACTIONS(4894), - [sym_raw_string] = ACTIONS(4894), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4894), - [anon_sym_BQUOTE] = ACTIONS(4894), - [anon_sym_LT_LPAREN] = ACTIONS(4894), - [anon_sym_GT_LPAREN] = ACTIONS(4894), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4894), - [anon_sym_SEMI] = ACTIONS(4894), - [anon_sym_LF] = ACTIONS(4892), - [anon_sym_AMP] = ACTIONS(4894), - }, - [3127] = { - [sym_file_descriptor] = ACTIONS(4896), - [sym__concat] = ACTIONS(4896), - [sym_variable_name] = ACTIONS(4896), - [anon_sym_esac] = ACTIONS(4898), - [anon_sym_PIPE] = ACTIONS(4898), - [anon_sym_SEMI_SEMI] = ACTIONS(4898), - [anon_sym_PIPE_AMP] = ACTIONS(4898), - [anon_sym_AMP_AMP] = ACTIONS(4898), - [anon_sym_PIPE_PIPE] = ACTIONS(4898), - [anon_sym_LT] = ACTIONS(4898), - [anon_sym_GT] = ACTIONS(4898), - [anon_sym_GT_GT] = ACTIONS(4898), - [anon_sym_AMP_GT] = ACTIONS(4898), - [anon_sym_AMP_GT_GT] = ACTIONS(4898), - [anon_sym_LT_AMP] = ACTIONS(4898), - [anon_sym_GT_AMP] = ACTIONS(4898), - [sym__special_characters] = ACTIONS(4898), - [anon_sym_DQUOTE] = ACTIONS(4898), - [anon_sym_DOLLAR] = ACTIONS(4898), - [sym_raw_string] = ACTIONS(4898), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4898), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4898), - [anon_sym_BQUOTE] = ACTIONS(4898), - [anon_sym_LT_LPAREN] = ACTIONS(4898), - [anon_sym_GT_LPAREN] = ACTIONS(4898), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4898), - [anon_sym_SEMI] = ACTIONS(4898), - [anon_sym_LF] = ACTIONS(4896), - [anon_sym_AMP] = ACTIONS(4898), - }, - [3128] = { - [sym_concatenation] = STATE(839), + [2793] = { + [sym_concatenation] = STATE(2815), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7303), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(2815), + [anon_sym_RBRACE] = ACTIONS(6535), + [anon_sym_EQ] = ACTIONS(6537), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(6539), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_COLON] = ACTIONS(6537), + [anon_sym_COLON_QMARK] = ACTIONS(6537), + [anon_sym_COLON_DASH] = ACTIONS(6537), + [anon_sym_PERCENT] = ACTIONS(6537), + [anon_sym_DASH] = ACTIONS(6537), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -81361,60 +70031,214 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3129] = { - [sym_file_descriptor] = ACTIONS(4902), - [sym__concat] = ACTIONS(4902), - [sym_variable_name] = ACTIONS(4902), - [anon_sym_esac] = ACTIONS(4904), - [anon_sym_PIPE] = ACTIONS(4904), - [anon_sym_SEMI_SEMI] = ACTIONS(4904), - [anon_sym_PIPE_AMP] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4904), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_LT] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4904), - [anon_sym_GT_GT] = ACTIONS(4904), - [anon_sym_AMP_GT] = ACTIONS(4904), - [anon_sym_AMP_GT_GT] = ACTIONS(4904), - [anon_sym_LT_AMP] = ACTIONS(4904), - [anon_sym_GT_AMP] = ACTIONS(4904), - [sym__special_characters] = ACTIONS(4904), - [anon_sym_DQUOTE] = ACTIONS(4904), - [anon_sym_DOLLAR] = ACTIONS(4904), - [sym_raw_string] = ACTIONS(4904), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4904), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4904), - [anon_sym_BQUOTE] = ACTIONS(4904), - [anon_sym_LT_LPAREN] = ACTIONS(4904), - [anon_sym_GT_LPAREN] = ACTIONS(4904), + [2794] = { + [sym__concat] = ACTIONS(5325), + [sym_variable_name] = ACTIONS(5325), + [anon_sym_esac] = ACTIONS(5327), + [anon_sym_PIPE] = ACTIONS(5327), + [anon_sym_SEMI_SEMI] = ACTIONS(5327), + [anon_sym_PIPE_AMP] = ACTIONS(5327), + [anon_sym_AMP_AMP] = ACTIONS(5327), + [anon_sym_PIPE_PIPE] = ACTIONS(5327), + [sym__special_characters] = ACTIONS(5327), + [anon_sym_DQUOTE] = ACTIONS(5327), + [anon_sym_DOLLAR] = ACTIONS(5327), + [sym_raw_string] = ACTIONS(5327), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5327), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5327), + [anon_sym_BQUOTE] = ACTIONS(5327), + [anon_sym_LT_LPAREN] = ACTIONS(5327), + [anon_sym_GT_LPAREN] = ACTIONS(5327), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4904), - [anon_sym_SEMI] = ACTIONS(4904), - [anon_sym_LF] = ACTIONS(4902), - [anon_sym_AMP] = ACTIONS(4904), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5327), + [sym_word] = ACTIONS(5327), + [anon_sym_SEMI] = ACTIONS(5327), + [anon_sym_LF] = ACTIONS(5325), + [anon_sym_AMP] = ACTIONS(5327), }, - [3130] = { - [sym_concatenation] = STATE(839), + [2795] = { + [sym__concat] = ACTIONS(5329), + [sym_variable_name] = ACTIONS(5329), + [anon_sym_esac] = ACTIONS(5331), + [anon_sym_PIPE] = ACTIONS(5331), + [anon_sym_SEMI_SEMI] = ACTIONS(5331), + [anon_sym_PIPE_AMP] = ACTIONS(5331), + [anon_sym_AMP_AMP] = ACTIONS(5331), + [anon_sym_PIPE_PIPE] = ACTIONS(5331), + [sym__special_characters] = ACTIONS(5331), + [anon_sym_DQUOTE] = ACTIONS(5331), + [anon_sym_DOLLAR] = ACTIONS(5331), + [sym_raw_string] = ACTIONS(5331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5331), + [anon_sym_BQUOTE] = ACTIONS(5331), + [anon_sym_LT_LPAREN] = ACTIONS(5331), + [anon_sym_GT_LPAREN] = ACTIONS(5331), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5331), + [sym_word] = ACTIONS(5331), + [anon_sym_SEMI] = ACTIONS(5331), + [anon_sym_LF] = ACTIONS(5329), + [anon_sym_AMP] = ACTIONS(5331), + }, + [2796] = { + [sym__concat] = ACTIONS(5333), + [sym_variable_name] = ACTIONS(5333), + [anon_sym_esac] = ACTIONS(5335), + [anon_sym_PIPE] = ACTIONS(5335), + [anon_sym_SEMI_SEMI] = ACTIONS(5335), + [anon_sym_PIPE_AMP] = ACTIONS(5335), + [anon_sym_AMP_AMP] = ACTIONS(5335), + [anon_sym_PIPE_PIPE] = ACTIONS(5335), + [sym__special_characters] = ACTIONS(5335), + [anon_sym_DQUOTE] = ACTIONS(5335), + [anon_sym_DOLLAR] = ACTIONS(5335), + [sym_raw_string] = ACTIONS(5335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5335), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5335), + [anon_sym_BQUOTE] = ACTIONS(5335), + [anon_sym_LT_LPAREN] = ACTIONS(5335), + [anon_sym_GT_LPAREN] = ACTIONS(5335), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5335), + [sym_word] = ACTIONS(5335), + [anon_sym_SEMI] = ACTIONS(5335), + [anon_sym_LF] = ACTIONS(5333), + [anon_sym_AMP] = ACTIONS(5335), + }, + [2797] = { + [sym__concat] = ACTIONS(5325), + [anon_sym_esac] = ACTIONS(5327), + [anon_sym_PIPE] = ACTIONS(5327), + [anon_sym_SEMI_SEMI] = ACTIONS(5327), + [anon_sym_PIPE_AMP] = ACTIONS(5327), + [anon_sym_AMP_AMP] = ACTIONS(5327), + [anon_sym_PIPE_PIPE] = ACTIONS(5327), + [sym__special_characters] = ACTIONS(5327), + [anon_sym_DQUOTE] = ACTIONS(5327), + [anon_sym_DOLLAR] = ACTIONS(5327), + [sym_raw_string] = ACTIONS(5327), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5327), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5327), + [anon_sym_BQUOTE] = ACTIONS(5327), + [anon_sym_LT_LPAREN] = ACTIONS(5327), + [anon_sym_GT_LPAREN] = ACTIONS(5327), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5327), + [sym_word] = ACTIONS(5327), + [anon_sym_SEMI] = ACTIONS(5327), + [anon_sym_LF] = ACTIONS(5325), + [anon_sym_AMP] = ACTIONS(5327), + }, + [2798] = { + [sym__concat] = ACTIONS(5329), + [anon_sym_esac] = ACTIONS(5331), + [anon_sym_PIPE] = ACTIONS(5331), + [anon_sym_SEMI_SEMI] = ACTIONS(5331), + [anon_sym_PIPE_AMP] = ACTIONS(5331), + [anon_sym_AMP_AMP] = ACTIONS(5331), + [anon_sym_PIPE_PIPE] = ACTIONS(5331), + [sym__special_characters] = ACTIONS(5331), + [anon_sym_DQUOTE] = ACTIONS(5331), + [anon_sym_DOLLAR] = ACTIONS(5331), + [sym_raw_string] = ACTIONS(5331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5331), + [anon_sym_BQUOTE] = ACTIONS(5331), + [anon_sym_LT_LPAREN] = ACTIONS(5331), + [anon_sym_GT_LPAREN] = ACTIONS(5331), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5331), + [sym_word] = ACTIONS(5331), + [anon_sym_SEMI] = ACTIONS(5331), + [anon_sym_LF] = ACTIONS(5329), + [anon_sym_AMP] = ACTIONS(5331), + }, + [2799] = { + [sym__concat] = ACTIONS(5333), + [anon_sym_esac] = ACTIONS(5335), + [anon_sym_PIPE] = ACTIONS(5335), + [anon_sym_SEMI_SEMI] = ACTIONS(5335), + [anon_sym_PIPE_AMP] = ACTIONS(5335), + [anon_sym_AMP_AMP] = ACTIONS(5335), + [anon_sym_PIPE_PIPE] = ACTIONS(5335), + [sym__special_characters] = ACTIONS(5335), + [anon_sym_DQUOTE] = ACTIONS(5335), + [anon_sym_DOLLAR] = ACTIONS(5335), + [sym_raw_string] = ACTIONS(5335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5335), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5335), + [anon_sym_BQUOTE] = ACTIONS(5335), + [anon_sym_LT_LPAREN] = ACTIONS(5335), + [anon_sym_GT_LPAREN] = ACTIONS(5335), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5335), + [sym_word] = ACTIONS(5335), + [anon_sym_SEMI] = ACTIONS(5335), + [anon_sym_LF] = ACTIONS(5333), + [anon_sym_AMP] = ACTIONS(5335), + }, + [2800] = { + [sym__concat] = ACTIONS(3829), + [anon_sym_esac] = ACTIONS(3831), + [anon_sym_PIPE] = ACTIONS(3831), + [anon_sym_SEMI_SEMI] = ACTIONS(3831), + [anon_sym_PIPE_AMP] = ACTIONS(3831), + [anon_sym_AMP_AMP] = ACTIONS(3831), + [anon_sym_PIPE_PIPE] = ACTIONS(3831), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3831), + [anon_sym_LF] = ACTIONS(3829), + [anon_sym_AMP] = ACTIONS(3831), + }, + [2801] = { + [sym__concat] = ACTIONS(3835), + [anon_sym_esac] = ACTIONS(3837), + [anon_sym_PIPE] = ACTIONS(3837), + [anon_sym_SEMI_SEMI] = ACTIONS(3837), + [anon_sym_PIPE_AMP] = ACTIONS(3837), + [anon_sym_AMP_AMP] = ACTIONS(3837), + [anon_sym_PIPE_PIPE] = ACTIONS(3837), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3837), + [anon_sym_LF] = ACTIONS(3835), + [anon_sym_AMP] = ACTIONS(3837), + }, + [2802] = { + [sym__concat] = ACTIONS(3920), + [anon_sym_esac] = ACTIONS(3922), + [anon_sym_PIPE] = ACTIONS(3922), + [anon_sym_SEMI_SEMI] = ACTIONS(3922), + [anon_sym_PIPE_AMP] = ACTIONS(3922), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3922), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3922), + [anon_sym_LF] = ACTIONS(3920), + [anon_sym_AMP] = ACTIONS(3922), + }, + [2803] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7305), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6541), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -81422,182 +70246,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3131] = { - [sym_file_descriptor] = ACTIONS(4908), - [sym__concat] = ACTIONS(4908), - [sym_variable_name] = ACTIONS(4908), - [anon_sym_esac] = ACTIONS(4910), - [anon_sym_PIPE] = ACTIONS(4910), - [anon_sym_SEMI_SEMI] = ACTIONS(4910), - [anon_sym_PIPE_AMP] = ACTIONS(4910), - [anon_sym_AMP_AMP] = ACTIONS(4910), - [anon_sym_PIPE_PIPE] = ACTIONS(4910), - [anon_sym_LT] = ACTIONS(4910), - [anon_sym_GT] = ACTIONS(4910), - [anon_sym_GT_GT] = ACTIONS(4910), - [anon_sym_AMP_GT] = ACTIONS(4910), - [anon_sym_AMP_GT_GT] = ACTIONS(4910), - [anon_sym_LT_AMP] = ACTIONS(4910), - [anon_sym_GT_AMP] = ACTIONS(4910), - [sym__special_characters] = ACTIONS(4910), - [anon_sym_DQUOTE] = ACTIONS(4910), - [anon_sym_DOLLAR] = ACTIONS(4910), - [sym_raw_string] = ACTIONS(4910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4910), - [anon_sym_BQUOTE] = ACTIONS(4910), - [anon_sym_LT_LPAREN] = ACTIONS(4910), - [anon_sym_GT_LPAREN] = ACTIONS(4910), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4910), - [anon_sym_SEMI] = ACTIONS(4910), - [anon_sym_LF] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4910), - }, - [3132] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7307), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [3133] = { - [sym_file_descriptor] = ACTIONS(4914), - [sym__concat] = ACTIONS(4914), - [sym_variable_name] = ACTIONS(4914), - [anon_sym_esac] = ACTIONS(4916), - [anon_sym_PIPE] = ACTIONS(4916), - [anon_sym_SEMI_SEMI] = ACTIONS(4916), - [anon_sym_PIPE_AMP] = ACTIONS(4916), - [anon_sym_AMP_AMP] = ACTIONS(4916), - [anon_sym_PIPE_PIPE] = ACTIONS(4916), - [anon_sym_LT] = ACTIONS(4916), - [anon_sym_GT] = ACTIONS(4916), - [anon_sym_GT_GT] = ACTIONS(4916), - [anon_sym_AMP_GT] = ACTIONS(4916), - [anon_sym_AMP_GT_GT] = ACTIONS(4916), - [anon_sym_LT_AMP] = ACTIONS(4916), - [anon_sym_GT_AMP] = ACTIONS(4916), - [sym__special_characters] = ACTIONS(4916), - [anon_sym_DQUOTE] = ACTIONS(4916), - [anon_sym_DOLLAR] = ACTIONS(4916), - [sym_raw_string] = ACTIONS(4916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4916), - [anon_sym_BQUOTE] = ACTIONS(4916), - [anon_sym_LT_LPAREN] = ACTIONS(4916), - [anon_sym_GT_LPAREN] = ACTIONS(4916), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4916), - [anon_sym_SEMI] = ACTIONS(4916), - [anon_sym_LF] = ACTIONS(4914), - [anon_sym_AMP] = ACTIONS(4916), - }, - [3134] = { - [sym_file_descriptor] = ACTIONS(4918), - [sym__concat] = ACTIONS(4918), - [sym_variable_name] = ACTIONS(4918), - [anon_sym_esac] = ACTIONS(4920), - [anon_sym_PIPE] = ACTIONS(4920), - [anon_sym_SEMI_SEMI] = ACTIONS(4920), - [anon_sym_PIPE_AMP] = ACTIONS(4920), - [anon_sym_AMP_AMP] = ACTIONS(4920), - [anon_sym_PIPE_PIPE] = ACTIONS(4920), - [anon_sym_LT] = ACTIONS(4920), - [anon_sym_GT] = ACTIONS(4920), - [anon_sym_GT_GT] = ACTIONS(4920), - [anon_sym_AMP_GT] = ACTIONS(4920), - [anon_sym_AMP_GT_GT] = ACTIONS(4920), - [anon_sym_LT_AMP] = ACTIONS(4920), - [anon_sym_GT_AMP] = ACTIONS(4920), - [sym__special_characters] = ACTIONS(4920), - [anon_sym_DQUOTE] = ACTIONS(4920), - [anon_sym_DOLLAR] = ACTIONS(4920), - [sym_raw_string] = ACTIONS(4920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4920), - [anon_sym_BQUOTE] = ACTIONS(4920), - [anon_sym_LT_LPAREN] = ACTIONS(4920), - [anon_sym_GT_LPAREN] = ACTIONS(4920), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4920), - [anon_sym_SEMI] = ACTIONS(4920), - [anon_sym_LF] = ACTIONS(4918), - [anon_sym_AMP] = ACTIONS(4920), - }, - [3135] = { - [sym__concat] = ACTIONS(2752), - [anon_sym_esac] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_SEMI_SEMI] = ACTIONS(2754), - [anon_sym_PIPE_AMP] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_LF] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2754), - }, - [3136] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(7309), + [2804] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(6543), [sym_comment] = ACTIONS(53), }, - [3137] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(7311), + [2805] = { + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym__concat] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(6545), [sym_comment] = ACTIONS(53), }, - [3138] = { - [anon_sym_RBRACE] = ACTIONS(7311), + [2806] = { + [anon_sym_RBRACE] = ACTIONS(6545), [sym_comment] = ACTIONS(53), }, - [3139] = { - [sym_concatenation] = STATE(3176), + [2807] = { + [sym_concatenation] = STATE(2820), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3176), - [anon_sym_RBRACE] = ACTIONS(7313), - [anon_sym_EQ] = ACTIONS(7315), + [aux_sym_expansion_repeat1] = STATE(2820), + [anon_sym_RBRACE] = ACTIONS(6547), + [anon_sym_EQ] = ACTIONS(6549), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7317), + [anon_sym_POUND] = ACTIONS(6551), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(7315), - [anon_sym_COLON_QMARK] = ACTIONS(7315), - [anon_sym_COLON_DASH] = ACTIONS(7315), - [anon_sym_PERCENT] = ACTIONS(7315), - [anon_sym_DASH] = ACTIONS(7315), + [anon_sym_COLON] = ACTIONS(6549), + [anon_sym_COLON_QMARK] = ACTIONS(6549), + [anon_sym_COLON_DASH] = ACTIONS(6549), + [anon_sym_PERCENT] = ACTIONS(6549), + [anon_sym_DASH] = ACTIONS(6549), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -81605,79 +70291,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3140] = { - [sym__concat] = ACTIONS(2830), - [anon_sym_esac] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_SEMI_SEMI] = ACTIONS(2832), - [anon_sym_PIPE_AMP] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_PIPE_PIPE] = ACTIONS(2832), + [2808] = { + [sym__concat] = ACTIONS(3936), + [anon_sym_esac] = ACTIONS(3938), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_SEMI_SEMI] = ACTIONS(3938), + [anon_sym_PIPE_AMP] = ACTIONS(3938), + [anon_sym_AMP_AMP] = ACTIONS(3938), + [anon_sym_PIPE_PIPE] = ACTIONS(3938), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_LF] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(3938), + [anon_sym_LF] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3938), }, - [3141] = { - [sym_concatenation] = STATE(3179), - [sym_string] = STATE(3178), - [sym_simple_expansion] = STATE(3178), - [sym_string_expansion] = STATE(3178), - [sym_expansion] = STATE(3178), - [sym_command_substitution] = STATE(3178), - [sym_process_substitution] = STATE(3178), - [anon_sym_RBRACE] = ACTIONS(7311), - [sym__special_characters] = ACTIONS(7319), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(7321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(7321), - }, - [3142] = { - [sym__concat] = ACTIONS(2873), - [anon_sym_esac] = ACTIONS(2875), - [anon_sym_PIPE] = ACTIONS(2875), - [anon_sym_SEMI_SEMI] = ACTIONS(2875), - [anon_sym_PIPE_AMP] = ACTIONS(2875), - [anon_sym_AMP_AMP] = ACTIONS(2875), - [anon_sym_PIPE_PIPE] = ACTIONS(2875), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym_LF] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2875), - }, - [3143] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(7323), - }, - [3144] = { - [sym_concatenation] = STATE(839), + [2809] = { + [sym_concatenation] = STATE(2822), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7325), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(2822), + [anon_sym_RBRACE] = ACTIONS(6553), + [anon_sym_EQ] = ACTIONS(6555), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(6557), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_COLON] = ACTIONS(6555), + [anon_sym_COLON_QMARK] = ACTIONS(6555), + [anon_sym_COLON_DASH] = ACTIONS(6555), + [anon_sym_PERCENT] = ACTIONS(6555), + [anon_sym_DASH] = ACTIONS(6555), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -81685,45 +70333,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3145] = { - [sym__concat] = ACTIONS(2881), - [anon_sym_esac] = ACTIONS(2883), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_SEMI_SEMI] = ACTIONS(2883), - [anon_sym_PIPE_AMP] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_PIPE_PIPE] = ACTIONS(2883), + [2810] = { + [sym__concat] = ACTIONS(3946), + [anon_sym_esac] = ACTIONS(3948), + [anon_sym_PIPE] = ACTIONS(3948), + [anon_sym_SEMI_SEMI] = ACTIONS(3948), + [anon_sym_PIPE_AMP] = ACTIONS(3948), + [anon_sym_AMP_AMP] = ACTIONS(3948), + [anon_sym_PIPE_PIPE] = ACTIONS(3948), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym_LF] = ACTIONS(2881), - [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_SEMI] = ACTIONS(3948), + [anon_sym_LF] = ACTIONS(3946), + [anon_sym_AMP] = ACTIONS(3948), }, - [3146] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(7327), - }, - [3147] = { - [sym_concatenation] = STATE(839), + [2811] = { + [sym_concatenation] = STATE(2824), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7329), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(2824), + [anon_sym_RBRACE] = ACTIONS(6559), + [anon_sym_EQ] = ACTIONS(6561), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(6563), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_COLON] = ACTIONS(6561), + [anon_sym_COLON_QMARK] = ACTIONS(6561), + [anon_sym_COLON_DASH] = ACTIONS(6561), + [anon_sym_PERCENT] = ACTIONS(6561), + [anon_sym_DASH] = ACTIONS(6561), [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -81731,32 +70375,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3148] = { + [2812] = { + [sym__concat] = ACTIONS(3956), + [anon_sym_esac] = ACTIONS(3958), + [anon_sym_PIPE] = ACTIONS(3958), + [anon_sym_SEMI_SEMI] = ACTIONS(3958), + [anon_sym_PIPE_AMP] = ACTIONS(3958), + [anon_sym_AMP_AMP] = ACTIONS(3958), + [anon_sym_PIPE_PIPE] = ACTIONS(3958), [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(7331), + [anon_sym_SEMI] = ACTIONS(3958), + [anon_sym_LF] = ACTIONS(3956), + [anon_sym_AMP] = ACTIONS(3958), }, - [3149] = { - [sym_concatenation] = STATE(839), + [2813] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7311), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6565), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -81764,28 +70417,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3150] = { - [sym_concatenation] = STATE(3186), + [2814] = { + [sym__concat] = ACTIONS(3962), + [anon_sym_esac] = ACTIONS(3964), + [anon_sym_PIPE] = ACTIONS(3964), + [anon_sym_SEMI_SEMI] = ACTIONS(3964), + [anon_sym_PIPE_AMP] = ACTIONS(3964), + [anon_sym_AMP_AMP] = ACTIONS(3964), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3964), + [anon_sym_LF] = ACTIONS(3962), + [anon_sym_AMP] = ACTIONS(3964), + }, + [2815] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3186), - [anon_sym_RBRACE] = ACTIONS(7333), - [anon_sym_EQ] = ACTIONS(7335), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6567), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7337), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(7335), - [anon_sym_COLON_QMARK] = ACTIONS(7335), - [anon_sym_COLON_DASH] = ACTIONS(7335), - [anon_sym_PERCENT] = ACTIONS(7335), - [anon_sym_DASH] = ACTIONS(7335), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -81793,41 +70459,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3151] = { - [sym__concat] = ACTIONS(2897), - [anon_sym_esac] = ACTIONS(2899), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_SEMI_SEMI] = ACTIONS(2899), - [anon_sym_PIPE_AMP] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_PIPE_PIPE] = ACTIONS(2899), + [2816] = { + [sym__concat] = ACTIONS(4741), + [anon_sym_esac] = ACTIONS(4743), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_SEMI_SEMI] = ACTIONS(4743), + [anon_sym_PIPE_AMP] = ACTIONS(4743), + [anon_sym_AMP_AMP] = ACTIONS(4743), + [anon_sym_PIPE_PIPE] = ACTIONS(4743), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym_LF] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2899), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym_LF] = ACTIONS(4741), + [anon_sym_AMP] = ACTIONS(4743), }, - [3152] = { - [sym_concatenation] = STATE(3188), + [2817] = { + [sym__concat] = ACTIONS(4745), + [anon_sym_esac] = ACTIONS(4747), + [anon_sym_PIPE] = ACTIONS(4747), + [anon_sym_SEMI_SEMI] = ACTIONS(4747), + [anon_sym_PIPE_AMP] = ACTIONS(4747), + [anon_sym_AMP_AMP] = ACTIONS(4747), + [anon_sym_PIPE_PIPE] = ACTIONS(4747), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_LF] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4747), + }, + [2818] = { + [sym__concat] = ACTIONS(4749), + [anon_sym_esac] = ACTIONS(4751), + [anon_sym_PIPE] = ACTIONS(4751), + [anon_sym_SEMI_SEMI] = ACTIONS(4751), + [anon_sym_PIPE_AMP] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_LF] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4751), + }, + [2819] = { + [sym__concat] = ACTIONS(4753), + [anon_sym_esac] = ACTIONS(4755), + [anon_sym_PIPE] = ACTIONS(4755), + [anon_sym_SEMI_SEMI] = ACTIONS(4755), + [anon_sym_PIPE_AMP] = ACTIONS(4755), + [anon_sym_AMP_AMP] = ACTIONS(4755), + [anon_sym_PIPE_PIPE] = ACTIONS(4755), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4755), + [anon_sym_LF] = ACTIONS(4753), + [anon_sym_AMP] = ACTIONS(4755), + }, + [2820] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3188), - [anon_sym_RBRACE] = ACTIONS(7339), - [anon_sym_EQ] = ACTIONS(7341), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6569), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7343), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(7341), - [anon_sym_COLON_QMARK] = ACTIONS(7341), - [anon_sym_COLON_DASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_DASH] = ACTIONS(7341), + [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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -81835,279 +70540,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3153] = { - [sym__concat] = ACTIONS(5540), - [sym_variable_name] = ACTIONS(5540), - [anon_sym_esac] = ACTIONS(5542), - [anon_sym_PIPE] = ACTIONS(5542), - [anon_sym_SEMI_SEMI] = ACTIONS(5542), - [anon_sym_PIPE_AMP] = ACTIONS(5542), - [anon_sym_AMP_AMP] = ACTIONS(5542), - [anon_sym_PIPE_PIPE] = ACTIONS(5542), - [sym__special_characters] = ACTIONS(5542), - [anon_sym_DQUOTE] = ACTIONS(5542), - [anon_sym_DOLLAR] = ACTIONS(5542), - [sym_raw_string] = ACTIONS(5542), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5542), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5542), - [anon_sym_BQUOTE] = ACTIONS(5542), - [anon_sym_LT_LPAREN] = ACTIONS(5542), - [anon_sym_GT_LPAREN] = ACTIONS(5542), + [2821] = { + [sym__concat] = ACTIONS(4759), + [anon_sym_esac] = ACTIONS(4761), + [anon_sym_PIPE] = ACTIONS(4761), + [anon_sym_SEMI_SEMI] = ACTIONS(4761), + [anon_sym_PIPE_AMP] = ACTIONS(4761), + [anon_sym_AMP_AMP] = ACTIONS(4761), + [anon_sym_PIPE_PIPE] = ACTIONS(4761), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5542), - [sym_word] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5542), - [anon_sym_LF] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(5542), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_LF] = ACTIONS(4759), + [anon_sym_AMP] = ACTIONS(4761), }, - [3154] = { - [sym__concat] = ACTIONS(5544), - [sym_variable_name] = ACTIONS(5544), - [anon_sym_esac] = ACTIONS(5546), - [anon_sym_PIPE] = ACTIONS(5546), - [anon_sym_SEMI_SEMI] = ACTIONS(5546), - [anon_sym_PIPE_AMP] = ACTIONS(5546), - [anon_sym_AMP_AMP] = ACTIONS(5546), - [anon_sym_PIPE_PIPE] = ACTIONS(5546), - [sym__special_characters] = ACTIONS(5546), - [anon_sym_DQUOTE] = ACTIONS(5546), - [anon_sym_DOLLAR] = ACTIONS(5546), - [sym_raw_string] = ACTIONS(5546), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5546), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5546), - [anon_sym_BQUOTE] = ACTIONS(5546), - [anon_sym_LT_LPAREN] = ACTIONS(5546), - [anon_sym_GT_LPAREN] = ACTIONS(5546), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5546), - [sym_word] = ACTIONS(5546), - [anon_sym_SEMI] = ACTIONS(5546), - [anon_sym_LF] = ACTIONS(5544), - [anon_sym_AMP] = ACTIONS(5546), - }, - [3155] = { - [sym__concat] = ACTIONS(5548), - [sym_variable_name] = ACTIONS(5548), - [anon_sym_esac] = ACTIONS(5550), - [anon_sym_PIPE] = ACTIONS(5550), - [anon_sym_SEMI_SEMI] = ACTIONS(5550), - [anon_sym_PIPE_AMP] = ACTIONS(5550), - [anon_sym_AMP_AMP] = ACTIONS(5550), - [anon_sym_PIPE_PIPE] = ACTIONS(5550), - [sym__special_characters] = ACTIONS(5550), - [anon_sym_DQUOTE] = ACTIONS(5550), - [anon_sym_DOLLAR] = ACTIONS(5550), - [sym_raw_string] = ACTIONS(5550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5550), - [anon_sym_BQUOTE] = ACTIONS(5550), - [anon_sym_LT_LPAREN] = ACTIONS(5550), - [anon_sym_GT_LPAREN] = ACTIONS(5550), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5550), - [sym_word] = ACTIONS(5550), - [anon_sym_SEMI] = ACTIONS(5550), - [anon_sym_LF] = ACTIONS(5548), - [anon_sym_AMP] = ACTIONS(5550), - }, - [3156] = { - [sym__concat] = ACTIONS(5540), - [anon_sym_esac] = ACTIONS(5542), - [anon_sym_PIPE] = ACTIONS(5542), - [anon_sym_SEMI_SEMI] = ACTIONS(5542), - [anon_sym_PIPE_AMP] = ACTIONS(5542), - [anon_sym_AMP_AMP] = ACTIONS(5542), - [anon_sym_PIPE_PIPE] = ACTIONS(5542), - [sym__special_characters] = ACTIONS(5542), - [anon_sym_DQUOTE] = ACTIONS(5542), - [anon_sym_DOLLAR] = ACTIONS(5542), - [sym_raw_string] = ACTIONS(5542), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5542), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5542), - [anon_sym_BQUOTE] = ACTIONS(5542), - [anon_sym_LT_LPAREN] = ACTIONS(5542), - [anon_sym_GT_LPAREN] = ACTIONS(5542), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5542), - [sym_word] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5542), - [anon_sym_LF] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(5542), - }, - [3157] = { - [sym__concat] = ACTIONS(5544), - [anon_sym_esac] = ACTIONS(5546), - [anon_sym_PIPE] = ACTIONS(5546), - [anon_sym_SEMI_SEMI] = ACTIONS(5546), - [anon_sym_PIPE_AMP] = ACTIONS(5546), - [anon_sym_AMP_AMP] = ACTIONS(5546), - [anon_sym_PIPE_PIPE] = ACTIONS(5546), - [sym__special_characters] = ACTIONS(5546), - [anon_sym_DQUOTE] = ACTIONS(5546), - [anon_sym_DOLLAR] = ACTIONS(5546), - [sym_raw_string] = ACTIONS(5546), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5546), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5546), - [anon_sym_BQUOTE] = ACTIONS(5546), - [anon_sym_LT_LPAREN] = ACTIONS(5546), - [anon_sym_GT_LPAREN] = ACTIONS(5546), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5546), - [sym_word] = ACTIONS(5546), - [anon_sym_SEMI] = ACTIONS(5546), - [anon_sym_LF] = ACTIONS(5544), - [anon_sym_AMP] = ACTIONS(5546), - }, - [3158] = { - [sym__concat] = ACTIONS(5548), - [anon_sym_esac] = ACTIONS(5550), - [anon_sym_PIPE] = ACTIONS(5550), - [anon_sym_SEMI_SEMI] = ACTIONS(5550), - [anon_sym_PIPE_AMP] = ACTIONS(5550), - [anon_sym_AMP_AMP] = ACTIONS(5550), - [anon_sym_PIPE_PIPE] = ACTIONS(5550), - [sym__special_characters] = ACTIONS(5550), - [anon_sym_DQUOTE] = ACTIONS(5550), - [anon_sym_DOLLAR] = ACTIONS(5550), - [sym_raw_string] = ACTIONS(5550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5550), - [anon_sym_BQUOTE] = ACTIONS(5550), - [anon_sym_LT_LPAREN] = ACTIONS(5550), - [anon_sym_GT_LPAREN] = ACTIONS(5550), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5550), - [sym_word] = ACTIONS(5550), - [anon_sym_SEMI] = ACTIONS(5550), - [anon_sym_LF] = ACTIONS(5548), - [anon_sym_AMP] = ACTIONS(5550), - }, - [3159] = { - [sym__simple_heredoc_body] = ACTIONS(4884), - [sym__heredoc_body_beginning] = ACTIONS(4884), - [sym_file_descriptor] = ACTIONS(4884), - [sym__concat] = ACTIONS(4884), - [anon_sym_esac] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4886), - [anon_sym_SEMI_SEMI] = ACTIONS(4886), - [anon_sym_PIPE_AMP] = ACTIONS(4886), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_LT] = ACTIONS(4886), - [anon_sym_GT] = ACTIONS(4886), - [anon_sym_GT_GT] = ACTIONS(4886), - [anon_sym_AMP_GT] = ACTIONS(4886), - [anon_sym_AMP_GT_GT] = ACTIONS(4886), - [anon_sym_LT_AMP] = ACTIONS(4886), - [anon_sym_GT_AMP] = ACTIONS(4886), - [anon_sym_LT_LT] = ACTIONS(4886), - [anon_sym_LT_LT_DASH] = ACTIONS(4886), - [anon_sym_LT_LT_LT] = ACTIONS(4886), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym_LF] = ACTIONS(4884), - [anon_sym_AMP] = ACTIONS(4886), - }, - [3160] = { - [sym__simple_heredoc_body] = ACTIONS(4888), - [sym__heredoc_body_beginning] = ACTIONS(4888), - [sym_file_descriptor] = ACTIONS(4888), - [sym__concat] = ACTIONS(4888), - [anon_sym_esac] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4890), - [anon_sym_SEMI_SEMI] = ACTIONS(4890), - [anon_sym_PIPE_AMP] = ACTIONS(4890), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [anon_sym_LT] = ACTIONS(4890), - [anon_sym_GT] = ACTIONS(4890), - [anon_sym_GT_GT] = ACTIONS(4890), - [anon_sym_AMP_GT] = ACTIONS(4890), - [anon_sym_AMP_GT_GT] = ACTIONS(4890), - [anon_sym_LT_AMP] = ACTIONS(4890), - [anon_sym_GT_AMP] = ACTIONS(4890), - [anon_sym_LT_LT] = ACTIONS(4890), - [anon_sym_LT_LT_DASH] = ACTIONS(4890), - [anon_sym_LT_LT_LT] = ACTIONS(4890), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4890), - [anon_sym_LF] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4890), - }, - [3161] = { - [sym__simple_heredoc_body] = ACTIONS(4892), - [sym__heredoc_body_beginning] = ACTIONS(4892), - [sym_file_descriptor] = ACTIONS(4892), - [sym__concat] = ACTIONS(4892), - [anon_sym_esac] = ACTIONS(4894), - [anon_sym_PIPE] = ACTIONS(4894), - [anon_sym_SEMI_SEMI] = ACTIONS(4894), - [anon_sym_PIPE_AMP] = ACTIONS(4894), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE_PIPE] = ACTIONS(4894), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_GT_GT] = ACTIONS(4894), - [anon_sym_AMP_GT] = ACTIONS(4894), - [anon_sym_AMP_GT_GT] = ACTIONS(4894), - [anon_sym_LT_AMP] = ACTIONS(4894), - [anon_sym_GT_AMP] = ACTIONS(4894), - [anon_sym_LT_LT] = ACTIONS(4894), - [anon_sym_LT_LT_DASH] = ACTIONS(4894), - [anon_sym_LT_LT_LT] = ACTIONS(4894), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4894), - [anon_sym_LF] = ACTIONS(4892), - [anon_sym_AMP] = ACTIONS(4894), - }, - [3162] = { - [sym__simple_heredoc_body] = ACTIONS(4896), - [sym__heredoc_body_beginning] = ACTIONS(4896), - [sym_file_descriptor] = ACTIONS(4896), - [sym__concat] = ACTIONS(4896), - [anon_sym_esac] = ACTIONS(4898), - [anon_sym_PIPE] = ACTIONS(4898), - [anon_sym_SEMI_SEMI] = ACTIONS(4898), - [anon_sym_PIPE_AMP] = ACTIONS(4898), - [anon_sym_AMP_AMP] = ACTIONS(4898), - [anon_sym_PIPE_PIPE] = ACTIONS(4898), - [anon_sym_LT] = ACTIONS(4898), - [anon_sym_GT] = ACTIONS(4898), - [anon_sym_GT_GT] = ACTIONS(4898), - [anon_sym_AMP_GT] = ACTIONS(4898), - [anon_sym_AMP_GT_GT] = ACTIONS(4898), - [anon_sym_LT_AMP] = ACTIONS(4898), - [anon_sym_GT_AMP] = ACTIONS(4898), - [anon_sym_LT_LT] = ACTIONS(4898), - [anon_sym_LT_LT_DASH] = ACTIONS(4898), - [anon_sym_LT_LT_LT] = ACTIONS(4898), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4898), - [anon_sym_LF] = ACTIONS(4896), - [anon_sym_AMP] = ACTIONS(4898), - }, - [3163] = { - [sym_concatenation] = STATE(839), + [2822] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7345), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6571), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -82115,54 +70582,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3164] = { - [sym__simple_heredoc_body] = ACTIONS(4902), - [sym__heredoc_body_beginning] = ACTIONS(4902), - [sym_file_descriptor] = ACTIONS(4902), - [sym__concat] = ACTIONS(4902), - [anon_sym_esac] = ACTIONS(4904), - [anon_sym_PIPE] = ACTIONS(4904), - [anon_sym_SEMI_SEMI] = ACTIONS(4904), - [anon_sym_PIPE_AMP] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4904), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_LT] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4904), - [anon_sym_GT_GT] = ACTIONS(4904), - [anon_sym_AMP_GT] = ACTIONS(4904), - [anon_sym_AMP_GT_GT] = ACTIONS(4904), - [anon_sym_LT_AMP] = ACTIONS(4904), - [anon_sym_GT_AMP] = ACTIONS(4904), - [anon_sym_LT_LT] = ACTIONS(4904), - [anon_sym_LT_LT_DASH] = ACTIONS(4904), - [anon_sym_LT_LT_LT] = ACTIONS(4904), + [2823] = { + [sym__concat] = ACTIONS(4765), + [anon_sym_esac] = ACTIONS(4767), + [anon_sym_PIPE] = ACTIONS(4767), + [anon_sym_SEMI_SEMI] = ACTIONS(4767), + [anon_sym_PIPE_AMP] = ACTIONS(4767), + [anon_sym_AMP_AMP] = ACTIONS(4767), + [anon_sym_PIPE_PIPE] = ACTIONS(4767), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4904), - [anon_sym_LF] = ACTIONS(4902), - [anon_sym_AMP] = ACTIONS(4904), + [anon_sym_SEMI] = ACTIONS(4767), + [anon_sym_LF] = ACTIONS(4765), + [anon_sym_AMP] = ACTIONS(4767), }, - [3165] = { - [sym_concatenation] = STATE(839), + [2824] = { + [sym_concatenation] = STATE(829), [sym_string] = STATE(413), [sym_simple_expansion] = STATE(413), [sym_string_expansion] = STATE(413), [sym_expansion] = STATE(413), [sym_command_substitution] = STATE(413), [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7347), - [anon_sym_EQ] = ACTIONS(1782), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(6573), + [anon_sym_EQ] = ACTIONS(1770), [sym__special_characters] = ACTIONS(747), [anon_sym_DQUOTE] = ACTIONS(749), [anon_sym_DOLLAR] = ACTIONS(751), [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1772), [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_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(761), [anon_sym_BQUOTE] = ACTIONS(763), [anon_sym_LT_LPAREN] = ACTIONS(765), @@ -82170,797 +70624,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(767), }, - [3166] = { - [sym__simple_heredoc_body] = ACTIONS(4908), - [sym__heredoc_body_beginning] = ACTIONS(4908), - [sym_file_descriptor] = ACTIONS(4908), - [sym__concat] = ACTIONS(4908), - [anon_sym_esac] = ACTIONS(4910), - [anon_sym_PIPE] = ACTIONS(4910), - [anon_sym_SEMI_SEMI] = ACTIONS(4910), - [anon_sym_PIPE_AMP] = ACTIONS(4910), - [anon_sym_AMP_AMP] = ACTIONS(4910), - [anon_sym_PIPE_PIPE] = ACTIONS(4910), - [anon_sym_LT] = ACTIONS(4910), - [anon_sym_GT] = ACTIONS(4910), - [anon_sym_GT_GT] = ACTIONS(4910), - [anon_sym_AMP_GT] = ACTIONS(4910), - [anon_sym_AMP_GT_GT] = ACTIONS(4910), - [anon_sym_LT_AMP] = ACTIONS(4910), - [anon_sym_GT_AMP] = ACTIONS(4910), - [anon_sym_LT_LT] = ACTIONS(4910), - [anon_sym_LT_LT_DASH] = ACTIONS(4910), - [anon_sym_LT_LT_LT] = ACTIONS(4910), + [2825] = { + [sym__concat] = ACTIONS(4771), + [anon_sym_esac] = ACTIONS(4773), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_SEMI_SEMI] = ACTIONS(4773), + [anon_sym_PIPE_AMP] = ACTIONS(4773), + [anon_sym_AMP_AMP] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4773), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4910), - [anon_sym_LF] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4910), + [anon_sym_SEMI] = ACTIONS(4773), + [anon_sym_LF] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), }, - [3167] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7349), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [2826] = { + [sym__concat] = ACTIONS(4775), + [anon_sym_esac] = ACTIONS(4777), + [anon_sym_PIPE] = ACTIONS(4777), + [anon_sym_SEMI_SEMI] = ACTIONS(4777), + [anon_sym_PIPE_AMP] = ACTIONS(4777), + [anon_sym_AMP_AMP] = ACTIONS(4777), + [anon_sym_PIPE_PIPE] = ACTIONS(4777), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(4777), + [anon_sym_LF] = ACTIONS(4775), + [anon_sym_AMP] = ACTIONS(4777), }, - [3168] = { - [sym__simple_heredoc_body] = ACTIONS(4914), - [sym__heredoc_body_beginning] = ACTIONS(4914), - [sym_file_descriptor] = ACTIONS(4914), - [sym__concat] = ACTIONS(4914), - [anon_sym_esac] = ACTIONS(4916), - [anon_sym_PIPE] = ACTIONS(4916), - [anon_sym_SEMI_SEMI] = ACTIONS(4916), - [anon_sym_PIPE_AMP] = ACTIONS(4916), - [anon_sym_AMP_AMP] = ACTIONS(4916), - [anon_sym_PIPE_PIPE] = ACTIONS(4916), - [anon_sym_LT] = ACTIONS(4916), - [anon_sym_GT] = ACTIONS(4916), - [anon_sym_GT_GT] = ACTIONS(4916), - [anon_sym_AMP_GT] = ACTIONS(4916), - [anon_sym_AMP_GT_GT] = ACTIONS(4916), - [anon_sym_LT_AMP] = ACTIONS(4916), - [anon_sym_GT_AMP] = ACTIONS(4916), - [anon_sym_LT_LT] = ACTIONS(4916), - [anon_sym_LT_LT_DASH] = ACTIONS(4916), - [anon_sym_LT_LT_LT] = ACTIONS(4916), + [2827] = { + [sym__concat] = ACTIONS(5325), + [anon_sym_esac] = ACTIONS(5327), + [anon_sym_PIPE] = ACTIONS(5327), + [anon_sym_SEMI_SEMI] = ACTIONS(5327), + [anon_sym_PIPE_AMP] = ACTIONS(5327), + [anon_sym_AMP_AMP] = ACTIONS(5327), + [anon_sym_PIPE_PIPE] = ACTIONS(5327), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4916), - [anon_sym_LF] = ACTIONS(4914), - [anon_sym_AMP] = ACTIONS(4916), + [anon_sym_SEMI] = ACTIONS(5327), + [anon_sym_LF] = ACTIONS(5325), + [anon_sym_AMP] = ACTIONS(5327), }, - [3169] = { - [sym__simple_heredoc_body] = ACTIONS(4918), - [sym__heredoc_body_beginning] = ACTIONS(4918), - [sym_file_descriptor] = ACTIONS(4918), - [sym__concat] = ACTIONS(4918), - [anon_sym_esac] = ACTIONS(4920), - [anon_sym_PIPE] = ACTIONS(4920), - [anon_sym_SEMI_SEMI] = ACTIONS(4920), - [anon_sym_PIPE_AMP] = ACTIONS(4920), - [anon_sym_AMP_AMP] = ACTIONS(4920), - [anon_sym_PIPE_PIPE] = ACTIONS(4920), - [anon_sym_LT] = ACTIONS(4920), - [anon_sym_GT] = ACTIONS(4920), - [anon_sym_GT_GT] = ACTIONS(4920), - [anon_sym_AMP_GT] = ACTIONS(4920), - [anon_sym_AMP_GT_GT] = ACTIONS(4920), - [anon_sym_LT_AMP] = ACTIONS(4920), - [anon_sym_GT_AMP] = ACTIONS(4920), - [anon_sym_LT_LT] = ACTIONS(4920), - [anon_sym_LT_LT_DASH] = ACTIONS(4920), - [anon_sym_LT_LT_LT] = ACTIONS(4920), + [2828] = { + [sym__concat] = ACTIONS(5329), + [anon_sym_esac] = ACTIONS(5331), + [anon_sym_PIPE] = ACTIONS(5331), + [anon_sym_SEMI_SEMI] = ACTIONS(5331), + [anon_sym_PIPE_AMP] = ACTIONS(5331), + [anon_sym_AMP_AMP] = ACTIONS(5331), + [anon_sym_PIPE_PIPE] = ACTIONS(5331), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4920), - [anon_sym_LF] = ACTIONS(4918), - [anon_sym_AMP] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(5331), + [anon_sym_LF] = ACTIONS(5329), + [anon_sym_AMP] = ACTIONS(5331), }, - [3170] = { - [sym_file_descriptor] = ACTIONS(5540), - [sym__concat] = ACTIONS(5540), - [sym_variable_name] = ACTIONS(5540), - [anon_sym_esac] = ACTIONS(5542), - [anon_sym_PIPE] = ACTIONS(5542), - [anon_sym_SEMI_SEMI] = ACTIONS(5542), - [anon_sym_PIPE_AMP] = ACTIONS(5542), - [anon_sym_AMP_AMP] = ACTIONS(5542), - [anon_sym_PIPE_PIPE] = ACTIONS(5542), - [anon_sym_LT] = ACTIONS(5542), - [anon_sym_GT] = ACTIONS(5542), - [anon_sym_GT_GT] = ACTIONS(5542), - [anon_sym_AMP_GT] = ACTIONS(5542), - [anon_sym_AMP_GT_GT] = ACTIONS(5542), - [anon_sym_LT_AMP] = ACTIONS(5542), - [anon_sym_GT_AMP] = ACTIONS(5542), - [sym__special_characters] = ACTIONS(5542), - [anon_sym_DQUOTE] = ACTIONS(5542), - [anon_sym_DOLLAR] = ACTIONS(5542), - [sym_raw_string] = ACTIONS(5542), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5542), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5542), - [anon_sym_BQUOTE] = ACTIONS(5542), - [anon_sym_LT_LPAREN] = ACTIONS(5542), - [anon_sym_GT_LPAREN] = ACTIONS(5542), + [2829] = { + [sym__concat] = ACTIONS(5333), + [anon_sym_esac] = ACTIONS(5335), + [anon_sym_PIPE] = ACTIONS(5335), + [anon_sym_SEMI_SEMI] = ACTIONS(5335), + [anon_sym_PIPE_AMP] = ACTIONS(5335), + [anon_sym_AMP_AMP] = ACTIONS(5335), + [anon_sym_PIPE_PIPE] = ACTIONS(5335), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5542), - [anon_sym_LF] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(5542), - }, - [3171] = { - [sym_file_descriptor] = ACTIONS(5544), - [sym__concat] = ACTIONS(5544), - [sym_variable_name] = ACTIONS(5544), - [anon_sym_esac] = ACTIONS(5546), - [anon_sym_PIPE] = ACTIONS(5546), - [anon_sym_SEMI_SEMI] = ACTIONS(5546), - [anon_sym_PIPE_AMP] = ACTIONS(5546), - [anon_sym_AMP_AMP] = ACTIONS(5546), - [anon_sym_PIPE_PIPE] = ACTIONS(5546), - [anon_sym_LT] = ACTIONS(5546), - [anon_sym_GT] = ACTIONS(5546), - [anon_sym_GT_GT] = ACTIONS(5546), - [anon_sym_AMP_GT] = ACTIONS(5546), - [anon_sym_AMP_GT_GT] = ACTIONS(5546), - [anon_sym_LT_AMP] = ACTIONS(5546), - [anon_sym_GT_AMP] = ACTIONS(5546), - [sym__special_characters] = ACTIONS(5546), - [anon_sym_DQUOTE] = ACTIONS(5546), - [anon_sym_DOLLAR] = ACTIONS(5546), - [sym_raw_string] = ACTIONS(5546), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5546), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5546), - [anon_sym_BQUOTE] = ACTIONS(5546), - [anon_sym_LT_LPAREN] = ACTIONS(5546), - [anon_sym_GT_LPAREN] = ACTIONS(5546), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5546), - [anon_sym_SEMI] = ACTIONS(5546), - [anon_sym_LF] = ACTIONS(5544), - [anon_sym_AMP] = ACTIONS(5546), - }, - [3172] = { - [sym_file_descriptor] = ACTIONS(5548), - [sym__concat] = ACTIONS(5548), - [sym_variable_name] = ACTIONS(5548), - [anon_sym_esac] = ACTIONS(5550), - [anon_sym_PIPE] = ACTIONS(5550), - [anon_sym_SEMI_SEMI] = ACTIONS(5550), - [anon_sym_PIPE_AMP] = ACTIONS(5550), - [anon_sym_AMP_AMP] = ACTIONS(5550), - [anon_sym_PIPE_PIPE] = ACTIONS(5550), - [anon_sym_LT] = ACTIONS(5550), - [anon_sym_GT] = ACTIONS(5550), - [anon_sym_GT_GT] = ACTIONS(5550), - [anon_sym_AMP_GT] = ACTIONS(5550), - [anon_sym_AMP_GT_GT] = ACTIONS(5550), - [anon_sym_LT_AMP] = ACTIONS(5550), - [anon_sym_GT_AMP] = ACTIONS(5550), - [sym__special_characters] = ACTIONS(5550), - [anon_sym_DQUOTE] = ACTIONS(5550), - [anon_sym_DOLLAR] = ACTIONS(5550), - [sym_raw_string] = ACTIONS(5550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5550), - [anon_sym_BQUOTE] = ACTIONS(5550), - [anon_sym_LT_LPAREN] = ACTIONS(5550), - [anon_sym_GT_LPAREN] = ACTIONS(5550), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5550), - [anon_sym_SEMI] = ACTIONS(5550), - [anon_sym_LF] = ACTIONS(5548), - [anon_sym_AMP] = ACTIONS(5550), - }, - [3173] = { - [sym__concat] = ACTIONS(3917), - [anon_sym_esac] = ACTIONS(3919), - [anon_sym_PIPE] = ACTIONS(3919), - [anon_sym_SEMI_SEMI] = ACTIONS(3919), - [anon_sym_PIPE_AMP] = ACTIONS(3919), - [anon_sym_AMP_AMP] = ACTIONS(3919), - [anon_sym_PIPE_PIPE] = ACTIONS(3919), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3919), - [anon_sym_LF] = ACTIONS(3917), - [anon_sym_AMP] = ACTIONS(3919), - }, - [3174] = { - [sym__concat] = ACTIONS(3923), - [anon_sym_esac] = ACTIONS(3925), - [anon_sym_PIPE] = ACTIONS(3925), - [anon_sym_SEMI_SEMI] = ACTIONS(3925), - [anon_sym_PIPE_AMP] = ACTIONS(3925), - [anon_sym_AMP_AMP] = ACTIONS(3925), - [anon_sym_PIPE_PIPE] = ACTIONS(3925), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3925), - [anon_sym_LF] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3925), - }, - [3175] = { - [sym__concat] = ACTIONS(4008), - [anon_sym_esac] = ACTIONS(4010), - [anon_sym_PIPE] = ACTIONS(4010), - [anon_sym_SEMI_SEMI] = ACTIONS(4010), - [anon_sym_PIPE_AMP] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4010), - [anon_sym_LF] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4010), - }, - [3176] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7351), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [3177] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(7353), - [sym_comment] = ACTIONS(53), - }, - [3178] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(7355), - [sym_comment] = ACTIONS(53), - }, - [3179] = { - [anon_sym_RBRACE] = ACTIONS(7355), - [sym_comment] = ACTIONS(53), - }, - [3180] = { - [sym_concatenation] = STATE(3196), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3196), - [anon_sym_RBRACE] = ACTIONS(7357), - [anon_sym_EQ] = ACTIONS(7359), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7361), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(7359), - [anon_sym_COLON_QMARK] = ACTIONS(7359), - [anon_sym_COLON_DASH] = ACTIONS(7359), - [anon_sym_PERCENT] = ACTIONS(7359), - [anon_sym_DASH] = ACTIONS(7359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [3181] = { - [sym__concat] = ACTIONS(4024), - [anon_sym_esac] = ACTIONS(4026), - [anon_sym_PIPE] = ACTIONS(4026), - [anon_sym_SEMI_SEMI] = ACTIONS(4026), - [anon_sym_PIPE_AMP] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym_LF] = ACTIONS(4024), - [anon_sym_AMP] = ACTIONS(4026), - }, - [3182] = { - [sym_concatenation] = STATE(3198), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3198), - [anon_sym_RBRACE] = ACTIONS(7363), - [anon_sym_EQ] = ACTIONS(7365), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(7365), - [anon_sym_COLON_QMARK] = ACTIONS(7365), - [anon_sym_COLON_DASH] = ACTIONS(7365), - [anon_sym_PERCENT] = ACTIONS(7365), - [anon_sym_DASH] = ACTIONS(7365), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [3183] = { - [sym__concat] = ACTIONS(4034), - [anon_sym_esac] = ACTIONS(4036), - [anon_sym_PIPE] = ACTIONS(4036), - [anon_sym_SEMI_SEMI] = ACTIONS(4036), - [anon_sym_PIPE_AMP] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_PIPE_PIPE] = ACTIONS(4036), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym_LF] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4036), - }, - [3184] = { - [sym_concatenation] = STATE(3200), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(3200), - [anon_sym_RBRACE] = ACTIONS(7369), - [anon_sym_EQ] = ACTIONS(7371), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(7373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(7371), - [anon_sym_COLON_QMARK] = ACTIONS(7371), - [anon_sym_COLON_DASH] = ACTIONS(7371), - [anon_sym_PERCENT] = ACTIONS(7371), - [anon_sym_DASH] = ACTIONS(7371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [3185] = { - [sym__concat] = ACTIONS(4044), - [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(177), - [anon_sym_SEMI] = ACTIONS(4046), - [anon_sym_LF] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4046), - }, - [3186] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7375), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [3187] = { - [sym__concat] = ACTIONS(4050), - [anon_sym_esac] = ACTIONS(4052), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_SEMI_SEMI] = ACTIONS(4052), - [anon_sym_PIPE_AMP] = ACTIONS(4052), - [anon_sym_AMP_AMP] = ACTIONS(4052), - [anon_sym_PIPE_PIPE] = ACTIONS(4052), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4052), - }, - [3188] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7377), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [3189] = { - [sym__simple_heredoc_body] = ACTIONS(5540), - [sym__heredoc_body_beginning] = ACTIONS(5540), - [sym_file_descriptor] = ACTIONS(5540), - [sym__concat] = ACTIONS(5540), - [anon_sym_esac] = ACTIONS(5542), - [anon_sym_PIPE] = ACTIONS(5542), - [anon_sym_SEMI_SEMI] = ACTIONS(5542), - [anon_sym_PIPE_AMP] = ACTIONS(5542), - [anon_sym_AMP_AMP] = ACTIONS(5542), - [anon_sym_PIPE_PIPE] = ACTIONS(5542), - [anon_sym_LT] = ACTIONS(5542), - [anon_sym_GT] = ACTIONS(5542), - [anon_sym_GT_GT] = ACTIONS(5542), - [anon_sym_AMP_GT] = ACTIONS(5542), - [anon_sym_AMP_GT_GT] = ACTIONS(5542), - [anon_sym_LT_AMP] = ACTIONS(5542), - [anon_sym_GT_AMP] = ACTIONS(5542), - [anon_sym_LT_LT] = ACTIONS(5542), - [anon_sym_LT_LT_DASH] = ACTIONS(5542), - [anon_sym_LT_LT_LT] = ACTIONS(5542), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5542), - [anon_sym_LF] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(5542), - }, - [3190] = { - [sym__simple_heredoc_body] = ACTIONS(5544), - [sym__heredoc_body_beginning] = ACTIONS(5544), - [sym_file_descriptor] = ACTIONS(5544), - [sym__concat] = ACTIONS(5544), - [anon_sym_esac] = ACTIONS(5546), - [anon_sym_PIPE] = ACTIONS(5546), - [anon_sym_SEMI_SEMI] = ACTIONS(5546), - [anon_sym_PIPE_AMP] = ACTIONS(5546), - [anon_sym_AMP_AMP] = ACTIONS(5546), - [anon_sym_PIPE_PIPE] = ACTIONS(5546), - [anon_sym_LT] = ACTIONS(5546), - [anon_sym_GT] = ACTIONS(5546), - [anon_sym_GT_GT] = ACTIONS(5546), - [anon_sym_AMP_GT] = ACTIONS(5546), - [anon_sym_AMP_GT_GT] = ACTIONS(5546), - [anon_sym_LT_AMP] = ACTIONS(5546), - [anon_sym_GT_AMP] = ACTIONS(5546), - [anon_sym_LT_LT] = ACTIONS(5546), - [anon_sym_LT_LT_DASH] = ACTIONS(5546), - [anon_sym_LT_LT_LT] = ACTIONS(5546), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5546), - [anon_sym_LF] = ACTIONS(5544), - [anon_sym_AMP] = ACTIONS(5546), - }, - [3191] = { - [sym__simple_heredoc_body] = ACTIONS(5548), - [sym__heredoc_body_beginning] = ACTIONS(5548), - [sym_file_descriptor] = ACTIONS(5548), - [sym__concat] = ACTIONS(5548), - [anon_sym_esac] = ACTIONS(5550), - [anon_sym_PIPE] = ACTIONS(5550), - [anon_sym_SEMI_SEMI] = ACTIONS(5550), - [anon_sym_PIPE_AMP] = ACTIONS(5550), - [anon_sym_AMP_AMP] = ACTIONS(5550), - [anon_sym_PIPE_PIPE] = ACTIONS(5550), - [anon_sym_LT] = ACTIONS(5550), - [anon_sym_GT] = ACTIONS(5550), - [anon_sym_GT_GT] = ACTIONS(5550), - [anon_sym_AMP_GT] = ACTIONS(5550), - [anon_sym_AMP_GT_GT] = ACTIONS(5550), - [anon_sym_LT_AMP] = ACTIONS(5550), - [anon_sym_GT_AMP] = ACTIONS(5550), - [anon_sym_LT_LT] = ACTIONS(5550), - [anon_sym_LT_LT_DASH] = ACTIONS(5550), - [anon_sym_LT_LT_LT] = ACTIONS(5550), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5550), - [anon_sym_LF] = ACTIONS(5548), - [anon_sym_AMP] = ACTIONS(5550), - }, - [3192] = { - [sym__concat] = ACTIONS(4884), - [anon_sym_esac] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4886), - [anon_sym_SEMI_SEMI] = ACTIONS(4886), - [anon_sym_PIPE_AMP] = ACTIONS(4886), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym_LF] = ACTIONS(4884), - [anon_sym_AMP] = ACTIONS(4886), - }, - [3193] = { - [sym__concat] = ACTIONS(4888), - [anon_sym_esac] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4890), - [anon_sym_SEMI_SEMI] = ACTIONS(4890), - [anon_sym_PIPE_AMP] = ACTIONS(4890), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4890), - [anon_sym_LF] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4890), - }, - [3194] = { - [sym__concat] = ACTIONS(4892), - [anon_sym_esac] = ACTIONS(4894), - [anon_sym_PIPE] = ACTIONS(4894), - [anon_sym_SEMI_SEMI] = ACTIONS(4894), - [anon_sym_PIPE_AMP] = ACTIONS(4894), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE_PIPE] = ACTIONS(4894), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4894), - [anon_sym_LF] = ACTIONS(4892), - [anon_sym_AMP] = ACTIONS(4894), - }, - [3195] = { - [sym__concat] = ACTIONS(4896), - [anon_sym_esac] = ACTIONS(4898), - [anon_sym_PIPE] = ACTIONS(4898), - [anon_sym_SEMI_SEMI] = ACTIONS(4898), - [anon_sym_PIPE_AMP] = ACTIONS(4898), - [anon_sym_AMP_AMP] = ACTIONS(4898), - [anon_sym_PIPE_PIPE] = ACTIONS(4898), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4898), - [anon_sym_LF] = ACTIONS(4896), - [anon_sym_AMP] = ACTIONS(4898), - }, - [3196] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7379), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [3197] = { - [sym__concat] = ACTIONS(4902), - [anon_sym_esac] = ACTIONS(4904), - [anon_sym_PIPE] = ACTIONS(4904), - [anon_sym_SEMI_SEMI] = ACTIONS(4904), - [anon_sym_PIPE_AMP] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4904), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4904), - [anon_sym_LF] = ACTIONS(4902), - [anon_sym_AMP] = ACTIONS(4904), - }, - [3198] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7381), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [3199] = { - [sym__concat] = ACTIONS(4908), - [anon_sym_esac] = ACTIONS(4910), - [anon_sym_PIPE] = ACTIONS(4910), - [anon_sym_SEMI_SEMI] = ACTIONS(4910), - [anon_sym_PIPE_AMP] = ACTIONS(4910), - [anon_sym_AMP_AMP] = ACTIONS(4910), - [anon_sym_PIPE_PIPE] = ACTIONS(4910), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4910), - [anon_sym_LF] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4910), - }, - [3200] = { - [sym_concatenation] = STATE(839), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(7383), - [anon_sym_EQ] = ACTIONS(1782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1782), - [anon_sym_COLON_QMARK] = ACTIONS(1782), - [anon_sym_COLON_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [3201] = { - [sym__concat] = ACTIONS(4914), - [anon_sym_esac] = ACTIONS(4916), - [anon_sym_PIPE] = ACTIONS(4916), - [anon_sym_SEMI_SEMI] = ACTIONS(4916), - [anon_sym_PIPE_AMP] = ACTIONS(4916), - [anon_sym_AMP_AMP] = ACTIONS(4916), - [anon_sym_PIPE_PIPE] = ACTIONS(4916), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4916), - [anon_sym_LF] = ACTIONS(4914), - [anon_sym_AMP] = ACTIONS(4916), - }, - [3202] = { - [sym__concat] = ACTIONS(4918), - [anon_sym_esac] = ACTIONS(4920), - [anon_sym_PIPE] = ACTIONS(4920), - [anon_sym_SEMI_SEMI] = ACTIONS(4920), - [anon_sym_PIPE_AMP] = ACTIONS(4920), - [anon_sym_AMP_AMP] = ACTIONS(4920), - [anon_sym_PIPE_PIPE] = ACTIONS(4920), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4920), - [anon_sym_LF] = ACTIONS(4918), - [anon_sym_AMP] = ACTIONS(4920), - }, - [3203] = { - [sym__concat] = ACTIONS(5540), - [anon_sym_esac] = ACTIONS(5542), - [anon_sym_PIPE] = ACTIONS(5542), - [anon_sym_SEMI_SEMI] = ACTIONS(5542), - [anon_sym_PIPE_AMP] = ACTIONS(5542), - [anon_sym_AMP_AMP] = ACTIONS(5542), - [anon_sym_PIPE_PIPE] = ACTIONS(5542), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5542), - [anon_sym_LF] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(5542), - }, - [3204] = { - [sym__concat] = ACTIONS(5544), - [anon_sym_esac] = ACTIONS(5546), - [anon_sym_PIPE] = ACTIONS(5546), - [anon_sym_SEMI_SEMI] = ACTIONS(5546), - [anon_sym_PIPE_AMP] = ACTIONS(5546), - [anon_sym_AMP_AMP] = ACTIONS(5546), - [anon_sym_PIPE_PIPE] = ACTIONS(5546), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5546), - [anon_sym_LF] = ACTIONS(5544), - [anon_sym_AMP] = ACTIONS(5546), - }, - [3205] = { - [sym__concat] = ACTIONS(5548), - [anon_sym_esac] = ACTIONS(5550), - [anon_sym_PIPE] = ACTIONS(5550), - [anon_sym_SEMI_SEMI] = ACTIONS(5550), - [anon_sym_PIPE_AMP] = ACTIONS(5550), - [anon_sym_AMP_AMP] = ACTIONS(5550), - [anon_sym_PIPE_PIPE] = ACTIONS(5550), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5550), - [anon_sym_LF] = ACTIONS(5548), - [anon_sym_AMP] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5335), + [anon_sym_LF] = ACTIONS(5333), + [anon_sym_AMP] = ACTIONS(5335), }, }; @@ -83531,3012 +71258,2612 @@ static TSParseActionEntry ts_parse_actions[] = { [1153] = {.count = 1, .reusable = false}, SHIFT(577), [1155] = {.count = 1, .reusable = true}, SHIFT(587), [1157] = {.count = 1, .reusable = true}, SHIFT(588), - [1159] = {.count = 1, .reusable = false}, SHIFT(589), - [1161] = {.count = 1, .reusable = true}, SHIFT(590), - [1163] = {.count = 1, .reusable = true}, SHIFT(591), - [1165] = {.count = 1, .reusable = true}, SHIFT(592), - [1167] = {.count = 1, .reusable = true}, SHIFT(593), - [1169] = {.count = 1, .reusable = true}, SHIFT(594), - [1171] = {.count = 1, .reusable = true}, SHIFT(596), - [1173] = {.count = 1, .reusable = false}, SHIFT(598), - [1175] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), - [1177] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), - [1179] = {.count = 1, .reusable = false}, SHIFT(604), - [1181] = {.count = 1, .reusable = false}, SHIFT(605), - [1183] = {.count = 1, .reusable = false}, SHIFT(606), - [1185] = {.count = 1, .reusable = true}, SHIFT(613), - [1187] = {.count = 1, .reusable = false}, SHIFT(614), - [1189] = {.count = 1, .reusable = true}, SHIFT(614), - [1191] = {.count = 1, .reusable = true}, SHIFT(615), - [1193] = {.count = 1, .reusable = false}, SHIFT(617), - [1195] = {.count = 1, .reusable = false}, SHIFT(618), - [1197] = {.count = 1, .reusable = true}, SHIFT(618), - [1199] = {.count = 1, .reusable = true}, SHIFT(619), - [1201] = {.count = 1, .reusable = true}, SHIFT(620), - [1203] = {.count = 1, .reusable = true}, SHIFT(621), - [1205] = {.count = 1, .reusable = false}, SHIFT(623), - [1207] = {.count = 1, .reusable = true}, SHIFT(623), - [1209] = {.count = 1, .reusable = true}, SHIFT(622), - [1211] = {.count = 1, .reusable = true}, SHIFT(624), - [1213] = {.count = 1, .reusable = true}, SHIFT(625), - [1215] = {.count = 1, .reusable = false}, SHIFT(626), - [1217] = {.count = 1, .reusable = false}, SHIFT(625), - [1219] = {.count = 1, .reusable = true}, SHIFT(628), - [1221] = {.count = 1, .reusable = false}, SHIFT(630), - [1223] = {.count = 1, .reusable = true}, SHIFT(630), - [1225] = {.count = 1, .reusable = true}, SHIFT(629), - [1227] = {.count = 1, .reusable = true}, SHIFT(631), - [1229] = {.count = 1, .reusable = false}, SHIFT(633), - [1231] = {.count = 1, .reusable = true}, SHIFT(633), - [1233] = {.count = 1, .reusable = true}, SHIFT(632), - [1235] = {.count = 1, .reusable = true}, SHIFT(634), - [1237] = {.count = 1, .reusable = true}, SHIFT(635), - [1239] = {.count = 1, .reusable = true}, SHIFT(636), - [1241] = {.count = 1, .reusable = true}, SHIFT(637), - [1243] = {.count = 1, .reusable = true}, SHIFT(641), - [1245] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), - [1247] = {.count = 1, .reusable = false}, SHIFT(642), - [1249] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), - [1251] = {.count = 1, .reusable = true}, SHIFT(644), - [1253] = {.count = 1, .reusable = true}, SHIFT(645), + [1159] = {.count = 1, .reusable = true}, SHIFT(590), + [1161] = {.count = 1, .reusable = false}, SHIFT(592), + [1163] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), + [1165] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), + [1167] = {.count = 1, .reusable = false}, SHIFT(596), + [1169] = {.count = 1, .reusable = false}, SHIFT(597), + [1171] = {.count = 1, .reusable = false}, SHIFT(598), + [1173] = {.count = 1, .reusable = true}, SHIFT(603), + [1175] = {.count = 1, .reusable = false}, SHIFT(604), + [1177] = {.count = 1, .reusable = true}, SHIFT(604), + [1179] = {.count = 1, .reusable = true}, SHIFT(605), + [1181] = {.count = 1, .reusable = false}, SHIFT(607), + [1183] = {.count = 1, .reusable = false}, SHIFT(608), + [1185] = {.count = 1, .reusable = true}, SHIFT(608), + [1187] = {.count = 1, .reusable = true}, SHIFT(609), + [1189] = {.count = 1, .reusable = true}, SHIFT(610), + [1191] = {.count = 1, .reusable = true}, SHIFT(611), + [1193] = {.count = 1, .reusable = false}, SHIFT(613), + [1195] = {.count = 1, .reusable = true}, SHIFT(613), + [1197] = {.count = 1, .reusable = true}, SHIFT(612), + [1199] = {.count = 1, .reusable = true}, SHIFT(614), + [1201] = {.count = 1, .reusable = true}, SHIFT(615), + [1203] = {.count = 1, .reusable = false}, SHIFT(616), + [1205] = {.count = 1, .reusable = false}, SHIFT(615), + [1207] = {.count = 1, .reusable = true}, SHIFT(618), + [1209] = {.count = 1, .reusable = false}, SHIFT(620), + [1211] = {.count = 1, .reusable = true}, SHIFT(620), + [1213] = {.count = 1, .reusable = true}, SHIFT(619), + [1215] = {.count = 1, .reusable = true}, SHIFT(621), + [1217] = {.count = 1, .reusable = false}, SHIFT(623), + [1219] = {.count = 1, .reusable = true}, SHIFT(623), + [1221] = {.count = 1, .reusable = true}, SHIFT(622), + [1223] = {.count = 1, .reusable = true}, SHIFT(624), + [1225] = {.count = 1, .reusable = true}, SHIFT(625), + [1227] = {.count = 1, .reusable = true}, SHIFT(626), + [1229] = {.count = 1, .reusable = true}, SHIFT(627), + [1231] = {.count = 1, .reusable = true}, SHIFT(631), + [1233] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), + [1235] = {.count = 1, .reusable = false}, SHIFT(632), + [1237] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), + [1239] = {.count = 1, .reusable = true}, SHIFT(634), + [1241] = {.count = 1, .reusable = true}, SHIFT(635), + [1243] = {.count = 1, .reusable = true}, SHIFT(637), + [1245] = {.count = 1, .reusable = true}, SHIFT(639), + [1247] = {.count = 1, .reusable = true}, SHIFT(640), + [1249] = {.count = 1, .reusable = true}, SHIFT(646), + [1251] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 3), + [1253] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 3), [1255] = {.count = 1, .reusable = true}, SHIFT(647), - [1257] = {.count = 1, .reusable = true}, SHIFT(649), + [1257] = {.count = 1, .reusable = false}, SHIFT(650), [1259] = {.count = 1, .reusable = true}, SHIFT(650), - [1261] = {.count = 1, .reusable = true}, SHIFT(656), - [1263] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 3), - [1265] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 3), - [1267] = {.count = 1, .reusable = true}, SHIFT(657), - [1269] = {.count = 1, .reusable = false}, SHIFT(660), - [1271] = {.count = 1, .reusable = true}, SHIFT(660), - [1273] = {.count = 1, .reusable = false}, SHIFT(661), - [1275] = {.count = 1, .reusable = false}, SHIFT(662), - [1277] = {.count = 1, .reusable = true}, SHIFT(663), - [1279] = {.count = 1, .reusable = true}, SHIFT(664), - [1281] = {.count = 1, .reusable = true}, SHIFT(665), - [1283] = {.count = 1, .reusable = true}, SHIFT(666), - [1285] = {.count = 1, .reusable = false}, SHIFT(657), - [1287] = {.count = 1, .reusable = false}, SHIFT(670), - [1289] = {.count = 1, .reusable = true}, SHIFT(670), - [1291] = {.count = 1, .reusable = true}, SHIFT(672), - [1293] = {.count = 1, .reusable = true}, SHIFT(673), - [1295] = {.count = 1, .reusable = true}, SHIFT(674), - [1297] = {.count = 1, .reusable = true}, SHIFT(675), - [1299] = {.count = 1, .reusable = true}, SHIFT(678), - [1301] = {.count = 1, .reusable = true}, SHIFT(679), - [1303] = {.count = 1, .reusable = true}, SHIFT(680), - [1305] = {.count = 1, .reusable = false}, SHIFT(679), - [1307] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2), - [1309] = {.count = 1, .reusable = true}, SHIFT(681), - [1311] = {.count = 1, .reusable = false}, SHIFT(683), - [1313] = {.count = 1, .reusable = true}, SHIFT(684), - [1315] = {.count = 1, .reusable = true}, SHIFT(685), - [1317] = {.count = 1, .reusable = false}, SHIFT(687), - [1319] = {.count = 1, .reusable = true}, SHIFT(687), - [1321] = {.count = 1, .reusable = true}, SHIFT(686), - [1323] = {.count = 1, .reusable = true}, SHIFT(688), - [1325] = {.count = 1, .reusable = true}, SHIFT(689), - [1327] = {.count = 1, .reusable = false}, SHIFT(690), - [1329] = {.count = 1, .reusable = false}, SHIFT(689), - [1331] = {.count = 1, .reusable = true}, SHIFT(692), - [1333] = {.count = 1, .reusable = false}, SHIFT(694), - [1335] = {.count = 1, .reusable = true}, SHIFT(694), - [1337] = {.count = 1, .reusable = true}, SHIFT(693), - [1339] = {.count = 1, .reusable = true}, SHIFT(695), - [1341] = {.count = 1, .reusable = false}, SHIFT(697), - [1343] = {.count = 1, .reusable = true}, SHIFT(697), - [1345] = {.count = 1, .reusable = true}, SHIFT(696), - [1347] = {.count = 1, .reusable = true}, SHIFT(698), - [1349] = {.count = 1, .reusable = true}, SHIFT(699), - [1351] = {.count = 1, .reusable = true}, SHIFT(701), - [1353] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 3), - [1355] = {.count = 1, .reusable = false}, SHIFT(702), - [1357] = {.count = 1, .reusable = false}, SHIFT(703), - [1359] = {.count = 1, .reusable = false}, SHIFT(704), - [1361] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 3), - [1363] = {.count = 1, .reusable = false}, SHIFT(72), - [1365] = {.count = 1, .reusable = false}, SHIFT(74), - [1367] = {.count = 1, .reusable = false}, SHIFT(75), - [1369] = {.count = 1, .reusable = false}, SHIFT(78), - [1371] = {.count = 1, .reusable = false}, SHIFT(79), - [1373] = {.count = 1, .reusable = false}, SHIFT(80), - [1375] = {.count = 1, .reusable = false}, SHIFT(81), - [1377] = {.count = 1, .reusable = false}, SHIFT(706), - [1379] = {.count = 1, .reusable = true}, SHIFT(707), - [1381] = {.count = 1, .reusable = true}, SHIFT(708), - [1383] = {.count = 1, .reusable = false}, SHIFT(710), - [1385] = {.count = 1, .reusable = true}, SHIFT(711), - [1387] = {.count = 1, .reusable = true}, SHIFT(712), - [1389] = {.count = 1, .reusable = false}, SHIFT(714), - [1391] = {.count = 1, .reusable = true}, SHIFT(714), - [1393] = {.count = 1, .reusable = true}, SHIFT(713), - [1395] = {.count = 1, .reusable = true}, SHIFT(715), - [1397] = {.count = 1, .reusable = true}, SHIFT(716), - [1399] = {.count = 1, .reusable = false}, SHIFT(717), - [1401] = {.count = 1, .reusable = false}, SHIFT(716), - [1403] = {.count = 1, .reusable = true}, SHIFT(719), - [1405] = {.count = 1, .reusable = false}, SHIFT(721), - [1407] = {.count = 1, .reusable = true}, SHIFT(721), - [1409] = {.count = 1, .reusable = true}, SHIFT(720), - [1411] = {.count = 1, .reusable = true}, SHIFT(722), - [1413] = {.count = 1, .reusable = false}, SHIFT(724), - [1415] = {.count = 1, .reusable = true}, SHIFT(724), - [1417] = {.count = 1, .reusable = true}, SHIFT(723), - [1419] = {.count = 1, .reusable = true}, SHIFT(725), - [1421] = {.count = 1, .reusable = true}, SHIFT(726), - [1423] = {.count = 1, .reusable = false}, SHIFT(83), - [1425] = {.count = 1, .reusable = false}, SHIFT(85), - [1427] = {.count = 1, .reusable = false}, SHIFT(86), - [1429] = {.count = 1, .reusable = false}, SHIFT(89), - [1431] = {.count = 1, .reusable = false}, SHIFT(90), - [1433] = {.count = 1, .reusable = false}, SHIFT(91), - [1435] = {.count = 1, .reusable = false}, SHIFT(92), - [1437] = {.count = 1, .reusable = false}, SHIFT(728), - [1439] = {.count = 1, .reusable = true}, SHIFT(729), - [1441] = {.count = 1, .reusable = true}, SHIFT(730), - [1443] = {.count = 1, .reusable = true}, SHIFT(731), - [1445] = {.count = 1, .reusable = true}, SHIFT(732), - [1447] = {.count = 1, .reusable = true}, SHIFT(99), - [1449] = {.count = 1, .reusable = true}, SHIFT(100), - [1451] = {.count = 1, .reusable = true}, SHIFT(101), - [1453] = {.count = 1, .reusable = true}, SHIFT(102), - [1455] = {.count = 1, .reusable = true}, SHIFT(733), - [1457] = {.count = 1, .reusable = false}, SHIFT(735), - [1459] = {.count = 1, .reusable = true}, SHIFT(736), - [1461] = {.count = 1, .reusable = true}, SHIFT(737), - [1463] = {.count = 1, .reusable = false}, SHIFT(739), - [1465] = {.count = 1, .reusable = true}, SHIFT(739), - [1467] = {.count = 1, .reusable = true}, SHIFT(738), - [1469] = {.count = 1, .reusable = true}, SHIFT(740), - [1471] = {.count = 1, .reusable = true}, SHIFT(741), - [1473] = {.count = 1, .reusable = false}, SHIFT(742), - [1475] = {.count = 1, .reusable = false}, SHIFT(741), - [1477] = {.count = 1, .reusable = true}, SHIFT(744), - [1479] = {.count = 1, .reusable = false}, SHIFT(746), - [1481] = {.count = 1, .reusable = true}, SHIFT(746), - [1483] = {.count = 1, .reusable = true}, SHIFT(745), - [1485] = {.count = 1, .reusable = true}, SHIFT(747), - [1487] = {.count = 1, .reusable = false}, SHIFT(749), - [1489] = {.count = 1, .reusable = true}, SHIFT(749), - [1491] = {.count = 1, .reusable = true}, SHIFT(748), - [1493] = {.count = 1, .reusable = true}, SHIFT(750), - [1495] = {.count = 1, .reusable = true}, SHIFT(751), - [1497] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(94), - [1500] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1502] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(95), - [1505] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(96), - [1508] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(97), - [1511] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(98), - [1514] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(99), - [1517] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(100), - [1520] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(101), - [1523] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(102), - [1526] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(103), - [1529] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1531] = {.count = 1, .reusable = true}, SHIFT(752), - [1533] = {.count = 1, .reusable = true}, SHIFT(110), - [1535] = {.count = 1, .reusable = true}, SHIFT(111), - [1537] = {.count = 1, .reusable = true}, SHIFT(112), - [1539] = {.count = 1, .reusable = true}, SHIFT(113), - [1541] = {.count = 1, .reusable = false}, SHIFT(754), - [1543] = {.count = 1, .reusable = true}, SHIFT(755), - [1545] = {.count = 1, .reusable = true}, SHIFT(756), - [1547] = {.count = 1, .reusable = false}, SHIFT(758), - [1549] = {.count = 1, .reusable = true}, SHIFT(758), - [1551] = {.count = 1, .reusable = true}, SHIFT(757), - [1553] = {.count = 1, .reusable = true}, SHIFT(759), - [1555] = {.count = 1, .reusable = true}, SHIFT(760), - [1557] = {.count = 1, .reusable = false}, SHIFT(761), - [1559] = {.count = 1, .reusable = false}, SHIFT(760), - [1561] = {.count = 1, .reusable = true}, SHIFT(763), - [1563] = {.count = 1, .reusable = false}, SHIFT(765), - [1565] = {.count = 1, .reusable = true}, SHIFT(765), - [1567] = {.count = 1, .reusable = true}, SHIFT(764), - [1569] = {.count = 1, .reusable = true}, SHIFT(766), - [1571] = {.count = 1, .reusable = false}, SHIFT(768), - [1573] = {.count = 1, .reusable = true}, SHIFT(768), - [1575] = {.count = 1, .reusable = true}, SHIFT(767), - [1577] = {.count = 1, .reusable = true}, SHIFT(769), - [1579] = {.count = 1, .reusable = true}, SHIFT(770), - [1581] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), - [1583] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(106), - [1586] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(107), - [1589] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(108), - [1592] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(109), - [1595] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(110), - [1598] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(111), - [1601] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(112), - [1604] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(113), - [1607] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(114), - [1610] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), - [1612] = {.count = 1, .reusable = true}, SHIFT(771), - [1614] = {.count = 1, .reusable = false}, SHIFT(773), - [1616] = {.count = 1, .reusable = true}, SHIFT(774), - [1618] = {.count = 1, .reusable = true}, SHIFT(775), - [1620] = {.count = 1, .reusable = false}, SHIFT(777), - [1622] = {.count = 1, .reusable = true}, SHIFT(777), - [1624] = {.count = 1, .reusable = true}, SHIFT(776), - [1626] = {.count = 1, .reusable = true}, SHIFT(778), - [1628] = {.count = 1, .reusable = true}, SHIFT(779), - [1630] = {.count = 1, .reusable = false}, SHIFT(780), - [1632] = {.count = 1, .reusable = false}, SHIFT(779), - [1634] = {.count = 1, .reusable = true}, SHIFT(782), - [1636] = {.count = 1, .reusable = false}, SHIFT(784), - [1638] = {.count = 1, .reusable = true}, SHIFT(784), - [1640] = {.count = 1, .reusable = true}, SHIFT(783), - [1642] = {.count = 1, .reusable = true}, SHIFT(785), - [1644] = {.count = 1, .reusable = false}, SHIFT(787), - [1646] = {.count = 1, .reusable = true}, SHIFT(787), - [1648] = {.count = 1, .reusable = true}, SHIFT(786), - [1650] = {.count = 1, .reusable = true}, SHIFT(788), - [1652] = {.count = 1, .reusable = true}, SHIFT(789), - [1654] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1656] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1658] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(125), - [1661] = {.count = 1, .reusable = true}, SHIFT(790), - [1663] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), - [1665] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), - [1667] = {.count = 1, .reusable = true}, SHIFT(791), - [1669] = {.count = 1, .reusable = true}, SHIFT(792), - [1671] = {.count = 1, .reusable = false}, SHIFT(794), - [1673] = {.count = 1, .reusable = true}, SHIFT(794), - [1675] = {.count = 1, .reusable = true}, SHIFT(793), - [1677] = {.count = 1, .reusable = true}, SHIFT(795), - [1679] = {.count = 1, .reusable = true}, SHIFT(796), - [1681] = {.count = 1, .reusable = false}, SHIFT(797), - [1683] = {.count = 1, .reusable = false}, SHIFT(796), - [1685] = {.count = 1, .reusable = true}, SHIFT(799), - [1687] = {.count = 1, .reusable = false}, SHIFT(801), - [1689] = {.count = 1, .reusable = true}, SHIFT(801), - [1691] = {.count = 1, .reusable = true}, SHIFT(800), - [1693] = {.count = 1, .reusable = true}, SHIFT(802), - [1695] = {.count = 1, .reusable = false}, SHIFT(804), - [1697] = {.count = 1, .reusable = true}, SHIFT(804), - [1699] = {.count = 1, .reusable = true}, SHIFT(803), - [1701] = {.count = 1, .reusable = true}, SHIFT(805), - [1703] = {.count = 1, .reusable = true}, REDUCE(sym_string, 3), - [1705] = {.count = 1, .reusable = false}, REDUCE(sym_string, 3), - [1707] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(128), - [1710] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(129), - [1713] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(130), - [1716] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(131), - [1719] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(132), - [1722] = {.count = 1, .reusable = true}, SHIFT(806), - [1724] = {.count = 1, .reusable = true}, SHIFT(807), - [1726] = {.count = 1, .reusable = true}, SHIFT(809), - [1728] = {.count = 1, .reusable = false}, SHIFT(810), - [1730] = {.count = 1, .reusable = true}, SHIFT(811), - [1732] = {.count = 1, .reusable = false}, SHIFT(812), - [1734] = {.count = 1, .reusable = true}, SHIFT(813), - [1736] = {.count = 1, .reusable = true}, SHIFT(814), - [1738] = {.count = 1, .reusable = true}, SHIFT(815), - [1740] = {.count = 1, .reusable = true}, SHIFT(816), - [1742] = {.count = 1, .reusable = true}, SHIFT(817), - [1744] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), - [1746] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), - [1748] = {.count = 1, .reusable = true}, SHIFT(819), - [1750] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), - [1752] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), - [1754] = {.count = 1, .reusable = false}, SHIFT(821), - [1756] = {.count = 1, .reusable = true}, SHIFT(823), - [1758] = {.count = 1, .reusable = true}, SHIFT(824), - [1760] = {.count = 1, .reusable = false}, SHIFT(825), - [1762] = {.count = 1, .reusable = false}, SHIFT(823), - [1764] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1), - [1766] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1), - [1768] = {.count = 1, .reusable = true}, SHIFT(826), - [1770] = {.count = 1, .reusable = true}, SHIFT(827), - [1772] = {.count = 1, .reusable = true}, SHIFT(828), - [1774] = {.count = 1, .reusable = false}, SHIFT(829), - [1776] = {.count = 1, .reusable = false}, SHIFT(827), - [1778] = {.count = 1, .reusable = true}, SHIFT(831), - [1780] = {.count = 1, .reusable = true}, SHIFT(838), - [1782] = {.count = 1, .reusable = false}, SHIFT(839), - [1784] = {.count = 1, .reusable = true}, SHIFT(839), - [1786] = {.count = 1, .reusable = true}, SHIFT(840), - [1788] = {.count = 1, .reusable = true}, SHIFT(841), - [1790] = {.count = 1, .reusable = false}, SHIFT(843), - [1792] = {.count = 1, .reusable = true}, SHIFT(843), - [1794] = {.count = 1, .reusable = true}, SHIFT(842), - [1796] = {.count = 1, .reusable = true}, SHIFT(844), - [1798] = {.count = 1, .reusable = false}, SHIFT(846), - [1800] = {.count = 1, .reusable = true}, SHIFT(846), - [1802] = {.count = 1, .reusable = true}, SHIFT(845), - [1804] = {.count = 1, .reusable = false}, SHIFT(848), - [1806] = {.count = 1, .reusable = true}, SHIFT(848), - [1808] = {.count = 1, .reusable = true}, SHIFT(847), - [1810] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), - [1812] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), - [1814] = {.count = 1, .reusable = true}, SHIFT(849), - [1816] = {.count = 1, .reusable = true}, SHIFT(850), - [1818] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3), - [1820] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3), - [1822] = {.count = 1, .reusable = true}, SHIFT(851), - [1824] = {.count = 1, .reusable = true}, SHIFT(852), - [1826] = {.count = 1, .reusable = true}, SHIFT(853), - [1828] = {.count = 1, .reusable = false}, SHIFT(854), - [1830] = {.count = 1, .reusable = false}, SHIFT(855), - [1832] = {.count = 1, .reusable = true}, SHIFT(855), - [1834] = {.count = 1, .reusable = true}, SHIFT(856), - [1836] = {.count = 1, .reusable = true}, SHIFT(858), - [1838] = {.count = 1, .reusable = false}, SHIFT(859), - [1840] = {.count = 1, .reusable = false}, SHIFT(860), - [1842] = {.count = 1, .reusable = true}, SHIFT(860), - [1844] = {.count = 1, .reusable = false}, SHIFT(861), - [1846] = {.count = 1, .reusable = false}, SHIFT(862), - [1848] = {.count = 1, .reusable = true}, SHIFT(862), - [1850] = {.count = 1, .reusable = true}, SHIFT(863), - [1852] = {.count = 1, .reusable = true}, SHIFT(864), - [1854] = {.count = 1, .reusable = false}, SHIFT(866), - [1856] = {.count = 1, .reusable = false}, SHIFT(867), + [1261] = {.count = 1, .reusable = false}, SHIFT(651), + [1263] = {.count = 1, .reusable = false}, SHIFT(652), + [1265] = {.count = 1, .reusable = true}, SHIFT(653), + [1267] = {.count = 1, .reusable = true}, SHIFT(654), + [1269] = {.count = 1, .reusable = true}, SHIFT(655), + [1271] = {.count = 1, .reusable = true}, SHIFT(656), + [1273] = {.count = 1, .reusable = false}, SHIFT(647), + [1275] = {.count = 1, .reusable = false}, SHIFT(660), + [1277] = {.count = 1, .reusable = true}, SHIFT(660), + [1279] = {.count = 1, .reusable = true}, SHIFT(662), + [1281] = {.count = 1, .reusable = true}, SHIFT(663), + [1283] = {.count = 1, .reusable = true}, SHIFT(664), + [1285] = {.count = 1, .reusable = true}, SHIFT(665), + [1287] = {.count = 1, .reusable = true}, SHIFT(668), + [1289] = {.count = 1, .reusable = true}, SHIFT(669), + [1291] = {.count = 1, .reusable = true}, SHIFT(670), + [1293] = {.count = 1, .reusable = false}, SHIFT(669), + [1295] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2), + [1297] = {.count = 1, .reusable = true}, SHIFT(671), + [1299] = {.count = 1, .reusable = false}, SHIFT(673), + [1301] = {.count = 1, .reusable = true}, SHIFT(674), + [1303] = {.count = 1, .reusable = true}, SHIFT(675), + [1305] = {.count = 1, .reusable = false}, SHIFT(677), + [1307] = {.count = 1, .reusable = true}, SHIFT(677), + [1309] = {.count = 1, .reusable = true}, SHIFT(676), + [1311] = {.count = 1, .reusable = true}, SHIFT(678), + [1313] = {.count = 1, .reusable = true}, SHIFT(679), + [1315] = {.count = 1, .reusable = false}, SHIFT(680), + [1317] = {.count = 1, .reusable = false}, SHIFT(679), + [1319] = {.count = 1, .reusable = true}, SHIFT(682), + [1321] = {.count = 1, .reusable = false}, SHIFT(684), + [1323] = {.count = 1, .reusable = true}, SHIFT(684), + [1325] = {.count = 1, .reusable = true}, SHIFT(683), + [1327] = {.count = 1, .reusable = true}, SHIFT(685), + [1329] = {.count = 1, .reusable = false}, SHIFT(687), + [1331] = {.count = 1, .reusable = true}, SHIFT(687), + [1333] = {.count = 1, .reusable = true}, SHIFT(686), + [1335] = {.count = 1, .reusable = true}, SHIFT(688), + [1337] = {.count = 1, .reusable = true}, SHIFT(689), + [1339] = {.count = 1, .reusable = true}, SHIFT(691), + [1341] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 3), + [1343] = {.count = 1, .reusable = false}, SHIFT(692), + [1345] = {.count = 1, .reusable = false}, SHIFT(693), + [1347] = {.count = 1, .reusable = false}, SHIFT(694), + [1349] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 3), + [1351] = {.count = 1, .reusable = false}, SHIFT(72), + [1353] = {.count = 1, .reusable = false}, SHIFT(74), + [1355] = {.count = 1, .reusable = false}, SHIFT(75), + [1357] = {.count = 1, .reusable = false}, SHIFT(78), + [1359] = {.count = 1, .reusable = false}, SHIFT(79), + [1361] = {.count = 1, .reusable = false}, SHIFT(80), + [1363] = {.count = 1, .reusable = false}, SHIFT(81), + [1365] = {.count = 1, .reusable = false}, SHIFT(696), + [1367] = {.count = 1, .reusable = true}, SHIFT(697), + [1369] = {.count = 1, .reusable = true}, SHIFT(698), + [1371] = {.count = 1, .reusable = false}, SHIFT(700), + [1373] = {.count = 1, .reusable = true}, SHIFT(701), + [1375] = {.count = 1, .reusable = true}, SHIFT(702), + [1377] = {.count = 1, .reusable = false}, SHIFT(704), + [1379] = {.count = 1, .reusable = true}, SHIFT(704), + [1381] = {.count = 1, .reusable = true}, SHIFT(703), + [1383] = {.count = 1, .reusable = true}, SHIFT(705), + [1385] = {.count = 1, .reusable = true}, SHIFT(706), + [1387] = {.count = 1, .reusable = false}, SHIFT(707), + [1389] = {.count = 1, .reusable = false}, SHIFT(706), + [1391] = {.count = 1, .reusable = true}, SHIFT(709), + [1393] = {.count = 1, .reusable = false}, SHIFT(711), + [1395] = {.count = 1, .reusable = true}, SHIFT(711), + [1397] = {.count = 1, .reusable = true}, SHIFT(710), + [1399] = {.count = 1, .reusable = true}, SHIFT(712), + [1401] = {.count = 1, .reusable = false}, SHIFT(714), + [1403] = {.count = 1, .reusable = true}, SHIFT(714), + [1405] = {.count = 1, .reusable = true}, SHIFT(713), + [1407] = {.count = 1, .reusable = true}, SHIFT(715), + [1409] = {.count = 1, .reusable = true}, SHIFT(716), + [1411] = {.count = 1, .reusable = false}, SHIFT(83), + [1413] = {.count = 1, .reusable = false}, SHIFT(85), + [1415] = {.count = 1, .reusable = false}, SHIFT(86), + [1417] = {.count = 1, .reusable = false}, SHIFT(89), + [1419] = {.count = 1, .reusable = false}, SHIFT(90), + [1421] = {.count = 1, .reusable = false}, SHIFT(91), + [1423] = {.count = 1, .reusable = false}, SHIFT(92), + [1425] = {.count = 1, .reusable = false}, SHIFT(718), + [1427] = {.count = 1, .reusable = true}, SHIFT(719), + [1429] = {.count = 1, .reusable = true}, SHIFT(720), + [1431] = {.count = 1, .reusable = true}, SHIFT(721), + [1433] = {.count = 1, .reusable = true}, SHIFT(722), + [1435] = {.count = 1, .reusable = true}, SHIFT(99), + [1437] = {.count = 1, .reusable = true}, SHIFT(100), + [1439] = {.count = 1, .reusable = true}, SHIFT(101), + [1441] = {.count = 1, .reusable = true}, SHIFT(102), + [1443] = {.count = 1, .reusable = true}, SHIFT(723), + [1445] = {.count = 1, .reusable = false}, SHIFT(725), + [1447] = {.count = 1, .reusable = true}, SHIFT(726), + [1449] = {.count = 1, .reusable = true}, SHIFT(727), + [1451] = {.count = 1, .reusable = false}, SHIFT(729), + [1453] = {.count = 1, .reusable = true}, SHIFT(729), + [1455] = {.count = 1, .reusable = true}, SHIFT(728), + [1457] = {.count = 1, .reusable = true}, SHIFT(730), + [1459] = {.count = 1, .reusable = true}, SHIFT(731), + [1461] = {.count = 1, .reusable = false}, SHIFT(732), + [1463] = {.count = 1, .reusable = false}, SHIFT(731), + [1465] = {.count = 1, .reusable = true}, SHIFT(734), + [1467] = {.count = 1, .reusable = false}, SHIFT(736), + [1469] = {.count = 1, .reusable = true}, SHIFT(736), + [1471] = {.count = 1, .reusable = true}, SHIFT(735), + [1473] = {.count = 1, .reusable = true}, SHIFT(737), + [1475] = {.count = 1, .reusable = false}, SHIFT(739), + [1477] = {.count = 1, .reusable = true}, SHIFT(739), + [1479] = {.count = 1, .reusable = true}, SHIFT(738), + [1481] = {.count = 1, .reusable = true}, SHIFT(740), + [1483] = {.count = 1, .reusable = true}, SHIFT(741), + [1485] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(94), + [1488] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1490] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(95), + [1493] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(96), + [1496] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(97), + [1499] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(98), + [1502] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(99), + [1505] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(100), + [1508] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(101), + [1511] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(102), + [1514] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(103), + [1517] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1519] = {.count = 1, .reusable = true}, SHIFT(742), + [1521] = {.count = 1, .reusable = true}, SHIFT(110), + [1523] = {.count = 1, .reusable = true}, SHIFT(111), + [1525] = {.count = 1, .reusable = true}, SHIFT(112), + [1527] = {.count = 1, .reusable = true}, SHIFT(113), + [1529] = {.count = 1, .reusable = false}, SHIFT(744), + [1531] = {.count = 1, .reusable = true}, SHIFT(745), + [1533] = {.count = 1, .reusable = true}, SHIFT(746), + [1535] = {.count = 1, .reusable = false}, SHIFT(748), + [1537] = {.count = 1, .reusable = true}, SHIFT(748), + [1539] = {.count = 1, .reusable = true}, SHIFT(747), + [1541] = {.count = 1, .reusable = true}, SHIFT(749), + [1543] = {.count = 1, .reusable = true}, SHIFT(750), + [1545] = {.count = 1, .reusable = false}, SHIFT(751), + [1547] = {.count = 1, .reusable = false}, SHIFT(750), + [1549] = {.count = 1, .reusable = true}, SHIFT(753), + [1551] = {.count = 1, .reusable = false}, SHIFT(755), + [1553] = {.count = 1, .reusable = true}, SHIFT(755), + [1555] = {.count = 1, .reusable = true}, SHIFT(754), + [1557] = {.count = 1, .reusable = true}, SHIFT(756), + [1559] = {.count = 1, .reusable = false}, SHIFT(758), + [1561] = {.count = 1, .reusable = true}, SHIFT(758), + [1563] = {.count = 1, .reusable = true}, SHIFT(757), + [1565] = {.count = 1, .reusable = true}, SHIFT(759), + [1567] = {.count = 1, .reusable = true}, SHIFT(760), + [1569] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), + [1571] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(106), + [1574] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(107), + [1577] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(108), + [1580] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(109), + [1583] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(110), + [1586] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(111), + [1589] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(112), + [1592] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(113), + [1595] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(114), + [1598] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), + [1600] = {.count = 1, .reusable = true}, SHIFT(761), + [1602] = {.count = 1, .reusable = false}, SHIFT(763), + [1604] = {.count = 1, .reusable = true}, SHIFT(764), + [1606] = {.count = 1, .reusable = true}, SHIFT(765), + [1608] = {.count = 1, .reusable = false}, SHIFT(767), + [1610] = {.count = 1, .reusable = true}, SHIFT(767), + [1612] = {.count = 1, .reusable = true}, SHIFT(766), + [1614] = {.count = 1, .reusable = true}, SHIFT(768), + [1616] = {.count = 1, .reusable = true}, SHIFT(769), + [1618] = {.count = 1, .reusable = false}, SHIFT(770), + [1620] = {.count = 1, .reusable = false}, SHIFT(769), + [1622] = {.count = 1, .reusable = true}, SHIFT(772), + [1624] = {.count = 1, .reusable = false}, SHIFT(774), + [1626] = {.count = 1, .reusable = true}, SHIFT(774), + [1628] = {.count = 1, .reusable = true}, SHIFT(773), + [1630] = {.count = 1, .reusable = true}, SHIFT(775), + [1632] = {.count = 1, .reusable = false}, SHIFT(777), + [1634] = {.count = 1, .reusable = true}, SHIFT(777), + [1636] = {.count = 1, .reusable = true}, SHIFT(776), + [1638] = {.count = 1, .reusable = true}, SHIFT(778), + [1640] = {.count = 1, .reusable = true}, SHIFT(779), + [1642] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1644] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1646] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(125), + [1649] = {.count = 1, .reusable = true}, SHIFT(780), + [1651] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), + [1653] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), + [1655] = {.count = 1, .reusable = true}, SHIFT(781), + [1657] = {.count = 1, .reusable = true}, SHIFT(782), + [1659] = {.count = 1, .reusable = false}, SHIFT(784), + [1661] = {.count = 1, .reusable = true}, SHIFT(784), + [1663] = {.count = 1, .reusable = true}, SHIFT(783), + [1665] = {.count = 1, .reusable = true}, SHIFT(785), + [1667] = {.count = 1, .reusable = true}, SHIFT(786), + [1669] = {.count = 1, .reusable = false}, SHIFT(787), + [1671] = {.count = 1, .reusable = false}, SHIFT(786), + [1673] = {.count = 1, .reusable = true}, SHIFT(789), + [1675] = {.count = 1, .reusable = false}, SHIFT(791), + [1677] = {.count = 1, .reusable = true}, SHIFT(791), + [1679] = {.count = 1, .reusable = true}, SHIFT(790), + [1681] = {.count = 1, .reusable = true}, SHIFT(792), + [1683] = {.count = 1, .reusable = false}, SHIFT(794), + [1685] = {.count = 1, .reusable = true}, SHIFT(794), + [1687] = {.count = 1, .reusable = true}, SHIFT(793), + [1689] = {.count = 1, .reusable = true}, SHIFT(795), + [1691] = {.count = 1, .reusable = true}, REDUCE(sym_string, 3), + [1693] = {.count = 1, .reusable = false}, REDUCE(sym_string, 3), + [1695] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(128), + [1698] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(129), + [1701] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(130), + [1704] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(131), + [1707] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(132), + [1710] = {.count = 1, .reusable = true}, SHIFT(796), + [1712] = {.count = 1, .reusable = true}, SHIFT(797), + [1714] = {.count = 1, .reusable = true}, SHIFT(799), + [1716] = {.count = 1, .reusable = false}, SHIFT(800), + [1718] = {.count = 1, .reusable = true}, SHIFT(801), + [1720] = {.count = 1, .reusable = false}, SHIFT(802), + [1722] = {.count = 1, .reusable = true}, SHIFT(803), + [1724] = {.count = 1, .reusable = true}, SHIFT(804), + [1726] = {.count = 1, .reusable = true}, SHIFT(805), + [1728] = {.count = 1, .reusable = true}, SHIFT(806), + [1730] = {.count = 1, .reusable = true}, SHIFT(807), + [1732] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1734] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1736] = {.count = 1, .reusable = true}, SHIFT(809), + [1738] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1740] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1742] = {.count = 1, .reusable = false}, SHIFT(811), + [1744] = {.count = 1, .reusable = true}, SHIFT(813), + [1746] = {.count = 1, .reusable = true}, SHIFT(814), + [1748] = {.count = 1, .reusable = false}, SHIFT(815), + [1750] = {.count = 1, .reusable = false}, SHIFT(813), + [1752] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1), + [1754] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1), + [1756] = {.count = 1, .reusable = true}, SHIFT(816), + [1758] = {.count = 1, .reusable = true}, SHIFT(817), + [1760] = {.count = 1, .reusable = true}, SHIFT(818), + [1762] = {.count = 1, .reusable = false}, SHIFT(819), + [1764] = {.count = 1, .reusable = false}, SHIFT(817), + [1766] = {.count = 1, .reusable = true}, SHIFT(821), + [1768] = {.count = 1, .reusable = true}, SHIFT(828), + [1770] = {.count = 1, .reusable = false}, SHIFT(829), + [1772] = {.count = 1, .reusable = true}, SHIFT(829), + [1774] = {.count = 1, .reusable = true}, SHIFT(830), + [1776] = {.count = 1, .reusable = true}, SHIFT(831), + [1778] = {.count = 1, .reusable = false}, SHIFT(833), + [1780] = {.count = 1, .reusable = true}, SHIFT(833), + [1782] = {.count = 1, .reusable = true}, SHIFT(832), + [1784] = {.count = 1, .reusable = true}, SHIFT(834), + [1786] = {.count = 1, .reusable = false}, SHIFT(836), + [1788] = {.count = 1, .reusable = true}, SHIFT(836), + [1790] = {.count = 1, .reusable = true}, SHIFT(835), + [1792] = {.count = 1, .reusable = false}, SHIFT(838), + [1794] = {.count = 1, .reusable = true}, SHIFT(838), + [1796] = {.count = 1, .reusable = true}, SHIFT(837), + [1798] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), + [1800] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), + [1802] = {.count = 1, .reusable = true}, SHIFT(839), + [1804] = {.count = 1, .reusable = true}, SHIFT(840), + [1806] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3), + [1808] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3), + [1810] = {.count = 1, .reusable = true}, SHIFT(841), + [1812] = {.count = 1, .reusable = true}, SHIFT(842), + [1814] = {.count = 1, .reusable = true}, SHIFT(843), + [1816] = {.count = 1, .reusable = false}, SHIFT(844), + [1818] = {.count = 1, .reusable = false}, SHIFT(845), + [1820] = {.count = 1, .reusable = true}, SHIFT(845), + [1822] = {.count = 1, .reusable = true}, SHIFT(846), + [1824] = {.count = 1, .reusable = true}, SHIFT(848), + [1826] = {.count = 1, .reusable = false}, SHIFT(849), + [1828] = {.count = 1, .reusable = false}, SHIFT(850), + [1830] = {.count = 1, .reusable = true}, SHIFT(850), + [1832] = {.count = 1, .reusable = false}, SHIFT(851), + [1834] = {.count = 1, .reusable = false}, SHIFT(852), + [1836] = {.count = 1, .reusable = true}, SHIFT(852), + [1838] = {.count = 1, .reusable = true}, SHIFT(853), + [1840] = {.count = 1, .reusable = true}, SHIFT(854), + [1842] = {.count = 1, .reusable = false}, SHIFT(856), + [1844] = {.count = 1, .reusable = false}, SHIFT(857), + [1846] = {.count = 1, .reusable = true}, SHIFT(857), + [1848] = {.count = 1, .reusable = true}, SHIFT(860), + [1850] = {.count = 1, .reusable = true}, SHIFT(861), + [1852] = {.count = 1, .reusable = true}, SHIFT(862), + [1854] = {.count = 1, .reusable = false}, SHIFT(864), + [1856] = {.count = 1, .reusable = true}, SHIFT(866), [1858] = {.count = 1, .reusable = true}, SHIFT(867), - [1860] = {.count = 1, .reusable = true}, SHIFT(870), - [1862] = {.count = 1, .reusable = true}, SHIFT(871), - [1864] = {.count = 1, .reusable = true}, SHIFT(872), - [1866] = {.count = 1, .reusable = false}, SHIFT(874), - [1868] = {.count = 1, .reusable = true}, SHIFT(876), - [1870] = {.count = 1, .reusable = true}, SHIFT(877), - [1872] = {.count = 1, .reusable = false}, SHIFT(878), - [1874] = {.count = 1, .reusable = false}, SHIFT(876), - [1876] = {.count = 1, .reusable = true}, SHIFT(879), - [1878] = {.count = 1, .reusable = true}, SHIFT(880), - [1880] = {.count = 1, .reusable = true}, SHIFT(881), - [1882] = {.count = 1, .reusable = false}, SHIFT(882), - [1884] = {.count = 1, .reusable = false}, SHIFT(880), - [1886] = {.count = 1, .reusable = true}, SHIFT(891), - [1888] = {.count = 1, .reusable = false}, SHIFT(893), - [1890] = {.count = 1, .reusable = true}, SHIFT(895), - [1892] = {.count = 1, .reusable = true}, SHIFT(896), - [1894] = {.count = 1, .reusable = false}, SHIFT(897), - [1896] = {.count = 1, .reusable = false}, SHIFT(895), - [1898] = {.count = 1, .reusable = true}, SHIFT(898), - [1900] = {.count = 1, .reusable = true}, SHIFT(899), - [1902] = {.count = 1, .reusable = true}, SHIFT(900), - [1904] = {.count = 1, .reusable = false}, SHIFT(901), - [1906] = {.count = 1, .reusable = false}, SHIFT(899), - [1908] = {.count = 1, .reusable = true}, SHIFT(910), - [1910] = {.count = 1, .reusable = false}, SHIFT(912), - [1912] = {.count = 1, .reusable = true}, SHIFT(913), - [1914] = {.count = 1, .reusable = true}, SHIFT(914), - [1916] = {.count = 1, .reusable = false}, SHIFT(916), - [1918] = {.count = 1, .reusable = true}, SHIFT(916), - [1920] = {.count = 1, .reusable = true}, SHIFT(915), - [1922] = {.count = 1, .reusable = true}, SHIFT(917), - [1924] = {.count = 1, .reusable = true}, SHIFT(918), - [1926] = {.count = 1, .reusable = false}, SHIFT(919), - [1928] = {.count = 1, .reusable = false}, SHIFT(918), - [1930] = {.count = 1, .reusable = true}, SHIFT(921), - [1932] = {.count = 1, .reusable = false}, SHIFT(923), - [1934] = {.count = 1, .reusable = true}, SHIFT(923), - [1936] = {.count = 1, .reusable = true}, SHIFT(922), - [1938] = {.count = 1, .reusable = true}, SHIFT(924), - [1940] = {.count = 1, .reusable = false}, SHIFT(926), - [1942] = {.count = 1, .reusable = true}, SHIFT(926), + [1860] = {.count = 1, .reusable = false}, SHIFT(868), + [1862] = {.count = 1, .reusable = false}, SHIFT(866), + [1864] = {.count = 1, .reusable = true}, SHIFT(869), + [1866] = {.count = 1, .reusable = true}, SHIFT(870), + [1868] = {.count = 1, .reusable = true}, SHIFT(871), + [1870] = {.count = 1, .reusable = false}, SHIFT(872), + [1872] = {.count = 1, .reusable = false}, SHIFT(870), + [1874] = {.count = 1, .reusable = true}, SHIFT(881), + [1876] = {.count = 1, .reusable = false}, SHIFT(883), + [1878] = {.count = 1, .reusable = true}, SHIFT(885), + [1880] = {.count = 1, .reusable = true}, SHIFT(886), + [1882] = {.count = 1, .reusable = false}, SHIFT(887), + [1884] = {.count = 1, .reusable = false}, SHIFT(885), + [1886] = {.count = 1, .reusable = true}, SHIFT(888), + [1888] = {.count = 1, .reusable = true}, SHIFT(889), + [1890] = {.count = 1, .reusable = true}, SHIFT(890), + [1892] = {.count = 1, .reusable = false}, SHIFT(891), + [1894] = {.count = 1, .reusable = false}, SHIFT(889), + [1896] = {.count = 1, .reusable = true}, SHIFT(900), + [1898] = {.count = 1, .reusable = false}, SHIFT(902), + [1900] = {.count = 1, .reusable = true}, SHIFT(903), + [1902] = {.count = 1, .reusable = true}, SHIFT(904), + [1904] = {.count = 1, .reusable = false}, SHIFT(906), + [1906] = {.count = 1, .reusable = true}, SHIFT(906), + [1908] = {.count = 1, .reusable = true}, SHIFT(905), + [1910] = {.count = 1, .reusable = true}, SHIFT(907), + [1912] = {.count = 1, .reusable = true}, SHIFT(908), + [1914] = {.count = 1, .reusable = false}, SHIFT(909), + [1916] = {.count = 1, .reusable = false}, SHIFT(908), + [1918] = {.count = 1, .reusable = true}, SHIFT(911), + [1920] = {.count = 1, .reusable = false}, SHIFT(913), + [1922] = {.count = 1, .reusable = true}, SHIFT(913), + [1924] = {.count = 1, .reusable = true}, SHIFT(912), + [1926] = {.count = 1, .reusable = true}, SHIFT(914), + [1928] = {.count = 1, .reusable = false}, SHIFT(916), + [1930] = {.count = 1, .reusable = true}, SHIFT(916), + [1932] = {.count = 1, .reusable = true}, SHIFT(915), + [1934] = {.count = 1, .reusable = true}, SHIFT(917), + [1936] = {.count = 1, .reusable = true}, SHIFT(918), + [1938] = {.count = 1, .reusable = true}, SHIFT(919), + [1940] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 3), + [1942] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 3), [1944] = {.count = 1, .reusable = true}, SHIFT(925), - [1946] = {.count = 1, .reusable = true}, SHIFT(927), - [1948] = {.count = 1, .reusable = true}, SHIFT(928), - [1950] = {.count = 1, .reusable = true}, SHIFT(929), - [1952] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 3), - [1954] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 3), - [1956] = {.count = 1, .reusable = true}, SHIFT(935), - [1958] = {.count = 1, .reusable = true}, SHIFT(934), - [1960] = {.count = 1, .reusable = false}, SHIFT(936), - [1962] = {.count = 1, .reusable = true}, SHIFT(936), - [1964] = {.count = 1, .reusable = false}, SHIFT(937), - [1966] = {.count = 1, .reusable = false}, SHIFT(155), - [1968] = {.count = 1, .reusable = false}, SHIFT(938), - [1970] = {.count = 1, .reusable = false}, SHIFT(158), - [1972] = {.count = 1, .reusable = false}, SHIFT(159), - [1974] = {.count = 1, .reusable = false}, SHIFT(160), - [1976] = {.count = 1, .reusable = false}, SHIFT(161), - [1978] = {.count = 1, .reusable = false}, SHIFT(939), - [1980] = {.count = 1, .reusable = true}, SHIFT(940), - [1982] = {.count = 1, .reusable = true}, SHIFT(941), - [1984] = {.count = 1, .reusable = true}, SHIFT(943), - [1986] = {.count = 1, .reusable = true}, SHIFT(944), - [1988] = {.count = 1, .reusable = true}, SHIFT(945), - [1990] = {.count = 1, .reusable = true}, SHIFT(952), - [1992] = {.count = 1, .reusable = true}, SHIFT(953), - [1994] = {.count = 1, .reusable = true}, SHIFT(955), - [1996] = {.count = 1, .reusable = true}, SHIFT(957), - [1998] = {.count = 1, .reusable = true}, SHIFT(958), - [2000] = {.count = 1, .reusable = true}, SHIFT(964), - [2002] = {.count = 1, .reusable = false}, SHIFT(968), - [2004] = {.count = 1, .reusable = true}, SHIFT(968), - [2006] = {.count = 1, .reusable = false}, SHIFT(969), - [2008] = {.count = 1, .reusable = false}, SHIFT(970), - [2010] = {.count = 1, .reusable = true}, SHIFT(971), - [2012] = {.count = 1, .reusable = true}, SHIFT(972), - [2014] = {.count = 1, .reusable = true}, SHIFT(973), - [2016] = {.count = 1, .reusable = true}, SHIFT(974), - [2018] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 3), - [2020] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 3), - [2022] = {.count = 1, .reusable = false}, REDUCE(sym_pipeline, 3), - [2024] = {.count = 1, .reusable = true}, REDUCE(sym_pipeline, 3), - [2026] = {.count = 1, .reusable = false}, REDUCE(sym_list, 3), - [2028] = {.count = 1, .reusable = true}, REDUCE(sym_list, 3), - [2030] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 2), - [2032] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 2), - [2034] = {.count = 1, .reusable = true}, SHIFT(980), - [2036] = {.count = 1, .reusable = false}, SHIFT(981), - [2038] = {.count = 1, .reusable = false}, SHIFT(980), - [2040] = {.count = 1, .reusable = true}, SHIFT(982), - [2042] = {.count = 1, .reusable = true}, SHIFT(983), - [2044] = {.count = 1, .reusable = true}, SHIFT(984), - [2046] = {.count = 1, .reusable = false}, SHIFT(985), - [2048] = {.count = 1, .reusable = false}, SHIFT(983), - [2050] = {.count = 1, .reusable = true}, SHIFT(988), - [2052] = {.count = 1, .reusable = true}, SHIFT(987), - [2054] = {.count = 1, .reusable = true}, SHIFT(989), - [2056] = {.count = 1, .reusable = true}, SHIFT(990), - [2058] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), - [2060] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), - [2062] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), - [2064] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), - [2066] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_redirect, 2), - [2068] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_redirect, 2), - [2070] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), - [2072] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), - [2074] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2), - [2076] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2), - [2078] = {.count = 1, .reusable = false}, REDUCE(sym_command, 3), - [2080] = {.count = 1, .reusable = true}, REDUCE(sym_command, 3), - [2082] = {.count = 1, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), - [2084] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(193), - [2087] = {.count = 1, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), - [2089] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(195), - [2092] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(196), - [2095] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(197), - [2098] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(194), - [2101] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(198), - [2104] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(17), - [2107] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(18), - [2110] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(199), - [2113] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(20), - [2116] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(21), - [2119] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), - [2122] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(23), - [2125] = {.count = 1, .reusable = true}, SHIFT(995), - [2127] = {.count = 1, .reusable = false}, SHIFT(681), - [2129] = {.count = 1, .reusable = true}, SHIFT(996), - [2131] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), - [2133] = {.count = 1, .reusable = true}, SHIFT(998), - [2135] = {.count = 1, .reusable = true}, SHIFT(999), - [2137] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4), - [2139] = {.count = 1, .reusable = true}, REDUCE(sym_array, 2), - [2141] = {.count = 1, .reusable = false}, REDUCE(sym_array, 2), - [2143] = {.count = 1, .reusable = true}, SHIFT(1000), - [2145] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), - [2147] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), - [2149] = {.count = 1, .reusable = false}, SHIFT(1002), - [2151] = {.count = 1, .reusable = true}, SHIFT(1004), - [2153] = {.count = 1, .reusable = true}, SHIFT(1005), - [2155] = {.count = 1, .reusable = false}, SHIFT(1006), - [2157] = {.count = 1, .reusable = false}, SHIFT(1004), - [2159] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1), - [2161] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1), - [2163] = {.count = 1, .reusable = true}, SHIFT(1007), - [2165] = {.count = 1, .reusable = true}, SHIFT(1008), - [2167] = {.count = 1, .reusable = true}, SHIFT(1009), - [2169] = {.count = 1, .reusable = false}, SHIFT(1010), - [2171] = {.count = 1, .reusable = false}, SHIFT(1008), - [2173] = {.count = 1, .reusable = true}, SHIFT(1018), - [2175] = {.count = 1, .reusable = true}, SHIFT(1020), - [2177] = {.count = 1, .reusable = false}, SHIFT(1022), - [2179] = {.count = 1, .reusable = true}, SHIFT(1023), - [2181] = {.count = 1, .reusable = true}, SHIFT(1024), - [2183] = {.count = 1, .reusable = false}, SHIFT(1026), - [2185] = {.count = 1, .reusable = true}, SHIFT(1026), - [2187] = {.count = 1, .reusable = true}, SHIFT(1025), - [2189] = {.count = 1, .reusable = true}, SHIFT(1027), - [2191] = {.count = 1, .reusable = true}, SHIFT(1028), - [2193] = {.count = 1, .reusable = false}, SHIFT(1029), - [2195] = {.count = 1, .reusable = false}, SHIFT(1028), - [2197] = {.count = 1, .reusable = true}, SHIFT(1031), - [2199] = {.count = 1, .reusable = false}, SHIFT(1033), - [2201] = {.count = 1, .reusable = true}, SHIFT(1033), - [2203] = {.count = 1, .reusable = true}, SHIFT(1032), - [2205] = {.count = 1, .reusable = true}, SHIFT(1034), - [2207] = {.count = 1, .reusable = false}, SHIFT(1036), - [2209] = {.count = 1, .reusable = true}, SHIFT(1036), - [2211] = {.count = 1, .reusable = true}, SHIFT(1035), - [2213] = {.count = 1, .reusable = true}, SHIFT(1037), - [2215] = {.count = 1, .reusable = true}, SHIFT(1038), - [2217] = {.count = 1, .reusable = true}, SHIFT(1039), - [2219] = {.count = 1, .reusable = false}, SHIFT(1041), - [2221] = {.count = 1, .reusable = true}, SHIFT(1043), - [2223] = {.count = 1, .reusable = true}, SHIFT(1044), - [2225] = {.count = 1, .reusable = false}, SHIFT(1045), - [2227] = {.count = 1, .reusable = false}, SHIFT(1043), - [2229] = {.count = 1, .reusable = true}, SHIFT(1046), - [2231] = {.count = 1, .reusable = true}, SHIFT(1047), - [2233] = {.count = 1, .reusable = true}, SHIFT(1048), - [2235] = {.count = 1, .reusable = false}, SHIFT(1049), - [2237] = {.count = 1, .reusable = false}, SHIFT(1047), - [2239] = {.count = 1, .reusable = false}, SHIFT(1057), - [2241] = {.count = 1, .reusable = false}, SHIFT(587), - [2243] = {.count = 1, .reusable = false}, SHIFT(588), - [2245] = {.count = 1, .reusable = false}, SHIFT(590), - [2247] = {.count = 1, .reusable = false}, SHIFT(591), - [2249] = {.count = 1, .reusable = false}, SHIFT(592), - [2251] = {.count = 1, .reusable = false}, SHIFT(593), - [2253] = {.count = 1, .reusable = false}, SHIFT(594), - [2255] = {.count = 1, .reusable = true}, SHIFT(1057), - [2257] = {.count = 1, .reusable = false}, SHIFT(1059), - [2259] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 4, .alias_sequence_id = 5), - [2261] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 4, .alias_sequence_id = 5), - [2263] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 2), - [2265] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 2), - [2267] = {.count = 1, .reusable = false}, SHIFT(1061), - [2269] = {.count = 1, .reusable = true}, SHIFT(1061), - [2271] = {.count = 1, .reusable = false}, SHIFT(1062), - [2273] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 4), - [2275] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 4), - [2277] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 4), - [2279] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 4), - [2281] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 1), - [2283] = {.count = 1, .reusable = false}, SHIFT(1069), - [2285] = {.count = 1, .reusable = true}, SHIFT(1069), - [2287] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 1), - [2289] = {.count = 1, .reusable = true}, SHIFT(1070), - [2291] = {.count = 1, .reusable = false}, SHIFT(1070), - [2293] = {.count = 1, .reusable = true}, SHIFT(605), - [2295] = {.count = 1, .reusable = true}, SHIFT(606), - [2297] = {.count = 1, .reusable = false}, SHIFT(1075), - [2299] = {.count = 1, .reusable = true}, SHIFT(1076), - [2301] = {.count = 1, .reusable = true}, SHIFT(1077), - [2303] = {.count = 1, .reusable = false}, SHIFT(1077), - [2305] = {.count = 1, .reusable = false}, SHIFT(1081), - [2307] = {.count = 1, .reusable = true}, SHIFT(1081), - [2309] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(228), - [2312] = {.count = 1, .reusable = false}, SHIFT(1082), - [2314] = {.count = 1, .reusable = false}, SHIFT(1085), - [2316] = {.count = 1, .reusable = true}, SHIFT(1085), - [2318] = {.count = 1, .reusable = true}, SHIFT(1086), - [2320] = {.count = 1, .reusable = false}, SHIFT(1087), - [2322] = {.count = 1, .reusable = true}, SHIFT(1088), - [2324] = {.count = 1, .reusable = true}, SHIFT(1090), - [2326] = {.count = 1, .reusable = true}, SHIFT(1091), - [2328] = {.count = 1, .reusable = true}, SHIFT(1092), - [2330] = {.count = 1, .reusable = true}, SHIFT(1093), - [2332] = {.count = 1, .reusable = false}, SHIFT(1095), - [2334] = {.count = 1, .reusable = true}, SHIFT(1095), - [2336] = {.count = 1, .reusable = true}, SHIFT(1094), - [2338] = {.count = 1, .reusable = true}, SHIFT(1096), - [2340] = {.count = 1, .reusable = false}, SHIFT(1098), - [2342] = {.count = 1, .reusable = true}, SHIFT(1098), - [2344] = {.count = 1, .reusable = true}, SHIFT(1097), - [2346] = {.count = 1, .reusable = false}, SHIFT(1100), - [2348] = {.count = 1, .reusable = true}, SHIFT(1100), - [2350] = {.count = 1, .reusable = true}, SHIFT(1099), - [2352] = {.count = 1, .reusable = true}, SHIFT(1101), - [2354] = {.count = 1, .reusable = true}, SHIFT(1102), - [2356] = {.count = 1, .reusable = true}, SHIFT(1103), - [2358] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), - [2360] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), - [2362] = {.count = 1, .reusable = false}, SHIFT(1105), - [2364] = {.count = 1, .reusable = true}, SHIFT(1105), - [2366] = {.count = 1, .reusable = true}, SHIFT(1106), - [2368] = {.count = 1, .reusable = false}, SHIFT(1108), - [2370] = {.count = 1, .reusable = true}, SHIFT(1108), - [2372] = {.count = 1, .reusable = true}, SHIFT(1109), - [2374] = {.count = 1, .reusable = true}, SHIFT(1110), - [2376] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 4), - [2378] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 4), - [2380] = {.count = 1, .reusable = true}, SHIFT(1114), - [2382] = {.count = 1, .reusable = true}, SHIFT(1115), - [2384] = {.count = 1, .reusable = false}, SHIFT(1116), - [2386] = {.count = 1, .reusable = true}, SHIFT(1117), - [2388] = {.count = 1, .reusable = false}, SHIFT(1118), - [2390] = {.count = 1, .reusable = false}, SHIFT(1119), - [2392] = {.count = 1, .reusable = true}, SHIFT(1121), - [2394] = {.count = 1, .reusable = true}, SHIFT(1122), - [2396] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(258), - [2399] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(259), - [2402] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(260), - [2405] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(263), - [2408] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(264), - [2411] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 4), - [2413] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 4), - [2415] = {.count = 1, .reusable = true}, SHIFT(1126), - [2417] = {.count = 1, .reusable = true}, SHIFT(1127), - [2419] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(272), - [2422] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(274), - [2425] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(275), - [2428] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(273), - [2431] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(276), - [2434] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(277), - [2437] = {.count = 1, .reusable = true}, SHIFT(1129), - [2439] = {.count = 1, .reusable = true}, SHIFT(1131), - [2441] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), - [2443] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), - [2445] = {.count = 1, .reusable = false}, SHIFT(286), - [2447] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(290), - [2450] = {.count = 1, .reusable = true}, SHIFT(1134), - [2452] = {.count = 1, .reusable = false}, SHIFT(1135), - [2454] = {.count = 1, .reusable = true}, SHIFT(1136), - [2456] = {.count = 1, .reusable = true}, SHIFT(1138), - [2458] = {.count = 1, .reusable = true}, SHIFT(1139), - [2460] = {.count = 1, .reusable = true}, SHIFT(1140), - [2462] = {.count = 1, .reusable = true}, SHIFT(1141), - [2464] = {.count = 1, .reusable = false}, SHIFT(1143), - [2466] = {.count = 1, .reusable = true}, SHIFT(1143), - [2468] = {.count = 1, .reusable = true}, SHIFT(1142), - [2470] = {.count = 1, .reusable = true}, SHIFT(1144), - [2472] = {.count = 1, .reusable = false}, SHIFT(1146), - [2474] = {.count = 1, .reusable = true}, SHIFT(1146), - [2476] = {.count = 1, .reusable = true}, SHIFT(1145), - [2478] = {.count = 1, .reusable = false}, SHIFT(1148), - [2480] = {.count = 1, .reusable = true}, SHIFT(1148), - [2482] = {.count = 1, .reusable = true}, SHIFT(1147), - [2484] = {.count = 1, .reusable = true}, SHIFT(1149), - [2486] = {.count = 1, .reusable = true}, SHIFT(1150), - [2488] = {.count = 1, .reusable = true}, SHIFT(1151), - [2490] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3), - [2492] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3), - [2494] = {.count = 1, .reusable = false}, SHIFT(1152), - [2496] = {.count = 1, .reusable = true}, SHIFT(1152), - [2498] = {.count = 1, .reusable = true}, SHIFT(1153), - [2500] = {.count = 1, .reusable = true}, SHIFT(1154), - [2502] = {.count = 1, .reusable = false}, SHIFT(1155), - [2504] = {.count = 1, .reusable = true}, SHIFT(1156), - [2506] = {.count = 1, .reusable = true}, SHIFT(1157), - [2508] = {.count = 1, .reusable = true}, SHIFT(1158), - [2510] = {.count = 1, .reusable = true}, SHIFT(1159), - [2512] = {.count = 1, .reusable = true}, SHIFT(1160), - [2514] = {.count = 1, .reusable = true}, SHIFT(1162), - [2516] = {.count = 1, .reusable = true}, SHIFT(1163), - [2518] = {.count = 1, .reusable = true}, SHIFT(1164), - [2520] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 4), - [2522] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 4), - [2524] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(313), - [2527] = {.count = 1, .reusable = true}, SHIFT(1167), - [2529] = {.count = 1, .reusable = false}, SHIFT(1168), - [2531] = {.count = 1, .reusable = true}, SHIFT(1169), - [2533] = {.count = 1, .reusable = true}, SHIFT(1171), - [2535] = {.count = 1, .reusable = true}, SHIFT(1172), - [2537] = {.count = 1, .reusable = true}, SHIFT(1173), - [2539] = {.count = 1, .reusable = true}, SHIFT(1174), - [2541] = {.count = 1, .reusable = false}, SHIFT(1176), - [2543] = {.count = 1, .reusable = true}, SHIFT(1176), - [2545] = {.count = 1, .reusable = true}, SHIFT(1175), - [2547] = {.count = 1, .reusable = true}, SHIFT(1177), - [2549] = {.count = 1, .reusable = false}, SHIFT(1179), - [2551] = {.count = 1, .reusable = true}, SHIFT(1179), - [2553] = {.count = 1, .reusable = true}, SHIFT(1178), - [2555] = {.count = 1, .reusable = false}, SHIFT(1181), - [2557] = {.count = 1, .reusable = true}, SHIFT(1181), - [2559] = {.count = 1, .reusable = true}, SHIFT(1180), - [2561] = {.count = 1, .reusable = true}, SHIFT(1182), - [2563] = {.count = 1, .reusable = true}, SHIFT(1183), - [2565] = {.count = 1, .reusable = true}, SHIFT(1184), - [2567] = {.count = 1, .reusable = true}, SHIFT(1185), - [2569] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(334), - [2572] = {.count = 1, .reusable = true}, SHIFT(1187), - [2574] = {.count = 1, .reusable = false}, SHIFT(1188), - [2576] = {.count = 1, .reusable = true}, SHIFT(1189), - [2578] = {.count = 1, .reusable = true}, SHIFT(1191), - [2580] = {.count = 1, .reusable = true}, SHIFT(1192), - [2582] = {.count = 1, .reusable = true}, SHIFT(1193), - [2584] = {.count = 1, .reusable = true}, SHIFT(1194), - [2586] = {.count = 1, .reusable = false}, SHIFT(1196), - [2588] = {.count = 1, .reusable = true}, SHIFT(1196), - [2590] = {.count = 1, .reusable = true}, SHIFT(1195), - [2592] = {.count = 1, .reusable = true}, SHIFT(1197), - [2594] = {.count = 1, .reusable = false}, SHIFT(1199), - [2596] = {.count = 1, .reusable = true}, SHIFT(1199), - [2598] = {.count = 1, .reusable = true}, SHIFT(1198), - [2600] = {.count = 1, .reusable = false}, SHIFT(1201), - [2602] = {.count = 1, .reusable = true}, SHIFT(1201), - [2604] = {.count = 1, .reusable = true}, SHIFT(1200), - [2606] = {.count = 1, .reusable = true}, SHIFT(1202), - [2608] = {.count = 1, .reusable = true}, SHIFT(1203), - [2610] = {.count = 1, .reusable = true}, SHIFT(1204), - [2612] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(353), - [2615] = {.count = 1, .reusable = true}, SHIFT(1205), - [2617] = {.count = 1, .reusable = false}, SHIFT(1206), - [2619] = {.count = 1, .reusable = true}, SHIFT(1207), - [2621] = {.count = 1, .reusable = true}, SHIFT(1209), - [2623] = {.count = 1, .reusable = true}, SHIFT(1210), - [2625] = {.count = 1, .reusable = true}, SHIFT(1211), - [2627] = {.count = 1, .reusable = true}, SHIFT(1212), - [2629] = {.count = 1, .reusable = false}, SHIFT(1214), - [2631] = {.count = 1, .reusable = true}, SHIFT(1214), - [2633] = {.count = 1, .reusable = true}, SHIFT(1213), - [2635] = {.count = 1, .reusable = true}, SHIFT(1215), - [2637] = {.count = 1, .reusable = false}, SHIFT(1217), - [2639] = {.count = 1, .reusable = true}, SHIFT(1217), - [2641] = {.count = 1, .reusable = true}, SHIFT(1216), - [2643] = {.count = 1, .reusable = false}, SHIFT(1219), - [2645] = {.count = 1, .reusable = true}, SHIFT(1219), - [2647] = {.count = 1, .reusable = true}, SHIFT(1218), - [2649] = {.count = 1, .reusable = true}, SHIFT(1220), - [2651] = {.count = 1, .reusable = true}, SHIFT(1221), - [2653] = {.count = 1, .reusable = true}, SHIFT(1222), - [2655] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(372), - [2658] = {.count = 1, .reusable = true}, SHIFT(1223), - [2660] = {.count = 1, .reusable = false}, SHIFT(1224), - [2662] = {.count = 1, .reusable = true}, SHIFT(1225), - [2664] = {.count = 1, .reusable = true}, SHIFT(1227), - [2666] = {.count = 1, .reusable = true}, SHIFT(1228), - [2668] = {.count = 1, .reusable = true}, SHIFT(1229), - [2670] = {.count = 1, .reusable = true}, SHIFT(1230), - [2672] = {.count = 1, .reusable = false}, SHIFT(1232), - [2674] = {.count = 1, .reusable = true}, SHIFT(1232), - [2676] = {.count = 1, .reusable = true}, SHIFT(1231), - [2678] = {.count = 1, .reusable = true}, SHIFT(1233), - [2680] = {.count = 1, .reusable = false}, SHIFT(1235), - [2682] = {.count = 1, .reusable = true}, SHIFT(1235), - [2684] = {.count = 1, .reusable = true}, SHIFT(1234), - [2686] = {.count = 1, .reusable = false}, SHIFT(1237), - [2688] = {.count = 1, .reusable = true}, SHIFT(1237), - [2690] = {.count = 1, .reusable = true}, SHIFT(1236), - [2692] = {.count = 1, .reusable = true}, SHIFT(1238), - [2694] = {.count = 1, .reusable = true}, SHIFT(1239), - [2696] = {.count = 1, .reusable = true}, SHIFT(1240), - [2698] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 3), - [2700] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 3), - [2702] = {.count = 1, .reusable = true}, SHIFT(1241), - [2704] = {.count = 1, .reusable = false}, SHIFT(1242), - [2706] = {.count = 1, .reusable = true}, SHIFT(1243), - [2708] = {.count = 1, .reusable = true}, SHIFT(1245), - [2710] = {.count = 1, .reusable = true}, SHIFT(1246), - [2712] = {.count = 1, .reusable = true}, SHIFT(1247), - [2714] = {.count = 1, .reusable = true}, SHIFT(1248), - [2716] = {.count = 1, .reusable = false}, SHIFT(1250), - [2718] = {.count = 1, .reusable = true}, SHIFT(1250), - [2720] = {.count = 1, .reusable = true}, SHIFT(1249), - [2722] = {.count = 1, .reusable = true}, SHIFT(1251), - [2724] = {.count = 1, .reusable = false}, SHIFT(1253), - [2726] = {.count = 1, .reusable = true}, SHIFT(1253), - [2728] = {.count = 1, .reusable = true}, SHIFT(1252), - [2730] = {.count = 1, .reusable = false}, SHIFT(1255), - [2732] = {.count = 1, .reusable = true}, SHIFT(1255), - [2734] = {.count = 1, .reusable = true}, SHIFT(1254), - [2736] = {.count = 1, .reusable = true}, SHIFT(1256), - [2738] = {.count = 1, .reusable = true}, SHIFT(1257), - [2740] = {.count = 1, .reusable = true}, SHIFT(1258), - [2742] = {.count = 1, .reusable = true}, SHIFT(1259), - [2744] = {.count = 1, .reusable = true}, SHIFT(1260), - [2746] = {.count = 1, .reusable = true}, SHIFT(1261), - [2748] = {.count = 1, .reusable = true}, SHIFT(1262), - [2750] = {.count = 1, .reusable = true}, SHIFT(1263), - [2752] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4), - [2754] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4), - [2756] = {.count = 1, .reusable = true}, SHIFT(1264), - [2758] = {.count = 1, .reusable = true}, SHIFT(1265), - [2760] = {.count = 1, .reusable = false}, SHIFT(1267), - [2762] = {.count = 1, .reusable = true}, SHIFT(1269), - [2764] = {.count = 1, .reusable = true}, SHIFT(1270), - [2766] = {.count = 1, .reusable = false}, SHIFT(1271), - [2768] = {.count = 1, .reusable = false}, SHIFT(1269), - [2770] = {.count = 1, .reusable = true}, SHIFT(1272), - [2772] = {.count = 1, .reusable = true}, SHIFT(1273), - [2774] = {.count = 1, .reusable = true}, SHIFT(1274), - [2776] = {.count = 1, .reusable = true}, SHIFT(1275), - [2778] = {.count = 1, .reusable = false}, SHIFT(1276), - [2780] = {.count = 1, .reusable = false}, SHIFT(1274), - [2782] = {.count = 1, .reusable = true}, SHIFT(1284), - [2784] = {.count = 1, .reusable = false}, SHIFT(1286), - [2786] = {.count = 1, .reusable = true}, SHIFT(1287), - [2788] = {.count = 1, .reusable = true}, SHIFT(1288), - [2790] = {.count = 1, .reusable = false}, SHIFT(1290), - [2792] = {.count = 1, .reusable = true}, SHIFT(1290), - [2794] = {.count = 1, .reusable = true}, SHIFT(1289), - [2796] = {.count = 1, .reusable = true}, SHIFT(1291), - [2798] = {.count = 1, .reusable = true}, SHIFT(1292), - [2800] = {.count = 1, .reusable = false}, SHIFT(1293), - [2802] = {.count = 1, .reusable = false}, SHIFT(1292), - [2804] = {.count = 1, .reusable = true}, SHIFT(1295), - [2806] = {.count = 1, .reusable = false}, SHIFT(1297), - [2808] = {.count = 1, .reusable = true}, SHIFT(1297), - [2810] = {.count = 1, .reusable = true}, SHIFT(1296), - [2812] = {.count = 1, .reusable = true}, SHIFT(1298), - [2814] = {.count = 1, .reusable = false}, SHIFT(1300), - [2816] = {.count = 1, .reusable = true}, SHIFT(1300), - [2818] = {.count = 1, .reusable = true}, SHIFT(1299), - [2820] = {.count = 1, .reusable = true}, SHIFT(1301), - [2822] = {.count = 1, .reusable = false}, SHIFT(1302), - [2824] = {.count = 1, .reusable = true}, SHIFT(1302), - [2826] = {.count = 1, .reusable = true}, SHIFT(1303), - [2828] = {.count = 1, .reusable = true}, SHIFT(1304), - [2830] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), - [2832] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), - [2834] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), - [2836] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(839), - [2839] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(410), - [2842] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(411), - [2845] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(412), - [2848] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(413), - [2851] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(839), - [2854] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(414), - [2857] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(416), - [2860] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(417), - [2863] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(418), - [2866] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(413), - [2869] = {.count = 1, .reusable = false}, SHIFT(1305), - [2871] = {.count = 1, .reusable = true}, SHIFT(1306), - [2873] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), - [2875] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), - [2877] = {.count = 1, .reusable = true}, SHIFT(1308), - [2879] = {.count = 1, .reusable = true}, SHIFT(1309), - [2881] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), - [2883] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), - [2885] = {.count = 1, .reusable = true}, SHIFT(1310), - [2887] = {.count = 1, .reusable = true}, SHIFT(1311), - [2889] = {.count = 1, .reusable = true}, SHIFT(1312), - [2891] = {.count = 1, .reusable = true}, SHIFT(1313), - [2893] = {.count = 1, .reusable = false}, SHIFT(1314), - [2895] = {.count = 1, .reusable = true}, SHIFT(1314), - [2897] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), - [2899] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), - [2901] = {.count = 1, .reusable = true}, SHIFT(1315), - [2903] = {.count = 1, .reusable = false}, SHIFT(1316), - [2905] = {.count = 1, .reusable = true}, SHIFT(1316), - [2907] = {.count = 1, .reusable = true}, SHIFT(1319), - [2909] = {.count = 1, .reusable = false}, SHIFT(1321), - [2911] = {.count = 1, .reusable = false}, SHIFT(1325), - [2913] = {.count = 1, .reusable = false}, SHIFT(1329), - [2915] = {.count = 1, .reusable = true}, SHIFT(1329), - [2917] = {.count = 1, .reusable = true}, SHIFT(1330), - [2919] = {.count = 1, .reusable = false}, SHIFT(1331), - [2921] = {.count = 1, .reusable = true}, SHIFT(1331), - [2923] = {.count = 1, .reusable = true}, SHIFT(1332), - [2925] = {.count = 1, .reusable = true}, SHIFT(1333), - [2927] = {.count = 1, .reusable = true}, SHIFT(1334), - [2929] = {.count = 1, .reusable = true}, SHIFT(1336), - [2931] = {.count = 1, .reusable = false}, SHIFT(1337), - [2933] = {.count = 1, .reusable = true}, SHIFT(1337), - [2935] = {.count = 1, .reusable = true}, SHIFT(1339), - [2937] = {.count = 1, .reusable = false}, SHIFT(1339), - [2939] = {.count = 1, .reusable = false}, SHIFT(1340), - [2941] = {.count = 1, .reusable = true}, SHIFT(1340), - [2943] = {.count = 1, .reusable = true}, SHIFT(1341), - [2945] = {.count = 1, .reusable = false}, SHIFT(1342), - [2947] = {.count = 1, .reusable = true}, SHIFT(1342), - [2949] = {.count = 1, .reusable = false}, SHIFT(1343), - [2951] = {.count = 1, .reusable = true}, SHIFT(1343), - [2953] = {.count = 1, .reusable = true}, SHIFT(1344), - [2955] = {.count = 1, .reusable = true}, SHIFT(1346), - [2957] = {.count = 1, .reusable = true}, SHIFT(1347), - [2959] = {.count = 1, .reusable = true}, SHIFT(1348), - [2961] = {.count = 1, .reusable = true}, SHIFT(1349), - [2963] = {.count = 1, .reusable = true}, SHIFT(1350), - [2965] = {.count = 1, .reusable = false}, SHIFT(1352), - [2967] = {.count = 1, .reusable = true}, SHIFT(1353), - [2969] = {.count = 1, .reusable = true}, SHIFT(1354), - [2971] = {.count = 1, .reusable = false}, SHIFT(1356), - [2973] = {.count = 1, .reusable = true}, SHIFT(1356), - [2975] = {.count = 1, .reusable = true}, SHIFT(1355), - [2977] = {.count = 1, .reusable = true}, SHIFT(1357), - [2979] = {.count = 1, .reusable = true}, SHIFT(1358), - [2981] = {.count = 1, .reusable = false}, SHIFT(1359), - [2983] = {.count = 1, .reusable = false}, SHIFT(1358), - [2985] = {.count = 1, .reusable = true}, SHIFT(1361), - [2987] = {.count = 1, .reusable = false}, SHIFT(1363), - [2989] = {.count = 1, .reusable = true}, SHIFT(1363), - [2991] = {.count = 1, .reusable = true}, SHIFT(1362), - [2993] = {.count = 1, .reusable = true}, SHIFT(1364), - [2995] = {.count = 1, .reusable = false}, SHIFT(1366), - [2997] = {.count = 1, .reusable = true}, SHIFT(1366), - [2999] = {.count = 1, .reusable = true}, SHIFT(1365), - [3001] = {.count = 1, .reusable = true}, SHIFT(1367), - [3003] = {.count = 1, .reusable = true}, SHIFT(1368), - [3005] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(444), - [3008] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(445), - [3011] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(446), - [3014] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(447), - [3017] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(448), - [3020] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(449), - [3023] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(450), - [3026] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(451), - [3029] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(452), - [3032] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(453), - [3035] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(448), - [3038] = {.count = 1, .reusable = true}, SHIFT(1369), - [3040] = {.count = 1, .reusable = false}, SHIFT(1371), - [3042] = {.count = 1, .reusable = true}, SHIFT(1372), - [3044] = {.count = 1, .reusable = true}, SHIFT(1373), - [3046] = {.count = 1, .reusable = false}, SHIFT(1375), - [3048] = {.count = 1, .reusable = true}, SHIFT(1375), - [3050] = {.count = 1, .reusable = true}, SHIFT(1374), - [3052] = {.count = 1, .reusable = true}, SHIFT(1376), - [3054] = {.count = 1, .reusable = true}, SHIFT(1377), - [3056] = {.count = 1, .reusable = false}, SHIFT(1378), - [3058] = {.count = 1, .reusable = false}, SHIFT(1377), - [3060] = {.count = 1, .reusable = true}, SHIFT(1380), - [3062] = {.count = 1, .reusable = false}, SHIFT(1382), - [3064] = {.count = 1, .reusable = true}, SHIFT(1382), - [3066] = {.count = 1, .reusable = true}, SHIFT(1381), - [3068] = {.count = 1, .reusable = true}, SHIFT(1383), - [3070] = {.count = 1, .reusable = false}, SHIFT(1385), - [3072] = {.count = 1, .reusable = true}, SHIFT(1385), - [3074] = {.count = 1, .reusable = true}, SHIFT(1384), - [3076] = {.count = 1, .reusable = true}, SHIFT(1386), - [3078] = {.count = 1, .reusable = true}, SHIFT(1387), - [3080] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(456), - [3083] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(457), - [3086] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(458), - [3089] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(459), - [3092] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(460), - [3095] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(461), - [3098] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(462), - [3101] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(463), - [3104] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(464), - [3107] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(459), - [3110] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(466), - [3113] = {.count = 1, .reusable = true}, SHIFT(1388), - [3115] = {.count = 1, .reusable = false}, SHIFT(1389), - [3117] = {.count = 1, .reusable = true}, SHIFT(1390), - [3119] = {.count = 1, .reusable = true}, SHIFT(1392), - [3121] = {.count = 1, .reusable = true}, SHIFT(1393), - [3123] = {.count = 1, .reusable = true}, SHIFT(1394), - [3125] = {.count = 1, .reusable = true}, SHIFT(1395), - [3127] = {.count = 1, .reusable = false}, SHIFT(1397), - [3129] = {.count = 1, .reusable = true}, SHIFT(1397), - [3131] = {.count = 1, .reusable = true}, SHIFT(1396), - [3133] = {.count = 1, .reusable = true}, SHIFT(1398), - [3135] = {.count = 1, .reusable = false}, SHIFT(1400), - [3137] = {.count = 1, .reusable = true}, SHIFT(1400), - [3139] = {.count = 1, .reusable = true}, SHIFT(1399), - [3141] = {.count = 1, .reusable = false}, SHIFT(1402), - [3143] = {.count = 1, .reusable = true}, SHIFT(1402), - [3145] = {.count = 1, .reusable = true}, SHIFT(1401), - [3147] = {.count = 1, .reusable = true}, SHIFT(1403), - [3149] = {.count = 1, .reusable = true}, SHIFT(1404), - [3151] = {.count = 1, .reusable = true}, SHIFT(1405), - [3153] = {.count = 1, .reusable = true}, SHIFT(1407), - [3155] = {.count = 1, .reusable = true}, SHIFT(1408), - [3157] = {.count = 1, .reusable = true}, SHIFT(1409), - [3159] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(490), - [3162] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(492), - [3165] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(492), - [3168] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(493), - [3171] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(493), - [3174] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(494), - [3177] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(491), - [3180] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(495), - [3183] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(155), - [3186] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(156), - [3189] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(496), - [3192] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(158), - [3195] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(159), - [3198] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(160), - [3201] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(161), - [3204] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(496), - [3207] = {.count = 1, .reusable = true}, SHIFT(1416), - [3209] = {.count = 1, .reusable = true}, SHIFT(1417), - [3211] = {.count = 1, .reusable = false}, SHIFT(1418), - [3213] = {.count = 1, .reusable = true}, SHIFT(1418), - [3215] = {.count = 1, .reusable = true}, SHIFT(1419), - [3217] = {.count = 1, .reusable = false}, SHIFT(1420), - [3219] = {.count = 1, .reusable = true}, SHIFT(1420), - [3221] = {.count = 1, .reusable = true}, SHIFT(1421), - [3223] = {.count = 1, .reusable = true}, SHIFT(1423), - [3225] = {.count = 1, .reusable = true}, SHIFT(1424), - [3227] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(506), - [3230] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(507), - [3233] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(508), - [3236] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(508), - [3239] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(511), - [3242] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(512), - [3245] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(512), - [3248] = {.count = 1, .reusable = true}, SHIFT(1428), - [3250] = {.count = 1, .reusable = true}, SHIFT(1429), - [3252] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(518), - [3255] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(520), - [3258] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(520), - [3261] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(521), - [3264] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(519), - [3267] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(522), - [3270] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(523), - [3273] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(523), - [3276] = {.count = 1, .reusable = true}, SHIFT(1433), - [3278] = {.count = 1, .reusable = true}, SHIFT(1434), - [3280] = {.count = 1, .reusable = false}, SHIFT(1436), - [3282] = {.count = 1, .reusable = true}, SHIFT(1436), - [3284] = {.count = 1, .reusable = true}, SHIFT(1435), - [3286] = {.count = 1, .reusable = true}, SHIFT(1437), - [3288] = {.count = 1, .reusable = true}, SHIFT(1438), - [3290] = {.count = 1, .reusable = false}, SHIFT(1439), - [3292] = {.count = 1, .reusable = false}, SHIFT(1438), - [3294] = {.count = 1, .reusable = true}, SHIFT(1441), - [3296] = {.count = 1, .reusable = false}, SHIFT(1443), - [3298] = {.count = 1, .reusable = true}, SHIFT(1443), - [3300] = {.count = 1, .reusable = true}, SHIFT(1442), - [3302] = {.count = 1, .reusable = true}, SHIFT(1444), - [3304] = {.count = 1, .reusable = false}, SHIFT(1446), - [3306] = {.count = 1, .reusable = true}, SHIFT(1446), - [3308] = {.count = 1, .reusable = true}, SHIFT(1445), - [3310] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 3), - [3312] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 3), - [3314] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(988), - [3317] = {.count = 1, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [3319] = {.count = 2, .reusable = false}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(534), - [3322] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(535), - [3325] = {.count = 1, .reusable = false}, REDUCE(sym_command, 4), - [3327] = {.count = 1, .reusable = true}, REDUCE(sym_command, 4), - [3329] = {.count = 1, .reusable = true}, SHIFT(1449), - [3331] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), - [3333] = {.count = 1, .reusable = true}, SHIFT(1450), - [3335] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5), - [3337] = {.count = 1, .reusable = true}, SHIFT(1451), - [3339] = {.count = 1, .reusable = false}, SHIFT(1453), - [3341] = {.count = 1, .reusable = true}, SHIFT(1454), - [3343] = {.count = 1, .reusable = true}, SHIFT(1455), - [3345] = {.count = 1, .reusable = false}, SHIFT(1457), - [3347] = {.count = 1, .reusable = true}, SHIFT(1457), - [3349] = {.count = 1, .reusable = true}, SHIFT(1456), - [3351] = {.count = 1, .reusable = true}, SHIFT(1458), - [3353] = {.count = 1, .reusable = true}, SHIFT(1459), - [3355] = {.count = 1, .reusable = false}, SHIFT(1460), - [3357] = {.count = 1, .reusable = false}, SHIFT(1459), - [3359] = {.count = 1, .reusable = true}, SHIFT(1462), - [3361] = {.count = 1, .reusable = false}, SHIFT(1464), - [3363] = {.count = 1, .reusable = true}, SHIFT(1464), - [3365] = {.count = 1, .reusable = true}, SHIFT(1463), - [3367] = {.count = 1, .reusable = true}, SHIFT(1465), - [3369] = {.count = 1, .reusable = false}, SHIFT(1467), - [3371] = {.count = 1, .reusable = true}, SHIFT(1467), - [3373] = {.count = 1, .reusable = true}, SHIFT(1466), - [3375] = {.count = 1, .reusable = true}, SHIFT(1468), - [3377] = {.count = 1, .reusable = true}, SHIFT(1469), - [3379] = {.count = 1, .reusable = true}, REDUCE(sym_array, 3), - [3381] = {.count = 1, .reusable = false}, REDUCE(sym_array, 3), - [3383] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), - [3385] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(560), - [3388] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(561), - [3391] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(562), - [3394] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(563), - [3397] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(564), - [3400] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(565), - [3403] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(566), - [3406] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(567), - [3409] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(569), - [3412] = {.count = 1, .reusable = true}, SHIFT(1470), - [3414] = {.count = 1, .reusable = false}, SHIFT(1471), - [3416] = {.count = 1, .reusable = true}, SHIFT(1472), - [3418] = {.count = 1, .reusable = true}, SHIFT(1474), - [3420] = {.count = 1, .reusable = true}, SHIFT(1475), - [3422] = {.count = 1, .reusable = true}, SHIFT(1476), - [3424] = {.count = 1, .reusable = true}, SHIFT(1477), - [3426] = {.count = 1, .reusable = false}, SHIFT(1479), - [3428] = {.count = 1, .reusable = true}, SHIFT(1479), - [3430] = {.count = 1, .reusable = true}, SHIFT(1478), - [3432] = {.count = 1, .reusable = true}, SHIFT(1480), - [3434] = {.count = 1, .reusable = false}, SHIFT(1482), - [3436] = {.count = 1, .reusable = true}, SHIFT(1482), - [3438] = {.count = 1, .reusable = true}, SHIFT(1481), - [3440] = {.count = 1, .reusable = false}, SHIFT(1484), - [3442] = {.count = 1, .reusable = true}, SHIFT(1484), - [3444] = {.count = 1, .reusable = true}, SHIFT(1483), - [3446] = {.count = 1, .reusable = true}, SHIFT(1485), - [3448] = {.count = 1, .reusable = true}, SHIFT(1486), - [3450] = {.count = 1, .reusable = true}, SHIFT(1487), - [3452] = {.count = 1, .reusable = true}, SHIFT(1488), - [3454] = {.count = 1, .reusable = false}, SHIFT(1490), - [3456] = {.count = 1, .reusable = true}, SHIFT(1491), - [3458] = {.count = 1, .reusable = true}, SHIFT(1492), - [3460] = {.count = 1, .reusable = false}, SHIFT(1494), - [3462] = {.count = 1, .reusable = true}, SHIFT(1494), - [3464] = {.count = 1, .reusable = true}, SHIFT(1493), - [3466] = {.count = 1, .reusable = true}, SHIFT(1495), - [3468] = {.count = 1, .reusable = true}, SHIFT(1496), - [3470] = {.count = 1, .reusable = false}, SHIFT(1497), - [3472] = {.count = 1, .reusable = false}, SHIFT(1496), - [3474] = {.count = 1, .reusable = true}, SHIFT(1499), - [3476] = {.count = 1, .reusable = false}, SHIFT(1501), - [3478] = {.count = 1, .reusable = true}, SHIFT(1501), - [3480] = {.count = 1, .reusable = true}, SHIFT(1500), - [3482] = {.count = 1, .reusable = true}, SHIFT(1502), - [3484] = {.count = 1, .reusable = false}, SHIFT(1504), - [3486] = {.count = 1, .reusable = true}, SHIFT(1504), - [3488] = {.count = 1, .reusable = true}, SHIFT(1503), - [3490] = {.count = 1, .reusable = true}, SHIFT(1505), - [3492] = {.count = 1, .reusable = true}, SHIFT(1506), - [3494] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [3496] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(587), - [3499] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(588), - [3502] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(589), - [3505] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(590), - [3508] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(591), - [3511] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(592), - [3514] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(593), - [3517] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(594), - [3520] = {.count = 1, .reusable = false}, SHIFT(1508), - [3522] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 3), - [3524] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 3), - [3526] = {.count = 1, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), - [3528] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 5), - [3530] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 5), - [3532] = {.count = 1, .reusable = true}, SHIFT(1509), - [3534] = {.count = 1, .reusable = false}, SHIFT(1510), - [3536] = {.count = 1, .reusable = true}, SHIFT(1510), - [3538] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 2), - [3540] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), - [3542] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), - [3544] = {.count = 1, .reusable = true}, SHIFT(1512), - [3546] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), - [3548] = {.count = 2, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(605), - [3551] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), - [3553] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), - [3555] = {.count = 1, .reusable = true}, SHIFT(1514), - [3557] = {.count = 1, .reusable = true}, SHIFT(1515), - [3559] = {.count = 1, .reusable = true}, SHIFT(1518), - [3561] = {.count = 1, .reusable = true}, SHIFT(1520), - [3563] = {.count = 1, .reusable = false}, SHIFT(1523), - [3565] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5), - [3567] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5), - [3569] = {.count = 1, .reusable = true}, SHIFT(1525), - [3571] = {.count = 1, .reusable = false}, SHIFT(1527), - [3573] = {.count = 1, .reusable = true}, SHIFT(1529), - [3575] = {.count = 1, .reusable = true}, SHIFT(1530), - [3577] = {.count = 1, .reusable = true}, SHIFT(1531), - [3579] = {.count = 1, .reusable = false}, SHIFT(1532), - [3581] = {.count = 1, .reusable = true}, SHIFT(1532), - [3583] = {.count = 1, .reusable = false}, SHIFT(1533), - [3585] = {.count = 1, .reusable = true}, SHIFT(1534), - [3587] = {.count = 1, .reusable = true}, SHIFT(1536), - [3589] = {.count = 1, .reusable = true}, SHIFT(1537), - [3591] = {.count = 1, .reusable = true}, SHIFT(1538), - [3593] = {.count = 1, .reusable = true}, SHIFT(1539), - [3595] = {.count = 1, .reusable = true}, SHIFT(1540), - [3597] = {.count = 1, .reusable = true}, SHIFT(1541), - [3599] = {.count = 1, .reusable = false}, SHIFT(1542), - [3601] = {.count = 1, .reusable = true}, SHIFT(1542), - [3603] = {.count = 1, .reusable = true}, SHIFT(1543), - [3605] = {.count = 1, .reusable = false}, SHIFT(1544), - [3607] = {.count = 1, .reusable = true}, SHIFT(1544), - [3609] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 5), - [3611] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 5), - [3613] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), - [3615] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), - [3617] = {.count = 1, .reusable = true}, SHIFT(1546), - [3619] = {.count = 1, .reusable = true}, SHIFT(1547), - [3621] = {.count = 1, .reusable = false}, SHIFT(1552), - [3623] = {.count = 1, .reusable = true}, SHIFT(1552), - [3625] = {.count = 1, .reusable = true}, SHIFT(1553), - [3627] = {.count = 1, .reusable = true}, SHIFT(1554), - [3629] = {.count = 1, .reusable = false}, SHIFT(1555), - [3631] = {.count = 1, .reusable = true}, SHIFT(1555), - [3633] = {.count = 1, .reusable = true}, SHIFT(1556), - [3635] = {.count = 1, .reusable = true}, SHIFT(1557), - [3637] = {.count = 1, .reusable = true}, SHIFT(1558), - [3639] = {.count = 1, .reusable = true}, SHIFT(1559), - [3641] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 5), - [3643] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 5), - [3645] = {.count = 1, .reusable = true}, SHIFT(1562), - [3647] = {.count = 1, .reusable = true}, SHIFT(1563), - [3649] = {.count = 1, .reusable = true}, SHIFT(1564), - [3651] = {.count = 1, .reusable = true}, SHIFT(1565), - [3653] = {.count = 1, .reusable = false}, SHIFT(1566), - [3655] = {.count = 1, .reusable = true}, SHIFT(1566), - [3657] = {.count = 1, .reusable = false}, SHIFT(1567), - [3659] = {.count = 1, .reusable = true}, SHIFT(1568), - [3661] = {.count = 1, .reusable = true}, SHIFT(1570), - [3663] = {.count = 1, .reusable = true}, SHIFT(1571), - [3665] = {.count = 1, .reusable = true}, SHIFT(1572), - [3667] = {.count = 1, .reusable = true}, SHIFT(1573), - [3669] = {.count = 1, .reusable = true}, SHIFT(1574), - [3671] = {.count = 1, .reusable = true}, SHIFT(1575), - [3673] = {.count = 1, .reusable = false}, SHIFT(1576), - [3675] = {.count = 1, .reusable = true}, SHIFT(1576), - [3677] = {.count = 1, .reusable = true}, SHIFT(1577), - [3679] = {.count = 1, .reusable = false}, SHIFT(1578), - [3681] = {.count = 1, .reusable = true}, SHIFT(1578), - [3683] = {.count = 1, .reusable = true}, SHIFT(1579), - [3685] = {.count = 1, .reusable = true}, SHIFT(1580), - [3687] = {.count = 1, .reusable = true}, SHIFT(1582), - [3689] = {.count = 1, .reusable = false}, SHIFT(1584), - [3691] = {.count = 1, .reusable = true}, SHIFT(1586), - [3693] = {.count = 1, .reusable = true}, SHIFT(1587), - [3695] = {.count = 1, .reusable = false}, SHIFT(1588), - [3697] = {.count = 1, .reusable = false}, SHIFT(1586), - [3699] = {.count = 1, .reusable = true}, SHIFT(1589), - [3701] = {.count = 1, .reusable = true}, SHIFT(1590), - [3703] = {.count = 1, .reusable = true}, SHIFT(1591), - [3705] = {.count = 1, .reusable = false}, SHIFT(1592), - [3707] = {.count = 1, .reusable = false}, SHIFT(1590), - [3709] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(701), - [3712] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(702), - [3715] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(703), - [3718] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(704), - [3721] = {.count = 1, .reusable = true}, SHIFT(1600), - [3723] = {.count = 1, .reusable = true}, SHIFT(1601), - [3725] = {.count = 1, .reusable = true}, SHIFT(1602), - [3727] = {.count = 1, .reusable = false}, SHIFT(1603), - [3729] = {.count = 1, .reusable = true}, SHIFT(1603), - [3731] = {.count = 1, .reusable = false}, SHIFT(1604), - [3733] = {.count = 1, .reusable = true}, SHIFT(1605), - [3735] = {.count = 1, .reusable = true}, SHIFT(1607), - [3737] = {.count = 1, .reusable = true}, SHIFT(1608), - [3739] = {.count = 1, .reusable = true}, SHIFT(1609), - [3741] = {.count = 1, .reusable = true}, SHIFT(1610), - [3743] = {.count = 1, .reusable = true}, SHIFT(1611), - [3745] = {.count = 1, .reusable = true}, SHIFT(1612), - [3747] = {.count = 1, .reusable = false}, SHIFT(1613), - [3749] = {.count = 1, .reusable = true}, SHIFT(1613), - [3751] = {.count = 1, .reusable = true}, SHIFT(1614), - [3753] = {.count = 1, .reusable = false}, SHIFT(1615), - [3755] = {.count = 1, .reusable = true}, SHIFT(1615), - [3757] = {.count = 1, .reusable = true}, SHIFT(1616), - [3759] = {.count = 1, .reusable = true}, SHIFT(1617), - [3761] = {.count = 1, .reusable = true}, SHIFT(1618), - [3763] = {.count = 1, .reusable = true}, SHIFT(1619), - [3765] = {.count = 1, .reusable = false}, SHIFT(1620), - [3767] = {.count = 1, .reusable = true}, SHIFT(1620), - [3769] = {.count = 1, .reusable = false}, SHIFT(1621), - [3771] = {.count = 1, .reusable = true}, SHIFT(1622), - [3773] = {.count = 1, .reusable = true}, SHIFT(1624), - [3775] = {.count = 1, .reusable = true}, SHIFT(1625), - [3777] = {.count = 1, .reusable = true}, SHIFT(1626), - [3779] = {.count = 1, .reusable = true}, SHIFT(1627), - [3781] = {.count = 1, .reusable = true}, SHIFT(1628), - [3783] = {.count = 1, .reusable = true}, SHIFT(1629), - [3785] = {.count = 1, .reusable = false}, SHIFT(1630), - [3787] = {.count = 1, .reusable = true}, SHIFT(1630), - [3789] = {.count = 1, .reusable = true}, SHIFT(1631), - [3791] = {.count = 1, .reusable = false}, SHIFT(1632), - [3793] = {.count = 1, .reusable = true}, SHIFT(1632), - [3795] = {.count = 1, .reusable = true}, SHIFT(1633), - [3797] = {.count = 1, .reusable = true}, SHIFT(1634), - [3799] = {.count = 1, .reusable = true}, SHIFT(1635), - [3801] = {.count = 1, .reusable = false}, SHIFT(1636), - [3803] = {.count = 1, .reusable = true}, SHIFT(1636), - [3805] = {.count = 1, .reusable = false}, SHIFT(1637), - [3807] = {.count = 1, .reusable = true}, SHIFT(1638), - [3809] = {.count = 1, .reusable = true}, SHIFT(1640), - [3811] = {.count = 1, .reusable = true}, SHIFT(1641), - [3813] = {.count = 1, .reusable = true}, SHIFT(1642), - [3815] = {.count = 1, .reusable = true}, SHIFT(1643), - [3817] = {.count = 1, .reusable = true}, SHIFT(1644), - [3819] = {.count = 1, .reusable = true}, SHIFT(1645), - [3821] = {.count = 1, .reusable = false}, SHIFT(1646), - [3823] = {.count = 1, .reusable = true}, SHIFT(1646), - [3825] = {.count = 1, .reusable = true}, SHIFT(1647), - [3827] = {.count = 1, .reusable = false}, SHIFT(1648), - [3829] = {.count = 1, .reusable = true}, SHIFT(1648), - [3831] = {.count = 1, .reusable = true}, SHIFT(1649), - [3833] = {.count = 1, .reusable = true}, SHIFT(1650), - [3835] = {.count = 1, .reusable = true}, SHIFT(1651), - [3837] = {.count = 1, .reusable = false}, SHIFT(1652), - [3839] = {.count = 1, .reusable = true}, SHIFT(1652), - [3841] = {.count = 1, .reusable = false}, SHIFT(1653), - [3843] = {.count = 1, .reusable = true}, SHIFT(1654), - [3845] = {.count = 1, .reusable = true}, SHIFT(1656), - [3847] = {.count = 1, .reusable = true}, SHIFT(1657), - [3849] = {.count = 1, .reusable = true}, SHIFT(1658), - [3851] = {.count = 1, .reusable = true}, SHIFT(1659), - [3853] = {.count = 1, .reusable = true}, SHIFT(1660), - [3855] = {.count = 1, .reusable = true}, SHIFT(1661), - [3857] = {.count = 1, .reusable = false}, SHIFT(1662), - [3859] = {.count = 1, .reusable = true}, SHIFT(1662), - [3861] = {.count = 1, .reusable = true}, SHIFT(1663), - [3863] = {.count = 1, .reusable = false}, SHIFT(1664), - [3865] = {.count = 1, .reusable = true}, SHIFT(1664), - [3867] = {.count = 1, .reusable = true}, SHIFT(1665), - [3869] = {.count = 1, .reusable = true}, SHIFT(1666), - [3871] = {.count = 1, .reusable = true}, SHIFT(1667), - [3873] = {.count = 1, .reusable = false}, SHIFT(1668), - [3875] = {.count = 1, .reusable = true}, SHIFT(1668), - [3877] = {.count = 1, .reusable = false}, SHIFT(1669), - [3879] = {.count = 1, .reusable = true}, SHIFT(1670), - [3881] = {.count = 1, .reusable = true}, SHIFT(1672), - [3883] = {.count = 1, .reusable = true}, SHIFT(1673), - [3885] = {.count = 1, .reusable = true}, SHIFT(1674), - [3887] = {.count = 1, .reusable = true}, SHIFT(1675), - [3889] = {.count = 1, .reusable = true}, SHIFT(1676), - [3891] = {.count = 1, .reusable = true}, SHIFT(1677), - [3893] = {.count = 1, .reusable = false}, SHIFT(1678), - [3895] = {.count = 1, .reusable = true}, SHIFT(1678), - [3897] = {.count = 1, .reusable = true}, SHIFT(1679), - [3899] = {.count = 1, .reusable = false}, SHIFT(1680), - [3901] = {.count = 1, .reusable = true}, SHIFT(1680), - [3903] = {.count = 1, .reusable = true}, SHIFT(1681), - [3905] = {.count = 1, .reusable = true}, SHIFT(1682), - [3907] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), - [3909] = {.count = 1, .reusable = true}, SHIFT(1683), - [3911] = {.count = 1, .reusable = true}, SHIFT(1684), - [3913] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4), - [3915] = {.count = 1, .reusable = true}, SHIFT(1685), - [3917] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), - [3919] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), - [3921] = {.count = 1, .reusable = false}, SHIFT(1687), - [3923] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5), - [3925] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5), - [3927] = {.count = 1, .reusable = true}, SHIFT(1688), - [3929] = {.count = 1, .reusable = true}, SHIFT(1689), - [3931] = {.count = 1, .reusable = false}, SHIFT(1691), - [3933] = {.count = 1, .reusable = true}, SHIFT(1691), - [3935] = {.count = 1, .reusable = true}, SHIFT(1690), - [3937] = {.count = 1, .reusable = true}, SHIFT(1692), - [3939] = {.count = 1, .reusable = true}, SHIFT(1693), - [3941] = {.count = 1, .reusable = false}, SHIFT(1694), - [3943] = {.count = 1, .reusable = false}, SHIFT(1693), - [3945] = {.count = 1, .reusable = true}, SHIFT(1696), - [3947] = {.count = 1, .reusable = false}, SHIFT(1698), - [3949] = {.count = 1, .reusable = true}, SHIFT(1698), - [3951] = {.count = 1, .reusable = true}, SHIFT(1697), - [3953] = {.count = 1, .reusable = true}, SHIFT(1699), - [3955] = {.count = 1, .reusable = false}, SHIFT(1701), - [3957] = {.count = 1, .reusable = true}, SHIFT(1701), - [3959] = {.count = 1, .reusable = true}, SHIFT(1700), - [3961] = {.count = 1, .reusable = true}, SHIFT(1702), - [3963] = {.count = 1, .reusable = true}, SHIFT(1703), - [3965] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(819), - [3968] = {.count = 1, .reusable = true}, SHIFT(1704), - [3970] = {.count = 1, .reusable = false}, SHIFT(1705), - [3972] = {.count = 1, .reusable = true}, SHIFT(1706), - [3974] = {.count = 1, .reusable = true}, SHIFT(1708), - [3976] = {.count = 1, .reusable = true}, SHIFT(1709), - [3978] = {.count = 1, .reusable = true}, SHIFT(1710), - [3980] = {.count = 1, .reusable = true}, SHIFT(1711), - [3982] = {.count = 1, .reusable = false}, SHIFT(1713), - [3984] = {.count = 1, .reusable = true}, SHIFT(1713), - [3986] = {.count = 1, .reusable = true}, SHIFT(1712), - [3988] = {.count = 1, .reusable = true}, SHIFT(1714), - [3990] = {.count = 1, .reusable = false}, SHIFT(1716), - [3992] = {.count = 1, .reusable = true}, SHIFT(1716), - [3994] = {.count = 1, .reusable = true}, SHIFT(1715), - [3996] = {.count = 1, .reusable = false}, SHIFT(1718), - [3998] = {.count = 1, .reusable = true}, SHIFT(1718), - [4000] = {.count = 1, .reusable = true}, SHIFT(1717), - [4002] = {.count = 1, .reusable = true}, SHIFT(1719), - [4004] = {.count = 1, .reusable = true}, SHIFT(1720), - [4006] = {.count = 1, .reusable = true}, SHIFT(1721), - [4008] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), - [4010] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), - [4012] = {.count = 1, .reusable = true}, SHIFT(1722), - [4014] = {.count = 1, .reusable = true}, SHIFT(1723), - [4016] = {.count = 1, .reusable = true}, SHIFT(1724), - [4018] = {.count = 1, .reusable = true}, SHIFT(1725), - [4020] = {.count = 1, .reusable = false}, SHIFT(1726), - [4022] = {.count = 1, .reusable = true}, SHIFT(1726), - [4024] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), - [4026] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), - [4028] = {.count = 1, .reusable = true}, SHIFT(1727), - [4030] = {.count = 1, .reusable = false}, SHIFT(1728), - [4032] = {.count = 1, .reusable = true}, SHIFT(1728), - [4034] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), - [4036] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), - [4038] = {.count = 1, .reusable = true}, SHIFT(1729), - [4040] = {.count = 1, .reusable = false}, SHIFT(1730), - [4042] = {.count = 1, .reusable = true}, SHIFT(1730), - [4044] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), - [4046] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), - [4048] = {.count = 1, .reusable = true}, SHIFT(1731), - [4050] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), - [4052] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), - [4054] = {.count = 1, .reusable = true}, SHIFT(1732), - [4056] = {.count = 1, .reusable = false}, SHIFT(1734), - [4058] = {.count = 1, .reusable = true}, SHIFT(1734), - [4060] = {.count = 1, .reusable = false}, SHIFT(1735), - [4062] = {.count = 1, .reusable = false}, SHIFT(1737), - [4064] = {.count = 1, .reusable = true}, SHIFT(1739), - [4066] = {.count = 1, .reusable = false}, SHIFT(1739), - [4068] = {.count = 1, .reusable = false}, SHIFT(1742), - [4070] = {.count = 1, .reusable = false}, SHIFT(1745), - [4072] = {.count = 1, .reusable = true}, SHIFT(1745), - [4074] = {.count = 1, .reusable = false}, SHIFT(1746), - [4076] = {.count = 1, .reusable = false}, SHIFT(1749), - [4078] = {.count = 1, .reusable = true}, SHIFT(1749), - [4080] = {.count = 1, .reusable = true}, SHIFT(1751), - [4082] = {.count = 1, .reusable = false}, SHIFT(1752), - [4084] = {.count = 1, .reusable = true}, SHIFT(1752), - [4086] = {.count = 1, .reusable = true}, SHIFT(1753), - [4088] = {.count = 1, .reusable = true}, SHIFT(1754), - [4090] = {.count = 1, .reusable = true}, SHIFT(1756), - [4092] = {.count = 1, .reusable = false}, SHIFT(1757), - [4094] = {.count = 1, .reusable = true}, SHIFT(1757), - [4096] = {.count = 1, .reusable = true}, SHIFT(1758), - [4098] = {.count = 1, .reusable = true}, SHIFT(1759), - [4100] = {.count = 1, .reusable = false}, SHIFT(1760), - [4102] = {.count = 1, .reusable = true}, SHIFT(1761), - [4104] = {.count = 1, .reusable = true}, SHIFT(1762), - [4106] = {.count = 1, .reusable = true}, SHIFT(1763), - [4108] = {.count = 1, .reusable = true}, SHIFT(1764), - [4110] = {.count = 1, .reusable = true}, SHIFT(1765), - [4112] = {.count = 1, .reusable = true}, SHIFT(1767), - [4114] = {.count = 1, .reusable = true}, SHIFT(1768), - [4116] = {.count = 1, .reusable = true}, SHIFT(1769), - [4118] = {.count = 1, .reusable = true}, SHIFT(1772), - [4120] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(872), - [4123] = {.count = 1, .reusable = true}, SHIFT(1774), - [4125] = {.count = 1, .reusable = false}, SHIFT(1775), - [4127] = {.count = 1, .reusable = true}, SHIFT(1776), - [4129] = {.count = 1, .reusable = true}, SHIFT(1778), - [4131] = {.count = 1, .reusable = true}, SHIFT(1779), - [4133] = {.count = 1, .reusable = true}, SHIFT(1780), - [4135] = {.count = 1, .reusable = true}, SHIFT(1781), - [4137] = {.count = 1, .reusable = false}, SHIFT(1783), - [4139] = {.count = 1, .reusable = true}, SHIFT(1783), - [4141] = {.count = 1, .reusable = true}, SHIFT(1782), - [4143] = {.count = 1, .reusable = true}, SHIFT(1784), - [4145] = {.count = 1, .reusable = false}, SHIFT(1786), - [4147] = {.count = 1, .reusable = true}, SHIFT(1786), - [4149] = {.count = 1, .reusable = true}, SHIFT(1785), - [4151] = {.count = 1, .reusable = false}, SHIFT(1788), - [4153] = {.count = 1, .reusable = true}, SHIFT(1788), - [4155] = {.count = 1, .reusable = true}, SHIFT(1787), - [4157] = {.count = 1, .reusable = true}, SHIFT(1789), - [4159] = {.count = 1, .reusable = true}, SHIFT(1790), - [4161] = {.count = 1, .reusable = true}, SHIFT(1791), - [4163] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(891), - [4166] = {.count = 1, .reusable = true}, SHIFT(1792), - [4168] = {.count = 1, .reusable = false}, SHIFT(1793), - [4170] = {.count = 1, .reusable = true}, SHIFT(1794), - [4172] = {.count = 1, .reusable = true}, SHIFT(1796), - [4174] = {.count = 1, .reusable = true}, SHIFT(1797), - [4176] = {.count = 1, .reusable = true}, SHIFT(1798), - [4178] = {.count = 1, .reusable = true}, SHIFT(1799), - [4180] = {.count = 1, .reusable = false}, SHIFT(1801), - [4182] = {.count = 1, .reusable = true}, SHIFT(1801), - [4184] = {.count = 1, .reusable = true}, SHIFT(1800), - [4186] = {.count = 1, .reusable = true}, SHIFT(1802), - [4188] = {.count = 1, .reusable = false}, SHIFT(1804), - [4190] = {.count = 1, .reusable = true}, SHIFT(1804), - [4192] = {.count = 1, .reusable = true}, SHIFT(1803), - [4194] = {.count = 1, .reusable = false}, SHIFT(1806), - [4196] = {.count = 1, .reusable = true}, SHIFT(1806), - [4198] = {.count = 1, .reusable = true}, SHIFT(1805), - [4200] = {.count = 1, .reusable = true}, SHIFT(1807), - [4202] = {.count = 1, .reusable = true}, SHIFT(1808), - [4204] = {.count = 1, .reusable = true}, SHIFT(1809), - [4206] = {.count = 1, .reusable = true}, SHIFT(1810), - [4208] = {.count = 1, .reusable = true}, SHIFT(1811), - [4210] = {.count = 1, .reusable = true}, SHIFT(1812), - [4212] = {.count = 1, .reusable = false}, SHIFT(1813), - [4214] = {.count = 1, .reusable = true}, SHIFT(1813), - [4216] = {.count = 1, .reusable = false}, SHIFT(1814), - [4218] = {.count = 1, .reusable = true}, SHIFT(1815), - [4220] = {.count = 1, .reusable = true}, SHIFT(1817), - [4222] = {.count = 1, .reusable = true}, SHIFT(1818), - [4224] = {.count = 1, .reusable = true}, SHIFT(1819), - [4226] = {.count = 1, .reusable = true}, SHIFT(1820), - [4228] = {.count = 1, .reusable = true}, SHIFT(1821), - [4230] = {.count = 1, .reusable = true}, SHIFT(1822), - [4232] = {.count = 1, .reusable = false}, SHIFT(1823), - [4234] = {.count = 1, .reusable = true}, SHIFT(1823), - [4236] = {.count = 1, .reusable = true}, SHIFT(1824), - [4238] = {.count = 1, .reusable = false}, SHIFT(1825), - [4240] = {.count = 1, .reusable = true}, SHIFT(1825), - [4242] = {.count = 1, .reusable = false}, SHIFT(1831), - [4244] = {.count = 1, .reusable = true}, SHIFT(1831), - [4246] = {.count = 1, .reusable = true}, SHIFT(1832), - [4248] = {.count = 1, .reusable = true}, SHIFT(1833), - [4250] = {.count = 1, .reusable = false}, SHIFT(1834), - [4252] = {.count = 1, .reusable = true}, SHIFT(1834), - [4254] = {.count = 1, .reusable = true}, SHIFT(1835), - [4256] = {.count = 1, .reusable = true}, SHIFT(1836), - [4258] = {.count = 1, .reusable = true}, SHIFT(1837), - [4260] = {.count = 1, .reusable = true}, SHIFT(1838), - [4262] = {.count = 1, .reusable = true}, SHIFT(1841), - [4264] = {.count = 1, .reusable = false}, SHIFT(1842), - [4266] = {.count = 1, .reusable = true}, SHIFT(1843), - [4268] = {.count = 1, .reusable = true}, SHIFT(1845), - [4270] = {.count = 1, .reusable = true}, SHIFT(1846), - [4272] = {.count = 1, .reusable = true}, SHIFT(1847), - [4274] = {.count = 1, .reusable = true}, SHIFT(1848), - [4276] = {.count = 1, .reusable = false}, SHIFT(1850), - [4278] = {.count = 1, .reusable = true}, SHIFT(1850), - [4280] = {.count = 1, .reusable = true}, SHIFT(1849), - [4282] = {.count = 1, .reusable = true}, SHIFT(1851), - [4284] = {.count = 1, .reusable = false}, SHIFT(1853), - [4286] = {.count = 1, .reusable = true}, SHIFT(1853), - [4288] = {.count = 1, .reusable = true}, SHIFT(1852), - [4290] = {.count = 1, .reusable = false}, SHIFT(1855), - [4292] = {.count = 1, .reusable = true}, SHIFT(1855), - [4294] = {.count = 1, .reusable = true}, SHIFT(1854), - [4296] = {.count = 1, .reusable = true}, SHIFT(1856), - [4298] = {.count = 1, .reusable = true}, SHIFT(1857), - [4300] = {.count = 1, .reusable = true}, SHIFT(1858), - [4302] = {.count = 1, .reusable = false}, REDUCE(sym_command, 5), - [4304] = {.count = 1, .reusable = true}, REDUCE(sym_command, 5), - [4306] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), - [4308] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6), - [4310] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1000), - [4313] = {.count = 1, .reusable = true}, SHIFT(1859), - [4315] = {.count = 1, .reusable = false}, SHIFT(1860), - [4317] = {.count = 1, .reusable = true}, SHIFT(1861), - [4319] = {.count = 1, .reusable = true}, SHIFT(1863), - [4321] = {.count = 1, .reusable = true}, SHIFT(1864), - [4323] = {.count = 1, .reusable = true}, SHIFT(1865), - [4325] = {.count = 1, .reusable = true}, SHIFT(1866), - [4327] = {.count = 1, .reusable = false}, SHIFT(1868), - [4329] = {.count = 1, .reusable = true}, SHIFT(1868), - [4331] = {.count = 1, .reusable = true}, SHIFT(1867), - [4333] = {.count = 1, .reusable = true}, SHIFT(1869), - [4335] = {.count = 1, .reusable = false}, SHIFT(1871), - [4337] = {.count = 1, .reusable = true}, SHIFT(1871), - [4339] = {.count = 1, .reusable = true}, SHIFT(1870), - [4341] = {.count = 1, .reusable = false}, SHIFT(1873), - [4343] = {.count = 1, .reusable = true}, SHIFT(1873), - [4345] = {.count = 1, .reusable = true}, SHIFT(1872), - [4347] = {.count = 1, .reusable = true}, SHIFT(1874), - [4349] = {.count = 1, .reusable = true}, SHIFT(1875), - [4351] = {.count = 1, .reusable = true}, SHIFT(1876), - [4353] = {.count = 1, .reusable = true}, SHIFT(1877), - [4355] = {.count = 1, .reusable = true}, SHIFT(1878), - [4357] = {.count = 1, .reusable = true}, SHIFT(1879), - [4359] = {.count = 1, .reusable = false}, SHIFT(1880), - [4361] = {.count = 1, .reusable = true}, SHIFT(1880), - [4363] = {.count = 1, .reusable = false}, SHIFT(1881), - [4365] = {.count = 1, .reusable = true}, SHIFT(1882), - [4367] = {.count = 1, .reusable = true}, SHIFT(1884), - [4369] = {.count = 1, .reusable = true}, SHIFT(1885), - [4371] = {.count = 1, .reusable = true}, SHIFT(1886), - [4373] = {.count = 1, .reusable = true}, SHIFT(1887), - [4375] = {.count = 1, .reusable = true}, SHIFT(1888), - [4377] = {.count = 1, .reusable = true}, SHIFT(1889), - [4379] = {.count = 1, .reusable = false}, SHIFT(1890), - [4381] = {.count = 1, .reusable = true}, SHIFT(1890), - [4383] = {.count = 1, .reusable = true}, SHIFT(1891), - [4385] = {.count = 1, .reusable = false}, SHIFT(1892), - [4387] = {.count = 1, .reusable = true}, SHIFT(1892), - [4389] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1039), - [4392] = {.count = 1, .reusable = true}, SHIFT(1893), - [4394] = {.count = 1, .reusable = false}, SHIFT(1894), - [4396] = {.count = 1, .reusable = true}, SHIFT(1895), - [4398] = {.count = 1, .reusable = true}, SHIFT(1897), - [4400] = {.count = 1, .reusable = true}, SHIFT(1898), - [4402] = {.count = 1, .reusable = true}, SHIFT(1899), - [4404] = {.count = 1, .reusable = true}, SHIFT(1900), - [4406] = {.count = 1, .reusable = false}, SHIFT(1902), - [4408] = {.count = 1, .reusable = true}, SHIFT(1902), - [4410] = {.count = 1, .reusable = true}, SHIFT(1901), - [4412] = {.count = 1, .reusable = true}, SHIFT(1903), - [4414] = {.count = 1, .reusable = false}, SHIFT(1905), - [4416] = {.count = 1, .reusable = true}, SHIFT(1905), - [4418] = {.count = 1, .reusable = true}, SHIFT(1904), - [4420] = {.count = 1, .reusable = false}, SHIFT(1907), - [4422] = {.count = 1, .reusable = true}, SHIFT(1907), - [4424] = {.count = 1, .reusable = true}, SHIFT(1906), - [4426] = {.count = 1, .reusable = true}, SHIFT(1908), - [4428] = {.count = 1, .reusable = true}, SHIFT(1909), - [4430] = {.count = 1, .reusable = true}, SHIFT(1910), - [4432] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), - [4434] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), - [4436] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 3), - [4438] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 6), - [4440] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 6), - [4442] = {.count = 1, .reusable = true}, SHIFT(1912), - [4444] = {.count = 1, .reusable = true}, SHIFT(1913), - [4446] = {.count = 1, .reusable = true}, SHIFT(1914), - [4448] = {.count = 1, .reusable = true}, SHIFT(1916), - [4450] = {.count = 1, .reusable = false}, SHIFT(1917), - [4452] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2, .alias_sequence_id = 1), - [4454] = {.count = 1, .reusable = true}, SHIFT(1918), - [4456] = {.count = 1, .reusable = false}, SHIFT(1919), - [4458] = {.count = 1, .reusable = false}, SHIFT(1920), - [4460] = {.count = 1, .reusable = false}, SHIFT(1921), - [4462] = {.count = 1, .reusable = true}, SHIFT(1922), - [4464] = {.count = 1, .reusable = false}, SHIFT(1923), - [4466] = {.count = 1, .reusable = false}, SHIFT(1924), - [4468] = {.count = 1, .reusable = false}, SHIFT(1925), - [4470] = {.count = 1, .reusable = true}, SHIFT(1926), - [4472] = {.count = 1, .reusable = false}, SHIFT(1927), - [4474] = {.count = 1, .reusable = true}, SHIFT(1928), - [4476] = {.count = 1, .reusable = true}, SHIFT(1929), - [4478] = {.count = 1, .reusable = true}, SHIFT(1930), - [4480] = {.count = 1, .reusable = true}, SHIFT(1931), - [4482] = {.count = 1, .reusable = true}, SHIFT(1932), - [4484] = {.count = 1, .reusable = false}, SHIFT(1933), - [4486] = {.count = 1, .reusable = true}, SHIFT(1941), - [4488] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2), - [4490] = {.count = 1, .reusable = true}, SHIFT(1944), - [4492] = {.count = 1, .reusable = true}, SHIFT(1948), - [4494] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), - [4496] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), - [4498] = {.count = 1, .reusable = true}, SHIFT(1949), - [4500] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1950), - [4503] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(86), - [4506] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(87), - [4509] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1951), - [4512] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(89), - [4515] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(90), - [4518] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(91), - [4521] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(92), - [4524] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), - [4526] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), - [4528] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), - [4530] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), - [4532] = {.count = 1, .reusable = true}, SHIFT(1954), - [4534] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6), - [4536] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6), - [4538] = {.count = 1, .reusable = true}, SHIFT(1956), - [4540] = {.count = 1, .reusable = true}, SHIFT(1957), - [4542] = {.count = 1, .reusable = true}, SHIFT(1958), - [4544] = {.count = 1, .reusable = true}, SHIFT(1959), - [4546] = {.count = 1, .reusable = false}, SHIFT(1960), - [4548] = {.count = 1, .reusable = true}, SHIFT(1960), - [4550] = {.count = 1, .reusable = true}, SHIFT(1961), - [4552] = {.count = 1, .reusable = false}, SHIFT(1962), - [4554] = {.count = 1, .reusable = true}, SHIFT(1962), - [4556] = {.count = 1, .reusable = true}, SHIFT(1963), - [4558] = {.count = 1, .reusable = false}, SHIFT(1964), - [4560] = {.count = 1, .reusable = true}, SHIFT(1964), - [4562] = {.count = 1, .reusable = true}, SHIFT(1965), - [4564] = {.count = 1, .reusable = true}, SHIFT(1966), - [4566] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 6), - [4568] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 6), - [4570] = {.count = 1, .reusable = true}, SHIFT(1968), - [4572] = {.count = 1, .reusable = true}, SHIFT(1969), - [4574] = {.count = 1, .reusable = true}, SHIFT(1971), - [4576] = {.count = 1, .reusable = true}, SHIFT(1972), - [4578] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1117), - [4581] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1118), - [4584] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1119), - [4587] = {.count = 1, .reusable = true}, SHIFT(1974), - [4589] = {.count = 1, .reusable = true}, SHIFT(1975), - [4591] = {.count = 1, .reusable = true}, SHIFT(1976), - [4593] = {.count = 1, .reusable = true}, SHIFT(1977), - [4595] = {.count = 1, .reusable = false}, SHIFT(1978), - [4597] = {.count = 1, .reusable = true}, SHIFT(1978), - [4599] = {.count = 1, .reusable = true}, SHIFT(1979), - [4601] = {.count = 1, .reusable = false}, SHIFT(1980), - [4603] = {.count = 1, .reusable = true}, SHIFT(1980), - [4605] = {.count = 1, .reusable = true}, SHIFT(1981), - [4607] = {.count = 1, .reusable = false}, SHIFT(1982), - [4609] = {.count = 1, .reusable = true}, SHIFT(1982), - [4611] = {.count = 1, .reusable = true}, SHIFT(1983), - [4613] = {.count = 1, .reusable = true}, SHIFT(1984), - [4615] = {.count = 1, .reusable = true}, SHIFT(1985), - [4617] = {.count = 1, .reusable = false}, SHIFT(1987), - [4619] = {.count = 1, .reusable = true}, SHIFT(1988), - [4621] = {.count = 1, .reusable = true}, SHIFT(1989), - [4623] = {.count = 1, .reusable = false}, SHIFT(1991), - [4625] = {.count = 1, .reusable = true}, SHIFT(1991), - [4627] = {.count = 1, .reusable = true}, SHIFT(1990), - [4629] = {.count = 1, .reusable = true}, SHIFT(1992), - [4631] = {.count = 1, .reusable = true}, SHIFT(1993), - [4633] = {.count = 1, .reusable = false}, SHIFT(1994), - [4635] = {.count = 1, .reusable = false}, SHIFT(1993), - [4637] = {.count = 1, .reusable = true}, SHIFT(1996), - [4639] = {.count = 1, .reusable = false}, SHIFT(1998), - [4641] = {.count = 1, .reusable = true}, SHIFT(1998), - [4643] = {.count = 1, .reusable = true}, SHIFT(1997), - [4645] = {.count = 1, .reusable = true}, SHIFT(1999), - [4647] = {.count = 1, .reusable = false}, SHIFT(2001), - [4649] = {.count = 1, .reusable = true}, SHIFT(2001), - [4651] = {.count = 1, .reusable = true}, SHIFT(2000), - [4653] = {.count = 1, .reusable = true}, SHIFT(2002), - [4655] = {.count = 1, .reusable = true}, SHIFT(2003), - [4657] = {.count = 1, .reusable = true}, SHIFT(2004), - [4659] = {.count = 1, .reusable = true}, SHIFT(2005), - [4661] = {.count = 1, .reusable = true}, SHIFT(2006), - [4663] = {.count = 1, .reusable = true}, SHIFT(2007), - [4665] = {.count = 1, .reusable = false}, SHIFT(2008), - [4667] = {.count = 1, .reusable = true}, SHIFT(2008), - [4669] = {.count = 1, .reusable = true}, SHIFT(2009), - [4671] = {.count = 1, .reusable = false}, SHIFT(2010), - [4673] = {.count = 1, .reusable = true}, SHIFT(2010), - [4675] = {.count = 1, .reusable = true}, SHIFT(2011), - [4677] = {.count = 1, .reusable = false}, SHIFT(2012), - [4679] = {.count = 1, .reusable = true}, SHIFT(2012), - [4681] = {.count = 1, .reusable = true}, SHIFT(2013), - [4683] = {.count = 1, .reusable = true}, SHIFT(2014), - [4685] = {.count = 1, .reusable = true}, SHIFT(2015), - [4687] = {.count = 1, .reusable = true}, SHIFT(2016), - [4689] = {.count = 1, .reusable = true}, SHIFT(2017), - [4691] = {.count = 1, .reusable = true}, SHIFT(2018), - [4693] = {.count = 1, .reusable = false}, SHIFT(2019), - [4695] = {.count = 1, .reusable = true}, SHIFT(2019), - [4697] = {.count = 1, .reusable = true}, SHIFT(2020), - [4699] = {.count = 1, .reusable = false}, SHIFT(2021), - [4701] = {.count = 1, .reusable = true}, SHIFT(2021), - [4703] = {.count = 1, .reusable = true}, SHIFT(2022), - [4705] = {.count = 1, .reusable = false}, SHIFT(2023), - [4707] = {.count = 1, .reusable = true}, SHIFT(2023), - [4709] = {.count = 1, .reusable = true}, SHIFT(2024), - [4711] = {.count = 1, .reusable = true}, SHIFT(2025), - [4713] = {.count = 1, .reusable = true}, SHIFT(2026), - [4715] = {.count = 1, .reusable = true}, SHIFT(2027), - [4717] = {.count = 1, .reusable = true}, SHIFT(2028), - [4719] = {.count = 1, .reusable = true}, SHIFT(2029), - [4721] = {.count = 1, .reusable = false}, SHIFT(2030), - [4723] = {.count = 1, .reusable = true}, SHIFT(2030), - [4725] = {.count = 1, .reusable = true}, SHIFT(2031), - [4727] = {.count = 1, .reusable = false}, SHIFT(2032), - [4729] = {.count = 1, .reusable = true}, SHIFT(2032), - [4731] = {.count = 1, .reusable = true}, SHIFT(2033), - [4733] = {.count = 1, .reusable = false}, SHIFT(2034), - [4735] = {.count = 1, .reusable = true}, SHIFT(2034), - [4737] = {.count = 1, .reusable = true}, SHIFT(2035), - [4739] = {.count = 1, .reusable = true}, SHIFT(2036), - [4741] = {.count = 1, .reusable = true}, SHIFT(2037), - [4743] = {.count = 1, .reusable = true}, SHIFT(2038), - [4745] = {.count = 1, .reusable = true}, SHIFT(2039), - [4747] = {.count = 1, .reusable = true}, SHIFT(2040), - [4749] = {.count = 1, .reusable = false}, SHIFT(2041), - [4751] = {.count = 1, .reusable = true}, SHIFT(2041), - [4753] = {.count = 1, .reusable = true}, SHIFT(2042), - [4755] = {.count = 1, .reusable = false}, SHIFT(2043), - [4757] = {.count = 1, .reusable = true}, SHIFT(2043), - [4759] = {.count = 1, .reusable = true}, SHIFT(2044), - [4761] = {.count = 1, .reusable = false}, SHIFT(2045), - [4763] = {.count = 1, .reusable = true}, SHIFT(2045), - [4765] = {.count = 1, .reusable = true}, SHIFT(2046), - [4767] = {.count = 1, .reusable = true}, SHIFT(2047), - [4769] = {.count = 1, .reusable = true}, SHIFT(2048), - [4771] = {.count = 1, .reusable = true}, SHIFT(2049), - [4773] = {.count = 1, .reusable = true}, SHIFT(2050), - [4775] = {.count = 1, .reusable = true}, SHIFT(2051), - [4777] = {.count = 1, .reusable = false}, SHIFT(2052), - [4779] = {.count = 1, .reusable = true}, SHIFT(2052), - [4781] = {.count = 1, .reusable = true}, SHIFT(2053), - [4783] = {.count = 1, .reusable = false}, SHIFT(2054), - [4785] = {.count = 1, .reusable = true}, SHIFT(2054), - [4787] = {.count = 1, .reusable = true}, SHIFT(2055), - [4789] = {.count = 1, .reusable = false}, SHIFT(2056), - [4791] = {.count = 1, .reusable = true}, SHIFT(2056), - [4793] = {.count = 1, .reusable = true}, SHIFT(2057), - [4795] = {.count = 1, .reusable = true}, SHIFT(2058), - [4797] = {.count = 1, .reusable = true}, SHIFT(2059), - [4799] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), - [4801] = {.count = 1, .reusable = true}, SHIFT(2060), - [4803] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5), - [4805] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1264), - [4808] = {.count = 1, .reusable = true}, SHIFT(2061), - [4810] = {.count = 1, .reusable = false}, SHIFT(2062), - [4812] = {.count = 1, .reusable = true}, SHIFT(2063), - [4814] = {.count = 1, .reusable = true}, SHIFT(2065), - [4816] = {.count = 1, .reusable = true}, SHIFT(2066), - [4818] = {.count = 1, .reusable = true}, SHIFT(2067), - [4820] = {.count = 1, .reusable = true}, SHIFT(2068), - [4822] = {.count = 1, .reusable = false}, SHIFT(2070), - [4824] = {.count = 1, .reusable = true}, SHIFT(2070), - [4826] = {.count = 1, .reusable = true}, SHIFT(2069), - [4828] = {.count = 1, .reusable = true}, SHIFT(2071), - [4830] = {.count = 1, .reusable = false}, SHIFT(2073), - [4832] = {.count = 1, .reusable = true}, SHIFT(2073), - [4834] = {.count = 1, .reusable = true}, SHIFT(2072), - [4836] = {.count = 1, .reusable = false}, SHIFT(2075), - [4838] = {.count = 1, .reusable = true}, SHIFT(2075), - [4840] = {.count = 1, .reusable = true}, SHIFT(2074), - [4842] = {.count = 1, .reusable = true}, SHIFT(2076), - [4844] = {.count = 1, .reusable = true}, SHIFT(2077), - [4846] = {.count = 1, .reusable = true}, SHIFT(2078), - [4848] = {.count = 1, .reusable = true}, SHIFT(2079), - [4850] = {.count = 1, .reusable = true}, SHIFT(2080), - [4852] = {.count = 1, .reusable = true}, SHIFT(2081), - [4854] = {.count = 1, .reusable = false}, SHIFT(2082), - [4856] = {.count = 1, .reusable = true}, SHIFT(2082), - [4858] = {.count = 1, .reusable = false}, SHIFT(2083), - [4860] = {.count = 1, .reusable = true}, SHIFT(2084), - [4862] = {.count = 1, .reusable = true}, SHIFT(2086), - [4864] = {.count = 1, .reusable = true}, SHIFT(2087), - [4866] = {.count = 1, .reusable = true}, SHIFT(2088), - [4868] = {.count = 1, .reusable = true}, SHIFT(2089), - [4870] = {.count = 1, .reusable = true}, SHIFT(2090), - [4872] = {.count = 1, .reusable = true}, SHIFT(2091), - [4874] = {.count = 1, .reusable = false}, SHIFT(2092), - [4876] = {.count = 1, .reusable = true}, SHIFT(2092), - [4878] = {.count = 1, .reusable = true}, SHIFT(2093), - [4880] = {.count = 1, .reusable = false}, SHIFT(2094), - [4882] = {.count = 1, .reusable = true}, SHIFT(2094), - [4884] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), - [4886] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), - [4888] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), - [4890] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), - [4892] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6), - [4894] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6), - [4896] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), - [4898] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), - [4900] = {.count = 1, .reusable = true}, SHIFT(2095), - [4902] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), - [4904] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), - [4906] = {.count = 1, .reusable = true}, SHIFT(2096), - [4908] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), - [4910] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), - [4912] = {.count = 1, .reusable = true}, SHIFT(2097), - [4914] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), - [4916] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), - [4918] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), - [4920] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), - [4922] = {.count = 1, .reusable = false}, SHIFT(2099), - [4924] = {.count = 1, .reusable = true}, SHIFT(2100), - [4926] = {.count = 1, .reusable = true}, SHIFT(2102), - [4928] = {.count = 1, .reusable = false}, SHIFT(2104), - [4930] = {.count = 1, .reusable = true}, SHIFT(2106), - [4932] = {.count = 1, .reusable = false}, SHIFT(2108), - [4934] = {.count = 1, .reusable = true}, SHIFT(2111), - [4936] = {.count = 1, .reusable = true}, SHIFT(2112), - [4938] = {.count = 1, .reusable = true}, SHIFT(2115), - [4940] = {.count = 1, .reusable = true}, SHIFT(2116), - [4942] = {.count = 1, .reusable = true}, SHIFT(2118), - [4944] = {.count = 1, .reusable = false}, SHIFT(2120), - [4946] = {.count = 1, .reusable = true}, SHIFT(2122), - [4948] = {.count = 1, .reusable = true}, SHIFT(2123), - [4950] = {.count = 1, .reusable = false}, SHIFT(2124), - [4952] = {.count = 1, .reusable = false}, SHIFT(2122), - [4954] = {.count = 1, .reusable = true}, SHIFT(2125), - [4956] = {.count = 1, .reusable = true}, SHIFT(2126), - [4958] = {.count = 1, .reusable = true}, SHIFT(2127), - [4960] = {.count = 1, .reusable = false}, SHIFT(2128), - [4962] = {.count = 1, .reusable = false}, SHIFT(2126), - [4964] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1341), - [4967] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1342), - [4970] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1342), - [4973] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1343), - [4976] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1343), - [4979] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1344), - [4982] = {.count = 1, .reusable = true}, SHIFT(2136), - [4984] = {.count = 1, .reusable = true}, SHIFT(2137), - [4986] = {.count = 1, .reusable = true}, SHIFT(2138), - [4988] = {.count = 1, .reusable = true}, SHIFT(2139), - [4990] = {.count = 1, .reusable = false}, SHIFT(2140), - [4992] = {.count = 1, .reusable = true}, SHIFT(2140), - [4994] = {.count = 1, .reusable = false}, SHIFT(2141), - [4996] = {.count = 1, .reusable = true}, SHIFT(2142), - [4998] = {.count = 1, .reusable = true}, SHIFT(2144), - [5000] = {.count = 1, .reusable = true}, SHIFT(2145), - [5002] = {.count = 1, .reusable = true}, SHIFT(2146), - [5004] = {.count = 1, .reusable = true}, SHIFT(2147), - [5006] = {.count = 1, .reusable = true}, SHIFT(2148), - [5008] = {.count = 1, .reusable = true}, SHIFT(2149), - [5010] = {.count = 1, .reusable = false}, SHIFT(2150), - [5012] = {.count = 1, .reusable = true}, SHIFT(2150), - [5014] = {.count = 1, .reusable = true}, SHIFT(2151), - [5016] = {.count = 1, .reusable = false}, SHIFT(2152), - [5018] = {.count = 1, .reusable = true}, SHIFT(2152), - [5020] = {.count = 1, .reusable = true}, SHIFT(2153), - [5022] = {.count = 1, .reusable = true}, SHIFT(2154), - [5024] = {.count = 1, .reusable = true}, SHIFT(2155), - [5026] = {.count = 1, .reusable = false}, SHIFT(2156), - [5028] = {.count = 1, .reusable = true}, SHIFT(2156), - [5030] = {.count = 1, .reusable = false}, SHIFT(2157), - [5032] = {.count = 1, .reusable = true}, SHIFT(2158), - [5034] = {.count = 1, .reusable = true}, SHIFT(2160), - [5036] = {.count = 1, .reusable = true}, SHIFT(2161), - [5038] = {.count = 1, .reusable = true}, SHIFT(2162), - [5040] = {.count = 1, .reusable = true}, SHIFT(2163), - [5042] = {.count = 1, .reusable = true}, SHIFT(2164), - [5044] = {.count = 1, .reusable = true}, SHIFT(2165), - [5046] = {.count = 1, .reusable = false}, SHIFT(2166), - [5048] = {.count = 1, .reusable = true}, SHIFT(2166), - [5050] = {.count = 1, .reusable = true}, SHIFT(2167), - [5052] = {.count = 1, .reusable = false}, SHIFT(2168), - [5054] = {.count = 1, .reusable = true}, SHIFT(2168), - [5056] = {.count = 1, .reusable = true}, SHIFT(2169), - [5058] = {.count = 1, .reusable = true}, SHIFT(2170), - [5060] = {.count = 1, .reusable = true}, SHIFT(2171), - [5062] = {.count = 1, .reusable = true}, SHIFT(2172), - [5064] = {.count = 1, .reusable = false}, SHIFT(2173), - [5066] = {.count = 1, .reusable = true}, SHIFT(2173), - [5068] = {.count = 1, .reusable = true}, SHIFT(2174), - [5070] = {.count = 1, .reusable = false}, SHIFT(2175), - [5072] = {.count = 1, .reusable = true}, SHIFT(2175), - [5074] = {.count = 1, .reusable = true}, SHIFT(2176), - [5076] = {.count = 1, .reusable = false}, SHIFT(2177), - [5078] = {.count = 1, .reusable = true}, SHIFT(2177), - [5080] = {.count = 1, .reusable = true}, SHIFT(2178), - [5082] = {.count = 1, .reusable = true}, SHIFT(2179), - [5084] = {.count = 1, .reusable = true}, SHIFT(2180), - [5086] = {.count = 1, .reusable = true}, SHIFT(2181), - [5088] = {.count = 1, .reusable = true}, SHIFT(2183), - [5090] = {.count = 1, .reusable = true}, SHIFT(2184), - [5092] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1419), - [5095] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1420), - [5098] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1420), - [5101] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1421), - [5104] = {.count = 1, .reusable = true}, SHIFT(2186), - [5106] = {.count = 1, .reusable = true}, SHIFT(2187), - [5108] = {.count = 1, .reusable = true}, SHIFT(2188), - [5110] = {.count = 1, .reusable = false}, SHIFT(2189), - [5112] = {.count = 1, .reusable = true}, SHIFT(2189), - [5114] = {.count = 1, .reusable = false}, SHIFT(2190), - [5116] = {.count = 1, .reusable = true}, SHIFT(2191), - [5118] = {.count = 1, .reusable = true}, SHIFT(2193), - [5120] = {.count = 1, .reusable = true}, SHIFT(2194), - [5122] = {.count = 1, .reusable = true}, SHIFT(2195), - [5124] = {.count = 1, .reusable = true}, SHIFT(2196), - [5126] = {.count = 1, .reusable = true}, SHIFT(2197), - [5128] = {.count = 1, .reusable = true}, SHIFT(2198), - [5130] = {.count = 1, .reusable = false}, SHIFT(2199), - [5132] = {.count = 1, .reusable = true}, SHIFT(2199), - [5134] = {.count = 1, .reusable = true}, SHIFT(2200), - [5136] = {.count = 1, .reusable = false}, SHIFT(2201), - [5138] = {.count = 1, .reusable = true}, SHIFT(2201), - [5140] = {.count = 1, .reusable = true}, SHIFT(2202), - [5142] = {.count = 1, .reusable = true}, SHIFT(2203), - [5144] = {.count = 1, .reusable = true}, SHIFT(2204), - [5146] = {.count = 1, .reusable = false}, SHIFT(2205), - [5148] = {.count = 1, .reusable = true}, SHIFT(2205), - [5150] = {.count = 1, .reusable = false}, SHIFT(2206), - [5152] = {.count = 1, .reusable = true}, SHIFT(2207), - [5154] = {.count = 1, .reusable = true}, SHIFT(2209), - [5156] = {.count = 1, .reusable = true}, SHIFT(2210), - [5158] = {.count = 1, .reusable = true}, SHIFT(2211), - [5160] = {.count = 1, .reusable = true}, SHIFT(2212), - [5162] = {.count = 1, .reusable = true}, SHIFT(2213), - [5164] = {.count = 1, .reusable = true}, SHIFT(2214), - [5166] = {.count = 1, .reusable = false}, SHIFT(2215), - [5168] = {.count = 1, .reusable = true}, SHIFT(2215), - [5170] = {.count = 1, .reusable = true}, SHIFT(2216), - [5172] = {.count = 1, .reusable = false}, SHIFT(2217), - [5174] = {.count = 1, .reusable = true}, SHIFT(2217), - [5176] = {.count = 1, .reusable = true}, SHIFT(2218), - [5178] = {.count = 1, .reusable = true}, SHIFT(2219), - [5180] = {.count = 1, .reusable = true}, SHIFT(2220), - [5182] = {.count = 1, .reusable = true}, SHIFT(2221), - [5184] = {.count = 1, .reusable = false}, SHIFT(2222), - [5186] = {.count = 1, .reusable = true}, SHIFT(2222), - [5188] = {.count = 1, .reusable = true}, SHIFT(2223), - [5190] = {.count = 1, .reusable = false}, SHIFT(2224), - [5192] = {.count = 1, .reusable = true}, SHIFT(2224), - [5194] = {.count = 1, .reusable = true}, SHIFT(2225), - [5196] = {.count = 1, .reusable = false}, SHIFT(2226), - [5198] = {.count = 1, .reusable = true}, SHIFT(2226), - [5200] = {.count = 1, .reusable = true}, SHIFT(2227), - [5202] = {.count = 1, .reusable = true}, SHIFT(2228), - [5204] = {.count = 1, .reusable = true}, SHIFT(2229), - [5206] = {.count = 1, .reusable = true}, SHIFT(2230), - [5208] = {.count = 1, .reusable = true}, SHIFT(2231), - [5210] = {.count = 1, .reusable = false}, SHIFT(2232), - [5212] = {.count = 1, .reusable = true}, SHIFT(2232), - [5214] = {.count = 1, .reusable = false}, SHIFT(2233), - [5216] = {.count = 1, .reusable = true}, SHIFT(2234), - [5218] = {.count = 1, .reusable = true}, SHIFT(2236), - [5220] = {.count = 1, .reusable = true}, SHIFT(2237), - [5222] = {.count = 1, .reusable = true}, SHIFT(2238), - [5224] = {.count = 1, .reusable = true}, SHIFT(2239), - [5226] = {.count = 1, .reusable = true}, SHIFT(2240), - [5228] = {.count = 1, .reusable = true}, SHIFT(2241), - [5230] = {.count = 1, .reusable = false}, SHIFT(2242), - [5232] = {.count = 1, .reusable = true}, SHIFT(2242), - [5234] = {.count = 1, .reusable = true}, SHIFT(2243), - [5236] = {.count = 1, .reusable = false}, SHIFT(2244), - [5238] = {.count = 1, .reusable = true}, SHIFT(2244), - [5240] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 4), - [5242] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), - [5244] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), - [5246] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 3), - [5248] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), - [5250] = {.count = 1, .reusable = true}, SHIFT(2245), - [5252] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), - [5254] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [5256] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [5258] = {.count = 1, .reusable = true}, SHIFT(2247), - [5260] = {.count = 1, .reusable = true}, SHIFT(2250), - [5262] = {.count = 1, .reusable = false}, SHIFT(2251), - [5264] = {.count = 1, .reusable = false}, SHIFT(2252), - [5266] = {.count = 1, .reusable = false}, SHIFT(2253), - [5268] = {.count = 1, .reusable = false}, SHIFT(2254), - [5270] = {.count = 1, .reusable = false}, SHIFT(2255), - [5272] = {.count = 1, .reusable = false}, SHIFT(2256), - [5274] = {.count = 1, .reusable = false}, SHIFT(2257), - [5276] = {.count = 1, .reusable = false}, SHIFT(2258), - [5278] = {.count = 1, .reusable = false}, SHIFT(2259), - [5280] = {.count = 1, .reusable = false}, SHIFT(2262), - [5282] = {.count = 1, .reusable = false}, SHIFT(2263), - [5284] = {.count = 1, .reusable = false}, SHIFT(2264), - [5286] = {.count = 1, .reusable = false}, SHIFT(2265), - [5288] = {.count = 1, .reusable = false}, SHIFT(2266), - [5290] = {.count = 1, .reusable = false}, SHIFT(2267), - [5292] = {.count = 1, .reusable = false}, SHIFT(2268), - [5294] = {.count = 1, .reusable = false}, SHIFT(2269), - [5296] = {.count = 1, .reusable = false}, SHIFT(2270), - [5298] = {.count = 1, .reusable = true}, SHIFT(2272), - [5300] = {.count = 1, .reusable = false}, SHIFT(2274), - [5302] = {.count = 1, .reusable = true}, SHIFT(2276), - [5304] = {.count = 1, .reusable = true}, SHIFT(2277), - [5306] = {.count = 1, .reusable = false}, SHIFT(2278), - [5308] = {.count = 1, .reusable = false}, SHIFT(2276), - [5310] = {.count = 1, .reusable = true}, SHIFT(2279), - [5312] = {.count = 1, .reusable = true}, SHIFT(2280), - [5314] = {.count = 1, .reusable = true}, SHIFT(2281), - [5316] = {.count = 1, .reusable = false}, SHIFT(2282), - [5318] = {.count = 1, .reusable = false}, SHIFT(2280), - [5320] = {.count = 1, .reusable = false}, SHIFT(2290), - [5322] = {.count = 1, .reusable = false}, SHIFT(2291), - [5324] = {.count = 1, .reusable = false}, SHIFT(2292), - [5326] = {.count = 1, .reusable = false}, SHIFT(2293), - [5328] = {.count = 1, .reusable = false}, SHIFT(2294), - [5330] = {.count = 1, .reusable = true}, SHIFT(2294), - [5332] = {.count = 1, .reusable = true}, SHIFT(2295), - [5334] = {.count = 1, .reusable = false}, SHIFT(2296), - [5336] = {.count = 1, .reusable = false}, SHIFT(2297), - [5338] = {.count = 1, .reusable = false}, SHIFT(2298), - [5340] = {.count = 1, .reusable = false}, SHIFT(2299), - [5342] = {.count = 1, .reusable = false}, SHIFT(1926), - [5344] = {.count = 1, .reusable = false}, SHIFT(2300), - [5346] = {.count = 1, .reusable = false}, SHIFT(1929), - [5348] = {.count = 1, .reusable = false}, SHIFT(1930), - [5350] = {.count = 1, .reusable = false}, SHIFT(1931), - [5352] = {.count = 1, .reusable = false}, SHIFT(1932), - [5354] = {.count = 1, .reusable = true}, SHIFT(2303), - [5356] = {.count = 1, .reusable = true}, SHIFT(1925), - [5358] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1514), - [5361] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3), - [5363] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3), - [5365] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3), - [5367] = {.count = 1, .reusable = false}, SHIFT(2309), - [5369] = {.count = 1, .reusable = true}, SHIFT(2310), - [5371] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), - [5373] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), - [5375] = {.count = 1, .reusable = true}, SHIFT(2314), - [5377] = {.count = 1, .reusable = true}, SHIFT(2316), - [5379] = {.count = 1, .reusable = true}, SHIFT(2318), - [5381] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), - [5383] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), - [5385] = {.count = 1, .reusable = true}, SHIFT(2319), - [5387] = {.count = 1, .reusable = true}, SHIFT(2320), - [5389] = {.count = 1, .reusable = true}, SHIFT(2321), - [5391] = {.count = 1, .reusable = true}, SHIFT(2322), - [5393] = {.count = 1, .reusable = true}, SHIFT(2325), - [5395] = {.count = 1, .reusable = true}, SHIFT(2326), - [5397] = {.count = 1, .reusable = true}, SHIFT(2327), - [5399] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1582), - [5402] = {.count = 1, .reusable = true}, SHIFT(2328), - [5404] = {.count = 1, .reusable = false}, SHIFT(2329), - [5406] = {.count = 1, .reusable = true}, SHIFT(2330), - [5408] = {.count = 1, .reusable = true}, SHIFT(2332), - [5410] = {.count = 1, .reusable = true}, SHIFT(2333), - [5412] = {.count = 1, .reusable = true}, SHIFT(2334), - [5414] = {.count = 1, .reusable = true}, SHIFT(2335), - [5416] = {.count = 1, .reusable = false}, SHIFT(2337), - [5418] = {.count = 1, .reusable = true}, SHIFT(2337), - [5420] = {.count = 1, .reusable = true}, SHIFT(2336), - [5422] = {.count = 1, .reusable = true}, SHIFT(2338), - [5424] = {.count = 1, .reusable = false}, SHIFT(2340), - [5426] = {.count = 1, .reusable = true}, SHIFT(2340), - [5428] = {.count = 1, .reusable = true}, SHIFT(2339), - [5430] = {.count = 1, .reusable = false}, SHIFT(2342), - [5432] = {.count = 1, .reusable = true}, SHIFT(2342), - [5434] = {.count = 1, .reusable = true}, SHIFT(2341), - [5436] = {.count = 1, .reusable = true}, SHIFT(2343), - [5438] = {.count = 1, .reusable = true}, SHIFT(2344), - [5440] = {.count = 1, .reusable = true}, SHIFT(2345), - [5442] = {.count = 1, .reusable = true}, SHIFT(2346), - [5444] = {.count = 1, .reusable = true}, SHIFT(2347), - [5446] = {.count = 1, .reusable = true}, SHIFT(2348), - [5448] = {.count = 1, .reusable = true}, SHIFT(2349), - [5450] = {.count = 1, .reusable = true}, SHIFT(2350), - [5452] = {.count = 1, .reusable = true}, SHIFT(2351), - [5454] = {.count = 1, .reusable = true}, SHIFT(2352), - [5456] = {.count = 1, .reusable = true}, SHIFT(2353), - [5458] = {.count = 1, .reusable = true}, SHIFT(2354), - [5460] = {.count = 1, .reusable = true}, SHIFT(2355), - [5462] = {.count = 1, .reusable = true}, SHIFT(2356), - [5464] = {.count = 1, .reusable = true}, SHIFT(2357), - [5466] = {.count = 1, .reusable = true}, SHIFT(2358), - [5468] = {.count = 1, .reusable = true}, SHIFT(2359), - [5470] = {.count = 1, .reusable = true}, SHIFT(2360), - [5472] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), - [5474] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6), - [5476] = {.count = 1, .reusable = true}, SHIFT(2361), - [5478] = {.count = 1, .reusable = true}, SHIFT(2362), - [5480] = {.count = 1, .reusable = true}, SHIFT(2363), - [5482] = {.count = 1, .reusable = false}, SHIFT(2364), - [5484] = {.count = 1, .reusable = true}, SHIFT(2364), - [5486] = {.count = 1, .reusable = false}, SHIFT(2365), - [5488] = {.count = 1, .reusable = true}, SHIFT(2366), - [5490] = {.count = 1, .reusable = true}, SHIFT(2368), - [5492] = {.count = 1, .reusable = true}, SHIFT(2369), - [5494] = {.count = 1, .reusable = true}, SHIFT(2370), - [5496] = {.count = 1, .reusable = true}, SHIFT(2371), - [5498] = {.count = 1, .reusable = true}, SHIFT(2372), - [5500] = {.count = 1, .reusable = true}, SHIFT(2373), - [5502] = {.count = 1, .reusable = false}, SHIFT(2374), - [5504] = {.count = 1, .reusable = true}, SHIFT(2374), - [5506] = {.count = 1, .reusable = true}, SHIFT(2375), - [5508] = {.count = 1, .reusable = false}, SHIFT(2376), - [5510] = {.count = 1, .reusable = true}, SHIFT(2376), - [5512] = {.count = 1, .reusable = true}, SHIFT(2377), - [5514] = {.count = 1, .reusable = true}, SHIFT(2378), - [5516] = {.count = 1, .reusable = true}, SHIFT(2379), - [5518] = {.count = 1, .reusable = true}, SHIFT(2380), - [5520] = {.count = 1, .reusable = false}, SHIFT(2381), - [5522] = {.count = 1, .reusable = true}, SHIFT(2381), - [5524] = {.count = 1, .reusable = true}, SHIFT(2382), - [5526] = {.count = 1, .reusable = false}, SHIFT(2383), - [5528] = {.count = 1, .reusable = true}, SHIFT(2383), - [5530] = {.count = 1, .reusable = true}, SHIFT(2384), - [5532] = {.count = 1, .reusable = false}, SHIFT(2385), - [5534] = {.count = 1, .reusable = true}, SHIFT(2385), - [5536] = {.count = 1, .reusable = true}, SHIFT(2386), - [5538] = {.count = 1, .reusable = true}, SHIFT(2387), - [5540] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), - [5542] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), - [5544] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), - [5546] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), - [5548] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), - [5550] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), - [5552] = {.count = 1, .reusable = true}, SHIFT(2388), - [5554] = {.count = 1, .reusable = true}, SHIFT(2389), - [5556] = {.count = 1, .reusable = true}, SHIFT(2391), - [5558] = {.count = 1, .reusable = true}, SHIFT(2394), - [5560] = {.count = 1, .reusable = false}, SHIFT(2396), - [5562] = {.count = 1, .reusable = true}, SHIFT(2397), - [5564] = {.count = 1, .reusable = true}, SHIFT(2398), - [5566] = {.count = 1, .reusable = false}, SHIFT(2400), - [5568] = {.count = 1, .reusable = true}, SHIFT(2400), - [5570] = {.count = 1, .reusable = true}, SHIFT(2399), - [5572] = {.count = 1, .reusable = true}, SHIFT(2401), - [5574] = {.count = 1, .reusable = true}, SHIFT(2402), - [5576] = {.count = 1, .reusable = false}, SHIFT(2403), - [5578] = {.count = 1, .reusable = false}, SHIFT(2402), - [5580] = {.count = 1, .reusable = true}, SHIFT(2405), - [5582] = {.count = 1, .reusable = false}, SHIFT(2407), - [5584] = {.count = 1, .reusable = true}, SHIFT(2407), - [5586] = {.count = 1, .reusable = true}, SHIFT(2406), - [5588] = {.count = 1, .reusable = true}, SHIFT(2408), - [5590] = {.count = 1, .reusable = false}, SHIFT(2410), - [5592] = {.count = 1, .reusable = true}, SHIFT(2410), - [5594] = {.count = 1, .reusable = true}, SHIFT(2409), - [5596] = {.count = 1, .reusable = true}, SHIFT(2411), - [5598] = {.count = 1, .reusable = true}, SHIFT(2412), - [5600] = {.count = 1, .reusable = true}, SHIFT(2413), - [5602] = {.count = 1, .reusable = true}, SHIFT(2414), - [5604] = {.count = 1, .reusable = true}, SHIFT(2415), - [5606] = {.count = 1, .reusable = true}, SHIFT(2416), - [5608] = {.count = 1, .reusable = false}, SHIFT(2417), - [5610] = {.count = 1, .reusable = true}, SHIFT(2417), - [5612] = {.count = 1, .reusable = true}, SHIFT(2418), - [5614] = {.count = 1, .reusable = false}, SHIFT(2419), - [5616] = {.count = 1, .reusable = true}, SHIFT(2419), - [5618] = {.count = 1, .reusable = true}, SHIFT(2420), - [5620] = {.count = 1, .reusable = false}, SHIFT(2421), - [5622] = {.count = 1, .reusable = true}, SHIFT(2421), - [5624] = {.count = 1, .reusable = true}, SHIFT(2422), - [5626] = {.count = 1, .reusable = true}, SHIFT(2423), - [5628] = {.count = 1, .reusable = true}, SHIFT(2424), - [5630] = {.count = 1, .reusable = true}, SHIFT(2425), - [5632] = {.count = 1, .reusable = true}, SHIFT(2426), - [5634] = {.count = 1, .reusable = true}, SHIFT(2427), - [5636] = {.count = 1, .reusable = false}, SHIFT(2428), - [5638] = {.count = 1, .reusable = true}, SHIFT(2428), - [5640] = {.count = 1, .reusable = true}, SHIFT(2429), - [5642] = {.count = 1, .reusable = false}, SHIFT(2430), - [5644] = {.count = 1, .reusable = true}, SHIFT(2430), - [5646] = {.count = 1, .reusable = true}, SHIFT(2431), - [5648] = {.count = 1, .reusable = false}, SHIFT(2432), - [5650] = {.count = 1, .reusable = true}, SHIFT(2432), - [5652] = {.count = 1, .reusable = true}, SHIFT(2433), - [5654] = {.count = 1, .reusable = true}, SHIFT(2434), - [5656] = {.count = 1, .reusable = true}, SHIFT(2435), - [5658] = {.count = 1, .reusable = true}, SHIFT(2436), - [5660] = {.count = 1, .reusable = true}, SHIFT(2437), - [5662] = {.count = 1, .reusable = true}, SHIFT(2440), - [5664] = {.count = 1, .reusable = true}, SHIFT(2441), - [5666] = {.count = 1, .reusable = true}, SHIFT(2442), - [5668] = {.count = 1, .reusable = true}, SHIFT(2443), - [5670] = {.count = 1, .reusable = false}, SHIFT(2444), - [5672] = {.count = 1, .reusable = true}, SHIFT(2444), - [5674] = {.count = 1, .reusable = true}, SHIFT(2445), - [5676] = {.count = 1, .reusable = false}, SHIFT(2446), - [5678] = {.count = 1, .reusable = true}, SHIFT(2446), - [5680] = {.count = 1, .reusable = true}, SHIFT(2447), - [5682] = {.count = 1, .reusable = false}, SHIFT(2448), - [5684] = {.count = 1, .reusable = true}, SHIFT(2448), - [5686] = {.count = 1, .reusable = true}, SHIFT(2449), - [5688] = {.count = 1, .reusable = true}, SHIFT(2450), - [5690] = {.count = 1, .reusable = true}, SHIFT(2451), - [5692] = {.count = 1, .reusable = true}, SHIFT(2452), - [5694] = {.count = 1, .reusable = true}, SHIFT(2453), - [5696] = {.count = 1, .reusable = true}, SHIFT(2454), - [5698] = {.count = 1, .reusable = false}, SHIFT(2455), - [5700] = {.count = 1, .reusable = true}, SHIFT(2455), - [5702] = {.count = 1, .reusable = true}, SHIFT(2456), - [5704] = {.count = 1, .reusable = false}, SHIFT(2457), - [5706] = {.count = 1, .reusable = true}, SHIFT(2457), - [5708] = {.count = 1, .reusable = true}, SHIFT(2458), - [5710] = {.count = 1, .reusable = false}, SHIFT(2459), - [5712] = {.count = 1, .reusable = true}, SHIFT(2459), - [5714] = {.count = 1, .reusable = true}, SHIFT(2460), - [5716] = {.count = 1, .reusable = true}, SHIFT(2461), - [5718] = {.count = 1, .reusable = true}, SHIFT(2462), - [5720] = {.count = 1, .reusable = true}, SHIFT(2463), - [5722] = {.count = 1, .reusable = true}, SHIFT(2464), - [5724] = {.count = 1, .reusable = true}, SHIFT(2465), - [5726] = {.count = 1, .reusable = true}, SHIFT(2466), - [5728] = {.count = 1, .reusable = true}, SHIFT(2467), - [5730] = {.count = 1, .reusable = true}, SHIFT(2468), - [5732] = {.count = 1, .reusable = false}, SHIFT(2469), - [5734] = {.count = 1, .reusable = true}, SHIFT(2469), - [5736] = {.count = 1, .reusable = true}, SHIFT(2470), - [5738] = {.count = 1, .reusable = false}, SHIFT(2471), - [5740] = {.count = 1, .reusable = true}, SHIFT(2471), - [5742] = {.count = 1, .reusable = true}, SHIFT(2472), - [5744] = {.count = 1, .reusable = false}, SHIFT(2473), - [5746] = {.count = 1, .reusable = true}, SHIFT(2473), - [5748] = {.count = 1, .reusable = true}, SHIFT(2474), - [5750] = {.count = 1, .reusable = true}, SHIFT(2475), - [5752] = {.count = 1, .reusable = true}, SHIFT(2476), - [5754] = {.count = 1, .reusable = true}, SHIFT(2477), - [5756] = {.count = 1, .reusable = true}, SHIFT(2478), - [5758] = {.count = 1, .reusable = true}, SHIFT(2479), - [5760] = {.count = 1, .reusable = false}, SHIFT(2480), - [5762] = {.count = 1, .reusable = true}, SHIFT(2481), - [5764] = {.count = 1, .reusable = true}, SHIFT(2482), - [5766] = {.count = 1, .reusable = true}, SHIFT(2483), - [5768] = {.count = 1, .reusable = true}, SHIFT(2484), - [5770] = {.count = 1, .reusable = true}, SHIFT(2485), - [5772] = {.count = 1, .reusable = true}, SHIFT(2487), - [5774] = {.count = 1, .reusable = true}, SHIFT(2489), - [5776] = {.count = 1, .reusable = true}, SHIFT(2490), - [5778] = {.count = 1, .reusable = true}, SHIFT(2491), - [5780] = {.count = 1, .reusable = false}, SHIFT(2493), - [5782] = {.count = 1, .reusable = true}, SHIFT(2252), - [5784] = {.count = 1, .reusable = true}, SHIFT(2495), - [5786] = {.count = 1, .reusable = true}, SHIFT(2496), - [5788] = {.count = 1, .reusable = false}, SHIFT(2497), - [5790] = {.count = 1, .reusable = false}, SHIFT(2495), - [5792] = {.count = 1, .reusable = true}, SHIFT(2498), - [5794] = {.count = 1, .reusable = true}, SHIFT(2499), - [5796] = {.count = 1, .reusable = true}, SHIFT(2500), - [5798] = {.count = 1, .reusable = false}, SHIFT(2501), - [5800] = {.count = 1, .reusable = false}, SHIFT(2499), - [5802] = {.count = 1, .reusable = true}, SHIFT(2510), - [5804] = {.count = 1, .reusable = false}, SHIFT(2512), - [5806] = {.count = 1, .reusable = true}, SHIFT(2263), - [5808] = {.count = 1, .reusable = true}, SHIFT(2514), - [5810] = {.count = 1, .reusable = true}, SHIFT(2515), - [5812] = {.count = 1, .reusable = false}, SHIFT(2516), - [5814] = {.count = 1, .reusable = false}, SHIFT(2514), - [5816] = {.count = 1, .reusable = true}, SHIFT(2517), - [5818] = {.count = 1, .reusable = true}, SHIFT(2518), - [5820] = {.count = 1, .reusable = true}, SHIFT(2519), - [5822] = {.count = 1, .reusable = false}, SHIFT(2520), - [5824] = {.count = 1, .reusable = false}, SHIFT(2518), - [5826] = {.count = 1, .reusable = true}, SHIFT(2529), - [5828] = {.count = 1, .reusable = false}, SHIFT(2531), - [5830] = {.count = 1, .reusable = true}, SHIFT(2532), - [5832] = {.count = 1, .reusable = true}, SHIFT(2533), - [5834] = {.count = 1, .reusable = false}, SHIFT(2535), - [5836] = {.count = 1, .reusable = true}, SHIFT(2535), - [5838] = {.count = 1, .reusable = true}, SHIFT(2534), - [5840] = {.count = 1, .reusable = true}, SHIFT(2536), - [5842] = {.count = 1, .reusable = true}, SHIFT(2537), - [5844] = {.count = 1, .reusable = false}, SHIFT(2538), - [5846] = {.count = 1, .reusable = false}, SHIFT(2537), - [5848] = {.count = 1, .reusable = true}, SHIFT(2540), - [5850] = {.count = 1, .reusable = false}, SHIFT(2542), - [5852] = {.count = 1, .reusable = true}, SHIFT(2542), - [5854] = {.count = 1, .reusable = true}, SHIFT(2541), - [5856] = {.count = 1, .reusable = true}, SHIFT(2543), - [5858] = {.count = 1, .reusable = false}, SHIFT(2545), - [5860] = {.count = 1, .reusable = true}, SHIFT(2545), - [5862] = {.count = 1, .reusable = true}, SHIFT(2544), - [5864] = {.count = 1, .reusable = true}, SHIFT(2546), - [5866] = {.count = 1, .reusable = true}, SHIFT(2547), - [5868] = {.count = 1, .reusable = true}, SHIFT(2548), - [5870] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), - [5872] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [5874] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [5876] = {.count = 1, .reusable = false}, SHIFT(2552), - [5878] = {.count = 1, .reusable = true}, SHIFT(2552), - [5880] = {.count = 1, .reusable = false}, SHIFT(2553), - [5882] = {.count = 1, .reusable = false}, SHIFT(2554), - [5884] = {.count = 1, .reusable = false}, SHIFT(2555), - [5886] = {.count = 1, .reusable = true}, SHIFT(2556), - [5888] = {.count = 1, .reusable = true}, SHIFT(2557), - [5890] = {.count = 1, .reusable = false}, SHIFT(2558), - [5892] = {.count = 1, .reusable = true}, SHIFT(2559), - [5894] = {.count = 1, .reusable = true}, SHIFT(2560), - [5896] = {.count = 1, .reusable = true}, SHIFT(2561), - [5898] = {.count = 1, .reusable = true}, SHIFT(2562), - [5900] = {.count = 1, .reusable = true}, SHIFT(2563), - [5902] = {.count = 1, .reusable = true}, SHIFT(2564), - [5904] = {.count = 1, .reusable = true}, SHIFT(2565), - [5906] = {.count = 1, .reusable = false}, SHIFT(2569), - [5908] = {.count = 1, .reusable = true}, SHIFT(2573), - [5910] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4), - [5912] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4), - [5914] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4), - [5916] = {.count = 1, .reusable = false}, SHIFT(2576), - [5918] = {.count = 1, .reusable = true}, SHIFT(2577), - [5920] = {.count = 1, .reusable = true}, SHIFT(2580), - [5922] = {.count = 1, .reusable = true}, SHIFT(2584), - [5924] = {.count = 1, .reusable = true}, SHIFT(2585), - [5926] = {.count = 1, .reusable = true}, SHIFT(2589), - [5928] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), - [5930] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), - [5932] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), - [5934] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), - [5936] = {.count = 1, .reusable = true}, SHIFT(2590), - [5938] = {.count = 1, .reusable = true}, SHIFT(2591), - [5940] = {.count = 1, .reusable = true}, SHIFT(2592), - [5942] = {.count = 1, .reusable = false}, SHIFT(2593), - [5944] = {.count = 1, .reusable = true}, SHIFT(2593), - [5946] = {.count = 1, .reusable = false}, SHIFT(2594), - [5948] = {.count = 1, .reusable = true}, SHIFT(2595), - [5950] = {.count = 1, .reusable = true}, SHIFT(2597), - [5952] = {.count = 1, .reusable = true}, SHIFT(2598), - [5954] = {.count = 1, .reusable = true}, SHIFT(2599), - [5956] = {.count = 1, .reusable = true}, SHIFT(2600), - [5958] = {.count = 1, .reusable = true}, SHIFT(2601), - [5960] = {.count = 1, .reusable = true}, SHIFT(2602), - [5962] = {.count = 1, .reusable = false}, SHIFT(2603), - [5964] = {.count = 1, .reusable = true}, SHIFT(2603), - [5966] = {.count = 1, .reusable = true}, SHIFT(2604), - [5968] = {.count = 1, .reusable = false}, SHIFT(2605), - [5970] = {.count = 1, .reusable = true}, SHIFT(2605), - [5972] = {.count = 1, .reusable = true}, SHIFT(2606), - [5974] = {.count = 1, .reusable = true}, SHIFT(2607), - [5976] = {.count = 1, .reusable = true}, SHIFT(2608), - [5978] = {.count = 1, .reusable = true}, SHIFT(2609), - [5980] = {.count = 1, .reusable = false}, SHIFT(2610), - [5982] = {.count = 1, .reusable = true}, SHIFT(2610), - [5984] = {.count = 1, .reusable = true}, SHIFT(2611), - [5986] = {.count = 1, .reusable = false}, SHIFT(2612), - [5988] = {.count = 1, .reusable = true}, SHIFT(2612), - [5990] = {.count = 1, .reusable = true}, SHIFT(2613), - [5992] = {.count = 1, .reusable = false}, SHIFT(2614), - [5994] = {.count = 1, .reusable = true}, SHIFT(2614), - [5996] = {.count = 1, .reusable = true}, SHIFT(2615), - [5998] = {.count = 1, .reusable = true}, SHIFT(2616), - [6000] = {.count = 1, .reusable = true}, SHIFT(2617), - [6002] = {.count = 1, .reusable = true}, SHIFT(2618), - [6004] = {.count = 1, .reusable = true}, SHIFT(2619), - [6006] = {.count = 1, .reusable = true}, SHIFT(2620), - [6008] = {.count = 1, .reusable = true}, SHIFT(2621), - [6010] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2118), - [6013] = {.count = 1, .reusable = true}, SHIFT(2622), - [6015] = {.count = 1, .reusable = false}, SHIFT(2623), - [6017] = {.count = 1, .reusable = true}, SHIFT(2624), - [6019] = {.count = 1, .reusable = true}, SHIFT(2626), - [6021] = {.count = 1, .reusable = true}, SHIFT(2627), - [6023] = {.count = 1, .reusable = true}, SHIFT(2628), - [6025] = {.count = 1, .reusable = true}, SHIFT(2629), - [6027] = {.count = 1, .reusable = false}, SHIFT(2631), - [6029] = {.count = 1, .reusable = true}, SHIFT(2631), - [6031] = {.count = 1, .reusable = true}, SHIFT(2630), - [6033] = {.count = 1, .reusable = true}, SHIFT(2632), - [6035] = {.count = 1, .reusable = false}, SHIFT(2634), - [6037] = {.count = 1, .reusable = true}, SHIFT(2634), - [6039] = {.count = 1, .reusable = true}, SHIFT(2633), - [6041] = {.count = 1, .reusable = false}, SHIFT(2636), - [6043] = {.count = 1, .reusable = true}, SHIFT(2636), - [6045] = {.count = 1, .reusable = true}, SHIFT(2635), - [6047] = {.count = 1, .reusable = true}, SHIFT(2637), - [6049] = {.count = 1, .reusable = true}, SHIFT(2638), - [6051] = {.count = 1, .reusable = true}, SHIFT(2639), - [6053] = {.count = 1, .reusable = true}, SHIFT(2640), - [6055] = {.count = 1, .reusable = true}, SHIFT(2641), - [6057] = {.count = 1, .reusable = true}, SHIFT(2642), - [6059] = {.count = 1, .reusable = true}, SHIFT(2643), - [6061] = {.count = 1, .reusable = true}, SHIFT(2644), - [6063] = {.count = 1, .reusable = true}, SHIFT(2645), - [6065] = {.count = 1, .reusable = true}, SHIFT(2646), - [6067] = {.count = 1, .reusable = true}, SHIFT(2647), - [6069] = {.count = 1, .reusable = true}, SHIFT(2648), - [6071] = {.count = 1, .reusable = true}, SHIFT(2649), - [6073] = {.count = 1, .reusable = true}, SHIFT(2650), - [6075] = {.count = 1, .reusable = true}, SHIFT(2651), - [6077] = {.count = 1, .reusable = true}, SHIFT(2652), - [6079] = {.count = 1, .reusable = true}, SHIFT(2653), - [6081] = {.count = 1, .reusable = true}, SHIFT(2654), - [6083] = {.count = 1, .reusable = true}, SHIFT(2655), - [6085] = {.count = 1, .reusable = true}, SHIFT(2657), - [6087] = {.count = 1, .reusable = false}, SHIFT(2659), - [6089] = {.count = 1, .reusable = true}, SHIFT(2661), - [6091] = {.count = 1, .reusable = true}, SHIFT(2662), - [6093] = {.count = 1, .reusable = false}, SHIFT(2663), - [6095] = {.count = 1, .reusable = false}, SHIFT(2661), - [6097] = {.count = 1, .reusable = true}, SHIFT(2664), - [6099] = {.count = 1, .reusable = true}, SHIFT(2665), - [6101] = {.count = 1, .reusable = true}, SHIFT(2666), - [6103] = {.count = 1, .reusable = false}, SHIFT(2667), - [6105] = {.count = 1, .reusable = false}, SHIFT(2665), - [6107] = {.count = 1, .reusable = true}, SHIFT(2676), - [6109] = {.count = 1, .reusable = true}, SHIFT(2677), - [6111] = {.count = 1, .reusable = false}, SHIFT(2678), - [6113] = {.count = 1, .reusable = true}, SHIFT(2679), - [6115] = {.count = 1, .reusable = false}, SHIFT(2680), - [6117] = {.count = 1, .reusable = false}, SHIFT(2681), - [6119] = {.count = 1, .reusable = true}, SHIFT(2683), - [6121] = {.count = 1, .reusable = true}, SHIFT(2684), - [6123] = {.count = 1, .reusable = true}, SHIFT(2685), - [6125] = {.count = 1, .reusable = true}, SHIFT(2686), - [6127] = {.count = 1, .reusable = true}, SHIFT(2255), - [6129] = {.count = 1, .reusable = true}, SHIFT(2256), - [6131] = {.count = 1, .reusable = true}, SHIFT(2257), - [6133] = {.count = 1, .reusable = true}, SHIFT(2258), - [6135] = {.count = 1, .reusable = true}, SHIFT(2687), - [6137] = {.count = 1, .reusable = false}, SHIFT(2689), - [6139] = {.count = 1, .reusable = true}, SHIFT(2690), - [6141] = {.count = 1, .reusable = true}, SHIFT(2691), - [6143] = {.count = 1, .reusable = false}, SHIFT(2693), - [6145] = {.count = 1, .reusable = true}, SHIFT(2693), - [6147] = {.count = 1, .reusable = true}, SHIFT(2692), - [6149] = {.count = 1, .reusable = true}, SHIFT(2694), - [6151] = {.count = 1, .reusable = true}, SHIFT(2695), - [6153] = {.count = 1, .reusable = false}, SHIFT(2696), - [6155] = {.count = 1, .reusable = false}, SHIFT(2695), - [6157] = {.count = 1, .reusable = true}, SHIFT(2698), - [6159] = {.count = 1, .reusable = false}, SHIFT(2700), - [6161] = {.count = 1, .reusable = true}, SHIFT(2700), - [6163] = {.count = 1, .reusable = true}, SHIFT(2699), - [6165] = {.count = 1, .reusable = true}, SHIFT(2701), - [6167] = {.count = 1, .reusable = false}, SHIFT(2703), - [6169] = {.count = 1, .reusable = true}, SHIFT(2703), - [6171] = {.count = 1, .reusable = true}, SHIFT(2702), - [6173] = {.count = 1, .reusable = true}, SHIFT(2704), - [6175] = {.count = 1, .reusable = true}, SHIFT(2705), - [6177] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2250), - [6180] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2251), - [6183] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2252), - [6186] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2253), - [6189] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2254), - [6192] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2255), - [6195] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2256), - [6198] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2257), - [6201] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2258), - [6204] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2259), - [6207] = {.count = 1, .reusable = true}, SHIFT(2706), - [6209] = {.count = 1, .reusable = true}, SHIFT(2266), - [6211] = {.count = 1, .reusable = true}, SHIFT(2267), - [6213] = {.count = 1, .reusable = true}, SHIFT(2268), - [6215] = {.count = 1, .reusable = true}, SHIFT(2269), - [6217] = {.count = 1, .reusable = false}, SHIFT(2708), - [6219] = {.count = 1, .reusable = true}, SHIFT(2709), - [6221] = {.count = 1, .reusable = true}, SHIFT(2710), - [6223] = {.count = 1, .reusable = false}, SHIFT(2712), - [6225] = {.count = 1, .reusable = true}, SHIFT(2712), - [6227] = {.count = 1, .reusable = true}, SHIFT(2711), - [6229] = {.count = 1, .reusable = true}, SHIFT(2713), - [6231] = {.count = 1, .reusable = true}, SHIFT(2714), - [6233] = {.count = 1, .reusable = false}, SHIFT(2715), - [6235] = {.count = 1, .reusable = false}, SHIFT(2714), - [6237] = {.count = 1, .reusable = true}, SHIFT(2717), - [6239] = {.count = 1, .reusable = false}, SHIFT(2719), - [6241] = {.count = 1, .reusable = true}, SHIFT(2719), - [6243] = {.count = 1, .reusable = true}, SHIFT(2718), - [6245] = {.count = 1, .reusable = true}, SHIFT(2720), - [6247] = {.count = 1, .reusable = false}, SHIFT(2722), - [6249] = {.count = 1, .reusable = true}, SHIFT(2722), - [6251] = {.count = 1, .reusable = true}, SHIFT(2721), - [6253] = {.count = 1, .reusable = true}, SHIFT(2723), - [6255] = {.count = 1, .reusable = true}, SHIFT(2724), - [6257] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2262), - [6260] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2263), - [6263] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2264), - [6266] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2265), - [6269] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2266), - [6272] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2267), - [6275] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2268), - [6278] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2269), - [6281] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2270), - [6284] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2272), - [6287] = {.count = 1, .reusable = true}, SHIFT(2725), - [6289] = {.count = 1, .reusable = false}, SHIFT(2726), - [6291] = {.count = 1, .reusable = true}, SHIFT(2727), - [6293] = {.count = 1, .reusable = true}, SHIFT(2729), - [6295] = {.count = 1, .reusable = true}, SHIFT(2730), - [6297] = {.count = 1, .reusable = true}, SHIFT(2731), - [6299] = {.count = 1, .reusable = true}, SHIFT(2732), - [6301] = {.count = 1, .reusable = false}, SHIFT(2734), - [6303] = {.count = 1, .reusable = true}, SHIFT(2734), - [6305] = {.count = 1, .reusable = true}, SHIFT(2733), - [6307] = {.count = 1, .reusable = true}, SHIFT(2735), - [6309] = {.count = 1, .reusable = false}, SHIFT(2737), - [6311] = {.count = 1, .reusable = true}, SHIFT(2737), - [6313] = {.count = 1, .reusable = true}, SHIFT(2736), - [6315] = {.count = 1, .reusable = false}, SHIFT(2739), - [6317] = {.count = 1, .reusable = true}, SHIFT(2739), - [6319] = {.count = 1, .reusable = true}, SHIFT(2738), - [6321] = {.count = 1, .reusable = true}, SHIFT(2740), - [6323] = {.count = 1, .reusable = true}, SHIFT(2741), - [6325] = {.count = 1, .reusable = true}, SHIFT(2742), - [6327] = {.count = 1, .reusable = true}, SHIFT(2744), - [6329] = {.count = 1, .reusable = true}, SHIFT(2745), - [6331] = {.count = 1, .reusable = true}, SHIFT(2746), - [6333] = {.count = 1, .reusable = false}, SHIFT(2748), - [6335] = {.count = 1, .reusable = true}, SHIFT(2750), - [6337] = {.count = 1, .reusable = true}, SHIFT(2751), - [6339] = {.count = 1, .reusable = false}, SHIFT(2752), - [6341] = {.count = 1, .reusable = false}, SHIFT(2750), - [6343] = {.count = 1, .reusable = true}, SHIFT(2753), - [6345] = {.count = 1, .reusable = true}, SHIFT(2754), - [6347] = {.count = 1, .reusable = true}, SHIFT(2755), - [6349] = {.count = 1, .reusable = false}, SHIFT(2756), - [6351] = {.count = 1, .reusable = false}, SHIFT(2754), - [6353] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2295), - [6356] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2297), - [6359] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2298), - [6362] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2296), - [6365] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2299), - [6368] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1926), - [6371] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1927), - [6374] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2300), - [6377] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1929), - [6380] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1930), - [6383] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1931), - [6386] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1932), - [6389] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), - [6391] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [6393] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [6395] = {.count = 1, .reusable = false}, SHIFT(2765), - [6397] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5), - [6399] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5), - [6401] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5), - [6403] = {.count = 1, .reusable = false}, SHIFT(2766), - [6405] = {.count = 1, .reusable = false}, SHIFT(2767), - [6407] = {.count = 1, .reusable = true}, SHIFT(2768), - [6409] = {.count = 1, .reusable = false}, SHIFT(2773), - [6411] = {.count = 1, .reusable = true}, SHIFT(2774), - [6413] = {.count = 1, .reusable = true}, SHIFT(2778), - [6415] = {.count = 1, .reusable = true}, SHIFT(2779), - [6417] = {.count = 1, .reusable = true}, SHIFT(2780), - [6419] = {.count = 1, .reusable = true}, SHIFT(2781), - [6421] = {.count = 1, .reusable = false}, SHIFT(2782), - [6423] = {.count = 1, .reusable = true}, SHIFT(2782), - [6425] = {.count = 1, .reusable = true}, SHIFT(2783), - [6427] = {.count = 1, .reusable = false}, SHIFT(2784), - [6429] = {.count = 1, .reusable = true}, SHIFT(2784), - [6431] = {.count = 1, .reusable = true}, SHIFT(2785), - [6433] = {.count = 1, .reusable = false}, SHIFT(2786), - [6435] = {.count = 1, .reusable = true}, SHIFT(2786), - [6437] = {.count = 1, .reusable = true}, SHIFT(2787), - [6439] = {.count = 1, .reusable = true}, SHIFT(2788), - [6441] = {.count = 1, .reusable = true}, SHIFT(2789), - [6443] = {.count = 1, .reusable = true}, SHIFT(2790), - [6445] = {.count = 1, .reusable = true}, SHIFT(2791), - [6447] = {.count = 1, .reusable = true}, SHIFT(2792), - [6449] = {.count = 1, .reusable = true}, SHIFT(2793), - [6451] = {.count = 1, .reusable = true}, SHIFT(2794), - [6453] = {.count = 1, .reusable = false}, SHIFT(2795), - [6455] = {.count = 1, .reusable = true}, SHIFT(2795), - [6457] = {.count = 1, .reusable = false}, SHIFT(2796), - [6459] = {.count = 1, .reusable = true}, SHIFT(2797), - [6461] = {.count = 1, .reusable = true}, SHIFT(2799), - [6463] = {.count = 1, .reusable = true}, SHIFT(2800), - [6465] = {.count = 1, .reusable = true}, SHIFT(2801), - [6467] = {.count = 1, .reusable = true}, SHIFT(2802), - [6469] = {.count = 1, .reusable = true}, SHIFT(2803), - [6471] = {.count = 1, .reusable = true}, SHIFT(2804), - [6473] = {.count = 1, .reusable = false}, SHIFT(2805), - [6475] = {.count = 1, .reusable = true}, SHIFT(2805), - [6477] = {.count = 1, .reusable = true}, SHIFT(2806), - [6479] = {.count = 1, .reusable = false}, SHIFT(2807), - [6481] = {.count = 1, .reusable = true}, SHIFT(2807), - [6483] = {.count = 1, .reusable = true}, SHIFT(2808), - [6485] = {.count = 1, .reusable = true}, SHIFT(2809), - [6487] = {.count = 1, .reusable = false}, SHIFT(2811), - [6489] = {.count = 1, .reusable = true}, SHIFT(2812), - [6491] = {.count = 1, .reusable = true}, SHIFT(2813), - [6493] = {.count = 1, .reusable = false}, SHIFT(2815), - [6495] = {.count = 1, .reusable = true}, SHIFT(2815), - [6497] = {.count = 1, .reusable = true}, SHIFT(2814), - [6499] = {.count = 1, .reusable = true}, SHIFT(2816), - [6501] = {.count = 1, .reusable = true}, SHIFT(2817), - [6503] = {.count = 1, .reusable = false}, SHIFT(2818), - [6505] = {.count = 1, .reusable = false}, SHIFT(2817), - [6507] = {.count = 1, .reusable = true}, SHIFT(2820), - [6509] = {.count = 1, .reusable = false}, SHIFT(2822), - [6511] = {.count = 1, .reusable = true}, SHIFT(2822), - [6513] = {.count = 1, .reusable = true}, SHIFT(2821), - [6515] = {.count = 1, .reusable = true}, SHIFT(2823), - [6517] = {.count = 1, .reusable = false}, SHIFT(2825), - [6519] = {.count = 1, .reusable = true}, SHIFT(2825), - [6521] = {.count = 1, .reusable = true}, SHIFT(2824), - [6523] = {.count = 1, .reusable = true}, SHIFT(2826), - [6525] = {.count = 1, .reusable = true}, SHIFT(2827), - [6527] = {.count = 1, .reusable = false}, SHIFT(2829), - [6529] = {.count = 1, .reusable = true}, SHIFT(2829), - [6531] = {.count = 1, .reusable = true}, SHIFT(2830), - [6533] = {.count = 1, .reusable = true}, SHIFT(2831), - [6535] = {.count = 1, .reusable = false}, SHIFT(2832), - [6537] = {.count = 1, .reusable = true}, SHIFT(2833), - [6539] = {.count = 1, .reusable = true}, SHIFT(2834), - [6541] = {.count = 1, .reusable = true}, SHIFT(2835), - [6543] = {.count = 1, .reusable = true}, SHIFT(2836), - [6545] = {.count = 1, .reusable = true}, SHIFT(2837), - [6547] = {.count = 1, .reusable = false}, SHIFT(2838), - [6549] = {.count = 1, .reusable = true}, SHIFT(2838), - [6551] = {.count = 1, .reusable = true}, SHIFT(2839), - [6553] = {.count = 1, .reusable = true}, SHIFT(2840), - [6555] = {.count = 1, .reusable = true}, SHIFT(2841), - [6557] = {.count = 1, .reusable = true}, SHIFT(2842), - [6559] = {.count = 1, .reusable = true}, SHIFT(2844), - [6561] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2491), - [6564] = {.count = 1, .reusable = true}, SHIFT(2846), - [6566] = {.count = 1, .reusable = false}, SHIFT(2847), - [6568] = {.count = 1, .reusable = true}, SHIFT(2848), - [6570] = {.count = 1, .reusable = true}, SHIFT(2850), - [6572] = {.count = 1, .reusable = true}, SHIFT(2851), - [6574] = {.count = 1, .reusable = true}, SHIFT(2852), - [6576] = {.count = 1, .reusable = true}, SHIFT(2853), - [6578] = {.count = 1, .reusable = false}, SHIFT(2855), - [6580] = {.count = 1, .reusable = true}, SHIFT(2855), - [6582] = {.count = 1, .reusable = true}, SHIFT(2854), - [6584] = {.count = 1, .reusable = true}, SHIFT(2856), - [6586] = {.count = 1, .reusable = false}, SHIFT(2858), - [6588] = {.count = 1, .reusable = true}, SHIFT(2858), - [6590] = {.count = 1, .reusable = true}, SHIFT(2857), - [6592] = {.count = 1, .reusable = false}, SHIFT(2860), - [6594] = {.count = 1, .reusable = true}, SHIFT(2860), - [6596] = {.count = 1, .reusable = true}, SHIFT(2859), - [6598] = {.count = 1, .reusable = true}, SHIFT(2861), - [6600] = {.count = 1, .reusable = true}, SHIFT(2862), - [6602] = {.count = 1, .reusable = true}, SHIFT(2863), - [6604] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2510), - [6607] = {.count = 1, .reusable = true}, SHIFT(2864), - [6609] = {.count = 1, .reusable = false}, SHIFT(2865), - [6611] = {.count = 1, .reusable = true}, SHIFT(2866), - [6613] = {.count = 1, .reusable = true}, SHIFT(2868), - [6615] = {.count = 1, .reusable = true}, SHIFT(2869), - [6617] = {.count = 1, .reusable = true}, SHIFT(2870), - [6619] = {.count = 1, .reusable = true}, SHIFT(2871), - [6621] = {.count = 1, .reusable = false}, SHIFT(2873), - [6623] = {.count = 1, .reusable = true}, SHIFT(2873), - [6625] = {.count = 1, .reusable = true}, SHIFT(2872), - [6627] = {.count = 1, .reusable = true}, SHIFT(2874), - [6629] = {.count = 1, .reusable = false}, SHIFT(2876), - [6631] = {.count = 1, .reusable = true}, SHIFT(2876), - [6633] = {.count = 1, .reusable = true}, SHIFT(2875), - [6635] = {.count = 1, .reusable = false}, SHIFT(2878), - [6637] = {.count = 1, .reusable = true}, SHIFT(2878), - [6639] = {.count = 1, .reusable = true}, SHIFT(2877), - [6641] = {.count = 1, .reusable = true}, SHIFT(2879), - [6643] = {.count = 1, .reusable = true}, SHIFT(2880), - [6645] = {.count = 1, .reusable = true}, SHIFT(2881), - [6647] = {.count = 1, .reusable = true}, SHIFT(2882), - [6649] = {.count = 1, .reusable = true}, SHIFT(2883), - [6651] = {.count = 1, .reusable = true}, SHIFT(2884), - [6653] = {.count = 1, .reusable = false}, SHIFT(2885), - [6655] = {.count = 1, .reusable = true}, SHIFT(2885), - [6657] = {.count = 1, .reusable = false}, SHIFT(2886), - [6659] = {.count = 1, .reusable = true}, SHIFT(2887), - [6661] = {.count = 1, .reusable = true}, SHIFT(2889), - [6663] = {.count = 1, .reusable = true}, SHIFT(2890), - [6665] = {.count = 1, .reusable = true}, SHIFT(2891), - [6667] = {.count = 1, .reusable = true}, SHIFT(2892), - [6669] = {.count = 1, .reusable = true}, SHIFT(2893), - [6671] = {.count = 1, .reusable = true}, SHIFT(2894), - [6673] = {.count = 1, .reusable = false}, SHIFT(2895), - [6675] = {.count = 1, .reusable = true}, SHIFT(2895), - [6677] = {.count = 1, .reusable = true}, SHIFT(2896), - [6679] = {.count = 1, .reusable = false}, SHIFT(2897), - [6681] = {.count = 1, .reusable = true}, SHIFT(2897), - [6683] = {.count = 1, .reusable = true}, SHIFT(2898), - [6685] = {.count = 1, .reusable = false}, SHIFT(2900), - [6687] = {.count = 1, .reusable = true}, SHIFT(2901), - [6689] = {.count = 1, .reusable = true}, SHIFT(2902), - [6691] = {.count = 1, .reusable = false}, SHIFT(2904), - [6693] = {.count = 1, .reusable = true}, SHIFT(2904), - [6695] = {.count = 1, .reusable = true}, SHIFT(2903), - [6697] = {.count = 1, .reusable = true}, SHIFT(2905), - [6699] = {.count = 1, .reusable = true}, SHIFT(2906), - [6701] = {.count = 1, .reusable = false}, SHIFT(2907), - [6703] = {.count = 1, .reusable = false}, SHIFT(2906), - [6705] = {.count = 1, .reusable = true}, SHIFT(2909), - [6707] = {.count = 1, .reusable = false}, SHIFT(2911), - [6709] = {.count = 1, .reusable = true}, SHIFT(2911), - [6711] = {.count = 1, .reusable = true}, SHIFT(2910), - [6713] = {.count = 1, .reusable = true}, SHIFT(2912), - [6715] = {.count = 1, .reusable = false}, SHIFT(2914), - [6717] = {.count = 1, .reusable = true}, SHIFT(2914), - [6719] = {.count = 1, .reusable = true}, SHIFT(2913), - [6721] = {.count = 1, .reusable = true}, SHIFT(2915), - [6723] = {.count = 1, .reusable = true}, SHIFT(2916), - [6725] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6, .alias_sequence_id = 1), - [6727] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), - [6729] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), - [6731] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6), - [6733] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6), - [6735] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6), - [6737] = {.count = 1, .reusable = false}, SHIFT(2917), - [6739] = {.count = 1, .reusable = true}, SHIFT(2918), - [6741] = {.count = 1, .reusable = false}, SHIFT(2921), - [6743] = {.count = 1, .reusable = true}, SHIFT(2922), - [6745] = {.count = 1, .reusable = true}, SHIFT(2925), - [6747] = {.count = 1, .reusable = true}, SHIFT(2926), - [6749] = {.count = 1, .reusable = true}, SHIFT(2927), - [6751] = {.count = 1, .reusable = true}, SHIFT(2928), - [6753] = {.count = 1, .reusable = true}, SHIFT(2929), - [6755] = {.count = 1, .reusable = true}, SHIFT(2930), - [6757] = {.count = 1, .reusable = true}, SHIFT(2931), - [6759] = {.count = 1, .reusable = false}, SHIFT(2932), - [6761] = {.count = 1, .reusable = true}, SHIFT(2932), - [6763] = {.count = 1, .reusable = true}, SHIFT(2933), - [6765] = {.count = 1, .reusable = false}, SHIFT(2934), - [6767] = {.count = 1, .reusable = true}, SHIFT(2934), - [6769] = {.count = 1, .reusable = true}, SHIFT(2935), - [6771] = {.count = 1, .reusable = false}, SHIFT(2936), - [6773] = {.count = 1, .reusable = true}, SHIFT(2936), - [6775] = {.count = 1, .reusable = true}, SHIFT(2937), - [6777] = {.count = 1, .reusable = true}, SHIFT(2938), - [6779] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2657), - [6782] = {.count = 1, .reusable = true}, SHIFT(2939), - [6784] = {.count = 1, .reusable = false}, SHIFT(2940), - [6786] = {.count = 1, .reusable = true}, SHIFT(2941), - [6788] = {.count = 1, .reusable = true}, SHIFT(2943), - [6790] = {.count = 1, .reusable = true}, SHIFT(2944), - [6792] = {.count = 1, .reusable = true}, SHIFT(2945), - [6794] = {.count = 1, .reusable = true}, SHIFT(2946), - [6796] = {.count = 1, .reusable = false}, SHIFT(2948), - [6798] = {.count = 1, .reusable = true}, SHIFT(2948), - [6800] = {.count = 1, .reusable = true}, SHIFT(2947), - [6802] = {.count = 1, .reusable = true}, SHIFT(2949), - [6804] = {.count = 1, .reusable = false}, SHIFT(2951), - [6806] = {.count = 1, .reusable = true}, SHIFT(2951), - [6808] = {.count = 1, .reusable = true}, SHIFT(2950), - [6810] = {.count = 1, .reusable = false}, SHIFT(2953), - [6812] = {.count = 1, .reusable = true}, SHIFT(2953), - [6814] = {.count = 1, .reusable = true}, SHIFT(2952), - [6816] = {.count = 1, .reusable = true}, SHIFT(2954), - [6818] = {.count = 1, .reusable = true}, SHIFT(2955), - [6820] = {.count = 1, .reusable = true}, SHIFT(2956), - [6822] = {.count = 1, .reusable = true}, SHIFT(2957), - [6824] = {.count = 1, .reusable = true}, SHIFT(2958), - [6826] = {.count = 1, .reusable = true}, SHIFT(2959), - [6828] = {.count = 1, .reusable = false}, SHIFT(2961), - [6830] = {.count = 1, .reusable = true}, SHIFT(2963), - [6832] = {.count = 1, .reusable = true}, SHIFT(2964), - [6834] = {.count = 1, .reusable = false}, SHIFT(2965), - [6836] = {.count = 1, .reusable = false}, SHIFT(2963), - [6838] = {.count = 1, .reusable = true}, SHIFT(2966), - [6840] = {.count = 1, .reusable = true}, SHIFT(2967), - [6842] = {.count = 1, .reusable = true}, SHIFT(2968), - [6844] = {.count = 1, .reusable = false}, SHIFT(2969), - [6846] = {.count = 1, .reusable = false}, SHIFT(2967), - [6848] = {.count = 1, .reusable = true}, SHIFT(2977), - [6850] = {.count = 1, .reusable = true}, SHIFT(2978), - [6852] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2679), - [6855] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2680), - [6858] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2681), - [6861] = {.count = 1, .reusable = true}, SHIFT(2980), - [6863] = {.count = 1, .reusable = true}, SHIFT(2981), - [6865] = {.count = 1, .reusable = true}, SHIFT(2982), - [6867] = {.count = 1, .reusable = true}, SHIFT(2983), - [6869] = {.count = 1, .reusable = false}, SHIFT(2984), - [6871] = {.count = 1, .reusable = true}, SHIFT(2984), - [6873] = {.count = 1, .reusable = false}, SHIFT(2985), - [6875] = {.count = 1, .reusable = true}, SHIFT(2986), - [6877] = {.count = 1, .reusable = true}, SHIFT(2988), - [6879] = {.count = 1, .reusable = true}, SHIFT(2989), - [6881] = {.count = 1, .reusable = true}, SHIFT(2990), - [6883] = {.count = 1, .reusable = true}, SHIFT(2991), - [6885] = {.count = 1, .reusable = true}, SHIFT(2992), - [6887] = {.count = 1, .reusable = true}, SHIFT(2993), - [6889] = {.count = 1, .reusable = false}, SHIFT(2994), - [6891] = {.count = 1, .reusable = true}, SHIFT(2994), - [6893] = {.count = 1, .reusable = true}, SHIFT(2995), - [6895] = {.count = 1, .reusable = false}, SHIFT(2996), - [6897] = {.count = 1, .reusable = true}, SHIFT(2996), - [6899] = {.count = 1, .reusable = true}, SHIFT(2997), - [6901] = {.count = 1, .reusable = true}, SHIFT(2998), - [6903] = {.count = 1, .reusable = true}, SHIFT(2999), - [6905] = {.count = 1, .reusable = false}, SHIFT(3000), - [6907] = {.count = 1, .reusable = true}, SHIFT(3000), - [6909] = {.count = 1, .reusable = false}, SHIFT(3001), - [6911] = {.count = 1, .reusable = true}, SHIFT(3002), - [6913] = {.count = 1, .reusable = true}, SHIFT(3004), - [6915] = {.count = 1, .reusable = true}, SHIFT(3005), - [6917] = {.count = 1, .reusable = true}, SHIFT(3006), - [6919] = {.count = 1, .reusable = true}, SHIFT(3007), - [6921] = {.count = 1, .reusable = true}, SHIFT(3008), - [6923] = {.count = 1, .reusable = true}, SHIFT(3009), - [6925] = {.count = 1, .reusable = false}, SHIFT(3010), - [6927] = {.count = 1, .reusable = true}, SHIFT(3010), - [6929] = {.count = 1, .reusable = true}, SHIFT(3011), - [6931] = {.count = 1, .reusable = false}, SHIFT(3012), - [6933] = {.count = 1, .reusable = true}, SHIFT(3012), - [6935] = {.count = 1, .reusable = true}, SHIFT(3013), - [6937] = {.count = 1, .reusable = true}, SHIFT(3014), - [6939] = {.count = 1, .reusable = true}, SHIFT(3015), - [6941] = {.count = 1, .reusable = true}, SHIFT(3016), - [6943] = {.count = 1, .reusable = false}, SHIFT(3017), - [6945] = {.count = 1, .reusable = true}, SHIFT(3017), - [6947] = {.count = 1, .reusable = true}, SHIFT(3018), - [6949] = {.count = 1, .reusable = false}, SHIFT(3019), - [6951] = {.count = 1, .reusable = true}, SHIFT(3019), - [6953] = {.count = 1, .reusable = true}, SHIFT(3020), - [6955] = {.count = 1, .reusable = false}, SHIFT(3021), - [6957] = {.count = 1, .reusable = true}, SHIFT(3021), - [6959] = {.count = 1, .reusable = true}, SHIFT(3022), - [6961] = {.count = 1, .reusable = true}, SHIFT(3023), - [6963] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2746), - [6966] = {.count = 1, .reusable = true}, SHIFT(3024), - [6968] = {.count = 1, .reusable = false}, SHIFT(3025), - [6970] = {.count = 1, .reusable = true}, SHIFT(3026), - [6972] = {.count = 1, .reusable = true}, SHIFT(3028), - [6974] = {.count = 1, .reusable = true}, SHIFT(3029), - [6976] = {.count = 1, .reusable = true}, SHIFT(3030), - [6978] = {.count = 1, .reusable = true}, SHIFT(3031), - [6980] = {.count = 1, .reusable = false}, SHIFT(3033), - [6982] = {.count = 1, .reusable = true}, SHIFT(3033), - [6984] = {.count = 1, .reusable = true}, SHIFT(3032), - [6986] = {.count = 1, .reusable = true}, SHIFT(3034), - [6988] = {.count = 1, .reusable = false}, SHIFT(3036), - [6990] = {.count = 1, .reusable = true}, SHIFT(3036), - [6992] = {.count = 1, .reusable = true}, SHIFT(3035), - [6994] = {.count = 1, .reusable = false}, SHIFT(3038), - [6996] = {.count = 1, .reusable = true}, SHIFT(3038), - [6998] = {.count = 1, .reusable = true}, SHIFT(3037), - [7000] = {.count = 1, .reusable = true}, SHIFT(3039), - [7002] = {.count = 1, .reusable = true}, SHIFT(3040), - [7004] = {.count = 1, .reusable = true}, SHIFT(3041), - [7006] = {.count = 1, .reusable = false}, SHIFT(3042), - [7008] = {.count = 1, .reusable = false}, SHIFT(3043), - [7010] = {.count = 1, .reusable = true}, SHIFT(3044), - [7012] = {.count = 1, .reusable = true}, SHIFT(3045), - [7014] = {.count = 1, .reusable = true}, SHIFT(3046), - [7016] = {.count = 1, .reusable = true}, SHIFT(3047), - [7018] = {.count = 1, .reusable = true}, SHIFT(3048), - [7020] = {.count = 1, .reusable = true}, SHIFT(3049), - [7022] = {.count = 1, .reusable = false}, SHIFT(3050), - [7024] = {.count = 1, .reusable = true}, SHIFT(3050), - [7026] = {.count = 1, .reusable = false}, SHIFT(3051), - [7028] = {.count = 1, .reusable = true}, SHIFT(3052), - [7030] = {.count = 1, .reusable = true}, SHIFT(3054), - [7032] = {.count = 1, .reusable = true}, SHIFT(3055), - [7034] = {.count = 1, .reusable = true}, SHIFT(3056), - [7036] = {.count = 1, .reusable = true}, SHIFT(3057), - [7038] = {.count = 1, .reusable = true}, SHIFT(3058), - [7040] = {.count = 1, .reusable = true}, SHIFT(3059), - [7042] = {.count = 1, .reusable = false}, SHIFT(3060), - [7044] = {.count = 1, .reusable = true}, SHIFT(3060), - [7046] = {.count = 1, .reusable = true}, SHIFT(3061), - [7048] = {.count = 1, .reusable = false}, SHIFT(3062), - [7050] = {.count = 1, .reusable = true}, SHIFT(3062), - [7052] = {.count = 1, .reusable = true}, SHIFT(3063), - [7054] = {.count = 1, .reusable = false}, SHIFT(3065), - [7056] = {.count = 1, .reusable = true}, SHIFT(3066), - [7058] = {.count = 1, .reusable = true}, SHIFT(3067), - [7060] = {.count = 1, .reusable = false}, SHIFT(3069), - [7062] = {.count = 1, .reusable = true}, SHIFT(3069), - [7064] = {.count = 1, .reusable = true}, SHIFT(3068), - [7066] = {.count = 1, .reusable = true}, SHIFT(3070), - [7068] = {.count = 1, .reusable = true}, SHIFT(3071), - [7070] = {.count = 1, .reusable = false}, SHIFT(3072), - [7072] = {.count = 1, .reusable = false}, SHIFT(3071), - [7074] = {.count = 1, .reusable = true}, SHIFT(3074), - [7076] = {.count = 1, .reusable = false}, SHIFT(3076), - [7078] = {.count = 1, .reusable = true}, SHIFT(3076), - [7080] = {.count = 1, .reusable = true}, SHIFT(3075), - [7082] = {.count = 1, .reusable = true}, SHIFT(3077), - [7084] = {.count = 1, .reusable = false}, SHIFT(3079), - [7086] = {.count = 1, .reusable = true}, SHIFT(3079), - [7088] = {.count = 1, .reusable = true}, SHIFT(3078), - [7090] = {.count = 1, .reusable = true}, SHIFT(3080), - [7092] = {.count = 1, .reusable = true}, SHIFT(3081), - [7094] = {.count = 1, .reusable = true}, SHIFT(3083), - [7096] = {.count = 1, .reusable = true}, SHIFT(3084), - [7098] = {.count = 1, .reusable = true}, SHIFT(3085), - [7100] = {.count = 1, .reusable = true}, SHIFT(3086), - [7102] = {.count = 1, .reusable = false}, SHIFT(3087), - [7104] = {.count = 1, .reusable = true}, SHIFT(3087), - [7106] = {.count = 1, .reusable = true}, SHIFT(3088), - [7108] = {.count = 1, .reusable = false}, SHIFT(3089), - [7110] = {.count = 1, .reusable = true}, SHIFT(3089), - [7112] = {.count = 1, .reusable = true}, SHIFT(3090), - [7114] = {.count = 1, .reusable = false}, SHIFT(3091), - [7116] = {.count = 1, .reusable = true}, SHIFT(3091), - [7118] = {.count = 1, .reusable = true}, SHIFT(3092), - [7120] = {.count = 1, .reusable = true}, SHIFT(3093), - [7122] = {.count = 1, .reusable = true}, SHIFT(3094), - [7124] = {.count = 1, .reusable = true}, SHIFT(3095), - [7126] = {.count = 1, .reusable = true}, SHIFT(3096), - [7128] = {.count = 1, .reusable = true}, SHIFT(3097), - [7130] = {.count = 1, .reusable = false}, SHIFT(3098), - [7132] = {.count = 1, .reusable = true}, SHIFT(3098), - [7134] = {.count = 1, .reusable = true}, SHIFT(3099), - [7136] = {.count = 1, .reusable = false}, SHIFT(3100), - [7138] = {.count = 1, .reusable = true}, SHIFT(3100), - [7140] = {.count = 1, .reusable = true}, SHIFT(3101), - [7142] = {.count = 1, .reusable = false}, SHIFT(3102), - [7144] = {.count = 1, .reusable = true}, SHIFT(3102), - [7146] = {.count = 1, .reusable = true}, SHIFT(3103), - [7148] = {.count = 1, .reusable = true}, SHIFT(3104), - [7150] = {.count = 1, .reusable = true}, SHIFT(3105), - [7152] = {.count = 1, .reusable = true}, SHIFT(3106), - [7154] = {.count = 1, .reusable = true}, SHIFT(3107), - [7156] = {.count = 1, .reusable = true}, SHIFT(3108), - [7158] = {.count = 1, .reusable = true}, SHIFT(3109), - [7160] = {.count = 1, .reusable = true}, SHIFT(3110), - [7162] = {.count = 1, .reusable = false}, SHIFT(3111), - [7164] = {.count = 1, .reusable = true}, SHIFT(3111), - [7166] = {.count = 1, .reusable = false}, SHIFT(3112), - [7168] = {.count = 1, .reusable = true}, SHIFT(3113), - [7170] = {.count = 1, .reusable = true}, SHIFT(3115), - [7172] = {.count = 1, .reusable = true}, SHIFT(3116), - [7174] = {.count = 1, .reusable = true}, SHIFT(3117), - [7176] = {.count = 1, .reusable = true}, SHIFT(3118), - [7178] = {.count = 1, .reusable = true}, SHIFT(3119), - [7180] = {.count = 1, .reusable = true}, SHIFT(3120), - [7182] = {.count = 1, .reusable = false}, SHIFT(3121), - [7184] = {.count = 1, .reusable = true}, SHIFT(3121), - [7186] = {.count = 1, .reusable = true}, SHIFT(3122), - [7188] = {.count = 1, .reusable = false}, SHIFT(3123), - [7190] = {.count = 1, .reusable = true}, SHIFT(3123), - [7192] = {.count = 1, .reusable = true}, SHIFT(3124), - [7194] = {.count = 1, .reusable = true}, SHIFT(3125), - [7196] = {.count = 1, .reusable = true}, SHIFT(3126), - [7198] = {.count = 1, .reusable = true}, SHIFT(3127), - [7200] = {.count = 1, .reusable = false}, SHIFT(3128), - [7202] = {.count = 1, .reusable = true}, SHIFT(3128), - [7204] = {.count = 1, .reusable = true}, SHIFT(3129), - [7206] = {.count = 1, .reusable = false}, SHIFT(3130), - [7208] = {.count = 1, .reusable = true}, SHIFT(3130), - [7210] = {.count = 1, .reusable = true}, SHIFT(3131), - [7212] = {.count = 1, .reusable = false}, SHIFT(3132), - [7214] = {.count = 1, .reusable = true}, SHIFT(3132), - [7216] = {.count = 1, .reusable = true}, SHIFT(3133), - [7218] = {.count = 1, .reusable = true}, SHIFT(3134), - [7220] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2959), - [7223] = {.count = 1, .reusable = true}, SHIFT(3135), - [7225] = {.count = 1, .reusable = false}, SHIFT(3136), - [7227] = {.count = 1, .reusable = true}, SHIFT(3137), - [7229] = {.count = 1, .reusable = true}, SHIFT(3139), - [7231] = {.count = 1, .reusable = true}, SHIFT(3140), - [7233] = {.count = 1, .reusable = true}, SHIFT(3141), - [7235] = {.count = 1, .reusable = true}, SHIFT(3142), - [7237] = {.count = 1, .reusable = false}, SHIFT(3144), - [7239] = {.count = 1, .reusable = true}, SHIFT(3144), - [7241] = {.count = 1, .reusable = true}, SHIFT(3143), - [7243] = {.count = 1, .reusable = true}, SHIFT(3145), - [7245] = {.count = 1, .reusable = false}, SHIFT(3147), - [7247] = {.count = 1, .reusable = true}, SHIFT(3147), - [7249] = {.count = 1, .reusable = true}, SHIFT(3146), - [7251] = {.count = 1, .reusable = false}, SHIFT(3149), - [7253] = {.count = 1, .reusable = true}, SHIFT(3149), - [7255] = {.count = 1, .reusable = true}, SHIFT(3148), - [7257] = {.count = 1, .reusable = true}, SHIFT(3150), - [7259] = {.count = 1, .reusable = true}, SHIFT(3151), - [7261] = {.count = 1, .reusable = true}, SHIFT(3152), - [7263] = {.count = 1, .reusable = true}, SHIFT(3153), - [7265] = {.count = 1, .reusable = true}, SHIFT(3154), - [7267] = {.count = 1, .reusable = true}, SHIFT(3155), - [7269] = {.count = 1, .reusable = true}, SHIFT(3156), - [7271] = {.count = 1, .reusable = true}, SHIFT(3157), - [7273] = {.count = 1, .reusable = true}, SHIFT(3158), - [7275] = {.count = 1, .reusable = true}, SHIFT(3159), - [7277] = {.count = 1, .reusable = true}, SHIFT(3160), - [7279] = {.count = 1, .reusable = true}, SHIFT(3161), - [7281] = {.count = 1, .reusable = true}, SHIFT(3162), - [7283] = {.count = 1, .reusable = false}, SHIFT(3163), - [7285] = {.count = 1, .reusable = true}, SHIFT(3163), - [7287] = {.count = 1, .reusable = true}, SHIFT(3164), - [7289] = {.count = 1, .reusable = false}, SHIFT(3165), - [7291] = {.count = 1, .reusable = true}, SHIFT(3165), - [7293] = {.count = 1, .reusable = true}, SHIFT(3166), - [7295] = {.count = 1, .reusable = false}, SHIFT(3167), - [7297] = {.count = 1, .reusable = true}, SHIFT(3167), - [7299] = {.count = 1, .reusable = true}, SHIFT(3168), - [7301] = {.count = 1, .reusable = true}, SHIFT(3169), - [7303] = {.count = 1, .reusable = true}, SHIFT(3170), - [7305] = {.count = 1, .reusable = true}, SHIFT(3171), - [7307] = {.count = 1, .reusable = true}, SHIFT(3172), - [7309] = {.count = 1, .reusable = true}, SHIFT(3173), - [7311] = {.count = 1, .reusable = true}, SHIFT(3174), - [7313] = {.count = 1, .reusable = true}, SHIFT(3175), - [7315] = {.count = 1, .reusable = false}, SHIFT(3176), - [7317] = {.count = 1, .reusable = true}, SHIFT(3176), - [7319] = {.count = 1, .reusable = false}, SHIFT(3177), - [7321] = {.count = 1, .reusable = true}, SHIFT(3178), - [7323] = {.count = 1, .reusable = true}, SHIFT(3180), - [7325] = {.count = 1, .reusable = true}, SHIFT(3181), - [7327] = {.count = 1, .reusable = true}, SHIFT(3182), - [7329] = {.count = 1, .reusable = true}, SHIFT(3183), - [7331] = {.count = 1, .reusable = true}, SHIFT(3184), - [7333] = {.count = 1, .reusable = true}, SHIFT(3185), - [7335] = {.count = 1, .reusable = false}, SHIFT(3186), - [7337] = {.count = 1, .reusable = true}, SHIFT(3186), - [7339] = {.count = 1, .reusable = true}, SHIFT(3187), - [7341] = {.count = 1, .reusable = false}, SHIFT(3188), - [7343] = {.count = 1, .reusable = true}, SHIFT(3188), - [7345] = {.count = 1, .reusable = true}, SHIFT(3189), - [7347] = {.count = 1, .reusable = true}, SHIFT(3190), - [7349] = {.count = 1, .reusable = true}, SHIFT(3191), - [7351] = {.count = 1, .reusable = true}, SHIFT(3192), - [7353] = {.count = 1, .reusable = true}, SHIFT(3193), - [7355] = {.count = 1, .reusable = true}, SHIFT(3194), - [7357] = {.count = 1, .reusable = true}, SHIFT(3195), - [7359] = {.count = 1, .reusable = false}, SHIFT(3196), - [7361] = {.count = 1, .reusable = true}, SHIFT(3196), - [7363] = {.count = 1, .reusable = true}, SHIFT(3197), - [7365] = {.count = 1, .reusable = false}, SHIFT(3198), - [7367] = {.count = 1, .reusable = true}, SHIFT(3198), - [7369] = {.count = 1, .reusable = true}, SHIFT(3199), - [7371] = {.count = 1, .reusable = false}, SHIFT(3200), - [7373] = {.count = 1, .reusable = true}, SHIFT(3200), - [7375] = {.count = 1, .reusable = true}, SHIFT(3201), - [7377] = {.count = 1, .reusable = true}, SHIFT(3202), - [7379] = {.count = 1, .reusable = true}, SHIFT(3203), - [7381] = {.count = 1, .reusable = true}, SHIFT(3204), - [7383] = {.count = 1, .reusable = true}, SHIFT(3205), + [1946] = {.count = 1, .reusable = true}, SHIFT(924), + [1948] = {.count = 1, .reusable = false}, SHIFT(926), + [1950] = {.count = 1, .reusable = true}, SHIFT(926), + [1952] = {.count = 1, .reusable = false}, SHIFT(927), + [1954] = {.count = 1, .reusable = false}, SHIFT(155), + [1956] = {.count = 1, .reusable = false}, SHIFT(928), + [1958] = {.count = 1, .reusable = false}, SHIFT(158), + [1960] = {.count = 1, .reusable = false}, SHIFT(159), + [1962] = {.count = 1, .reusable = false}, SHIFT(160), + [1964] = {.count = 1, .reusable = false}, SHIFT(161), + [1966] = {.count = 1, .reusable = false}, SHIFT(929), + [1968] = {.count = 1, .reusable = true}, SHIFT(930), + [1970] = {.count = 1, .reusable = true}, SHIFT(931), + [1972] = {.count = 1, .reusable = true}, SHIFT(933), + [1974] = {.count = 1, .reusable = true}, SHIFT(934), + [1976] = {.count = 1, .reusable = true}, SHIFT(935), + [1978] = {.count = 1, .reusable = true}, SHIFT(942), + [1980] = {.count = 1, .reusable = true}, SHIFT(943), + [1982] = {.count = 1, .reusable = true}, SHIFT(945), + [1984] = {.count = 1, .reusable = true}, SHIFT(947), + [1986] = {.count = 1, .reusable = true}, SHIFT(948), + [1988] = {.count = 1, .reusable = true}, SHIFT(954), + [1990] = {.count = 1, .reusable = false}, SHIFT(958), + [1992] = {.count = 1, .reusable = true}, SHIFT(958), + [1994] = {.count = 1, .reusable = false}, SHIFT(959), + [1996] = {.count = 1, .reusable = false}, SHIFT(960), + [1998] = {.count = 1, .reusable = true}, SHIFT(961), + [2000] = {.count = 1, .reusable = true}, SHIFT(962), + [2002] = {.count = 1, .reusable = true}, SHIFT(963), + [2004] = {.count = 1, .reusable = true}, SHIFT(964), + [2006] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 3), + [2008] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 3), + [2010] = {.count = 1, .reusable = false}, REDUCE(sym_pipeline, 3), + [2012] = {.count = 1, .reusable = true}, REDUCE(sym_pipeline, 3), + [2014] = {.count = 1, .reusable = false}, REDUCE(sym_list, 3), + [2016] = {.count = 1, .reusable = true}, REDUCE(sym_list, 3), + [2018] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 2), + [2020] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 2), + [2022] = {.count = 1, .reusable = true}, SHIFT(970), + [2024] = {.count = 1, .reusable = false}, SHIFT(971), + [2026] = {.count = 1, .reusable = false}, SHIFT(970), + [2028] = {.count = 1, .reusable = true}, SHIFT(972), + [2030] = {.count = 1, .reusable = true}, SHIFT(973), + [2032] = {.count = 1, .reusable = true}, SHIFT(974), + [2034] = {.count = 1, .reusable = false}, SHIFT(975), + [2036] = {.count = 1, .reusable = false}, SHIFT(973), + [2038] = {.count = 1, .reusable = true}, SHIFT(978), + [2040] = {.count = 1, .reusable = true}, SHIFT(977), + [2042] = {.count = 1, .reusable = true}, SHIFT(979), + [2044] = {.count = 1, .reusable = true}, SHIFT(980), + [2046] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), + [2048] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), + [2050] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), + [2052] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), + [2054] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_redirect, 2), + [2056] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_redirect, 2), + [2058] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), + [2060] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), + [2062] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2), + [2064] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2), + [2066] = {.count = 1, .reusable = false}, REDUCE(sym_command, 3), + [2068] = {.count = 1, .reusable = true}, REDUCE(sym_command, 3), + [2070] = {.count = 1, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), + [2072] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(193), + [2075] = {.count = 1, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), + [2077] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(195), + [2080] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(196), + [2083] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(197), + [2086] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(194), + [2089] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(198), + [2092] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(17), + [2095] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(18), + [2098] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(199), + [2101] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(20), + [2104] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(21), + [2107] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), + [2110] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(23), + [2113] = {.count = 1, .reusable = true}, SHIFT(985), + [2115] = {.count = 1, .reusable = false}, SHIFT(671), + [2117] = {.count = 1, .reusable = true}, SHIFT(986), + [2119] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), + [2121] = {.count = 1, .reusable = true}, SHIFT(988), + [2123] = {.count = 1, .reusable = true}, SHIFT(989), + [2125] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4), + [2127] = {.count = 1, .reusable = true}, REDUCE(sym_array, 2), + [2129] = {.count = 1, .reusable = false}, REDUCE(sym_array, 2), + [2131] = {.count = 1, .reusable = true}, SHIFT(990), + [2133] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [2135] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [2137] = {.count = 1, .reusable = false}, SHIFT(992), + [2139] = {.count = 1, .reusable = true}, SHIFT(994), + [2141] = {.count = 1, .reusable = true}, SHIFT(995), + [2143] = {.count = 1, .reusable = false}, SHIFT(996), + [2145] = {.count = 1, .reusable = false}, SHIFT(994), + [2147] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2149] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2151] = {.count = 1, .reusable = true}, SHIFT(997), + [2153] = {.count = 1, .reusable = true}, SHIFT(998), + [2155] = {.count = 1, .reusable = true}, SHIFT(999), + [2157] = {.count = 1, .reusable = false}, SHIFT(1000), + [2159] = {.count = 1, .reusable = false}, SHIFT(998), + [2161] = {.count = 1, .reusable = true}, SHIFT(1008), + [2163] = {.count = 1, .reusable = true}, SHIFT(1010), + [2165] = {.count = 1, .reusable = false}, SHIFT(1012), + [2167] = {.count = 1, .reusable = true}, SHIFT(1013), + [2169] = {.count = 1, .reusable = true}, SHIFT(1014), + [2171] = {.count = 1, .reusable = false}, SHIFT(1016), + [2173] = {.count = 1, .reusable = true}, SHIFT(1016), + [2175] = {.count = 1, .reusable = true}, SHIFT(1015), + [2177] = {.count = 1, .reusable = true}, SHIFT(1017), + [2179] = {.count = 1, .reusable = true}, SHIFT(1018), + [2181] = {.count = 1, .reusable = false}, SHIFT(1019), + [2183] = {.count = 1, .reusable = false}, SHIFT(1018), + [2185] = {.count = 1, .reusable = true}, SHIFT(1021), + [2187] = {.count = 1, .reusable = false}, SHIFT(1023), + [2189] = {.count = 1, .reusable = true}, SHIFT(1023), + [2191] = {.count = 1, .reusable = true}, SHIFT(1022), + [2193] = {.count = 1, .reusable = true}, SHIFT(1024), + [2195] = {.count = 1, .reusable = false}, SHIFT(1026), + [2197] = {.count = 1, .reusable = true}, SHIFT(1026), + [2199] = {.count = 1, .reusable = true}, SHIFT(1025), + [2201] = {.count = 1, .reusable = true}, SHIFT(1027), + [2203] = {.count = 1, .reusable = true}, SHIFT(1028), + [2205] = {.count = 1, .reusable = false}, SHIFT(1030), + [2207] = {.count = 1, .reusable = false}, SHIFT(587), + [2209] = {.count = 1, .reusable = false}, SHIFT(43), + [2211] = {.count = 1, .reusable = false}, SHIFT(588), + [2213] = {.count = 1, .reusable = false}, SHIFT(46), + [2215] = {.count = 1, .reusable = false}, SHIFT(47), + [2217] = {.count = 1, .reusable = false}, SHIFT(48), + [2219] = {.count = 1, .reusable = false}, SHIFT(49), + [2221] = {.count = 1, .reusable = true}, SHIFT(1030), + [2223] = {.count = 1, .reusable = false}, SHIFT(1032), + [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(1034), + [2235] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 4), + [2237] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 4), + [2239] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 4), + [2241] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 4), + [2243] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 1), + [2245] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 1), + [2247] = {.count = 1, .reusable = true}, SHIFT(1039), + [2249] = {.count = 1, .reusable = false}, SHIFT(1039), + [2251] = {.count = 1, .reusable = true}, SHIFT(597), + [2253] = {.count = 1, .reusable = true}, SHIFT(598), + [2255] = {.count = 1, .reusable = false}, SHIFT(1044), + [2257] = {.count = 1, .reusable = true}, SHIFT(1045), + [2259] = {.count = 1, .reusable = true}, SHIFT(1046), + [2261] = {.count = 1, .reusable = false}, SHIFT(1046), + [2263] = {.count = 1, .reusable = false}, SHIFT(1050), + [2265] = {.count = 1, .reusable = true}, SHIFT(1050), + [2267] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(228), + [2270] = {.count = 1, .reusable = false}, SHIFT(1051), + [2272] = {.count = 1, .reusable = false}, SHIFT(1054), + [2274] = {.count = 1, .reusable = true}, SHIFT(1054), + [2276] = {.count = 1, .reusable = true}, SHIFT(1055), + [2278] = {.count = 1, .reusable = false}, SHIFT(1056), + [2280] = {.count = 1, .reusable = true}, SHIFT(1057), + [2282] = {.count = 1, .reusable = true}, SHIFT(1059), + [2284] = {.count = 1, .reusable = true}, SHIFT(1060), + [2286] = {.count = 1, .reusable = true}, SHIFT(1061), + [2288] = {.count = 1, .reusable = true}, SHIFT(1062), + [2290] = {.count = 1, .reusable = false}, SHIFT(1064), + [2292] = {.count = 1, .reusable = true}, SHIFT(1064), + [2294] = {.count = 1, .reusable = true}, SHIFT(1063), + [2296] = {.count = 1, .reusable = true}, SHIFT(1065), + [2298] = {.count = 1, .reusable = false}, SHIFT(1067), + [2300] = {.count = 1, .reusable = true}, SHIFT(1067), + [2302] = {.count = 1, .reusable = true}, SHIFT(1066), + [2304] = {.count = 1, .reusable = false}, SHIFT(1069), + [2306] = {.count = 1, .reusable = true}, SHIFT(1069), + [2308] = {.count = 1, .reusable = true}, SHIFT(1068), + [2310] = {.count = 1, .reusable = true}, SHIFT(1070), + [2312] = {.count = 1, .reusable = true}, SHIFT(1071), + [2314] = {.count = 1, .reusable = true}, SHIFT(1072), + [2316] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), + [2318] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), + [2320] = {.count = 1, .reusable = false}, SHIFT(1074), + [2322] = {.count = 1, .reusable = true}, SHIFT(1074), + [2324] = {.count = 1, .reusable = true}, SHIFT(1075), + [2326] = {.count = 1, .reusable = false}, SHIFT(1077), + [2328] = {.count = 1, .reusable = true}, SHIFT(1077), + [2330] = {.count = 1, .reusable = true}, SHIFT(1078), + [2332] = {.count = 1, .reusable = true}, SHIFT(1079), + [2334] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 4), + [2336] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 4), + [2338] = {.count = 1, .reusable = true}, SHIFT(1083), + [2340] = {.count = 1, .reusable = true}, SHIFT(1084), + [2342] = {.count = 1, .reusable = false}, SHIFT(1085), + [2344] = {.count = 1, .reusable = true}, SHIFT(1086), + [2346] = {.count = 1, .reusable = false}, SHIFT(1087), + [2348] = {.count = 1, .reusable = false}, SHIFT(1088), + [2350] = {.count = 1, .reusable = true}, SHIFT(1090), + [2352] = {.count = 1, .reusable = true}, SHIFT(1091), + [2354] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(258), + [2357] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(259), + [2360] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(260), + [2363] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(263), + [2366] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(264), + [2369] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 4), + [2371] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 4), + [2373] = {.count = 1, .reusable = true}, SHIFT(1095), + [2375] = {.count = 1, .reusable = true}, SHIFT(1096), + [2377] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(272), + [2380] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(274), + [2383] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(275), + [2386] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(273), + [2389] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(276), + [2392] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(277), + [2395] = {.count = 1, .reusable = true}, SHIFT(1098), + [2397] = {.count = 1, .reusable = true}, SHIFT(1100), + [2399] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), + [2401] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), + [2403] = {.count = 1, .reusable = false}, SHIFT(286), + [2405] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(290), + [2408] = {.count = 1, .reusable = true}, SHIFT(1103), + [2410] = {.count = 1, .reusable = false}, SHIFT(1104), + [2412] = {.count = 1, .reusable = true}, SHIFT(1105), + [2414] = {.count = 1, .reusable = true}, SHIFT(1107), + [2416] = {.count = 1, .reusable = true}, SHIFT(1108), + [2418] = {.count = 1, .reusable = true}, SHIFT(1109), + [2420] = {.count = 1, .reusable = true}, SHIFT(1110), + [2422] = {.count = 1, .reusable = false}, SHIFT(1112), + [2424] = {.count = 1, .reusable = true}, SHIFT(1112), + [2426] = {.count = 1, .reusable = true}, SHIFT(1111), + [2428] = {.count = 1, .reusable = true}, SHIFT(1113), + [2430] = {.count = 1, .reusable = false}, SHIFT(1115), + [2432] = {.count = 1, .reusable = true}, SHIFT(1115), + [2434] = {.count = 1, .reusable = true}, SHIFT(1114), + [2436] = {.count = 1, .reusable = false}, SHIFT(1117), + [2438] = {.count = 1, .reusable = true}, SHIFT(1117), + [2440] = {.count = 1, .reusable = true}, SHIFT(1116), + [2442] = {.count = 1, .reusable = true}, SHIFT(1118), + [2444] = {.count = 1, .reusable = true}, SHIFT(1119), + [2446] = {.count = 1, .reusable = true}, SHIFT(1120), + [2448] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3), + [2450] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3), + [2452] = {.count = 1, .reusable = false}, SHIFT(1121), + [2454] = {.count = 1, .reusable = true}, SHIFT(1121), + [2456] = {.count = 1, .reusable = true}, SHIFT(1122), + [2458] = {.count = 1, .reusable = true}, SHIFT(1123), + [2460] = {.count = 1, .reusable = false}, SHIFT(1124), + [2462] = {.count = 1, .reusable = true}, SHIFT(1125), + [2464] = {.count = 1, .reusable = true}, SHIFT(1126), + [2466] = {.count = 1, .reusable = true}, SHIFT(1127), + [2468] = {.count = 1, .reusable = true}, SHIFT(1128), + [2470] = {.count = 1, .reusable = true}, SHIFT(1129), + [2472] = {.count = 1, .reusable = true}, SHIFT(1131), + [2474] = {.count = 1, .reusable = true}, SHIFT(1132), + [2476] = {.count = 1, .reusable = true}, SHIFT(1133), + [2478] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 4), + [2480] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 4), + [2482] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(313), + [2485] = {.count = 1, .reusable = true}, SHIFT(1136), + [2487] = {.count = 1, .reusable = false}, SHIFT(1137), + [2489] = {.count = 1, .reusable = true}, SHIFT(1138), + [2491] = {.count = 1, .reusable = true}, SHIFT(1140), + [2493] = {.count = 1, .reusable = true}, SHIFT(1141), + [2495] = {.count = 1, .reusable = true}, SHIFT(1142), + [2497] = {.count = 1, .reusable = true}, SHIFT(1143), + [2499] = {.count = 1, .reusable = false}, SHIFT(1145), + [2501] = {.count = 1, .reusable = true}, SHIFT(1145), + [2503] = {.count = 1, .reusable = true}, SHIFT(1144), + [2505] = {.count = 1, .reusable = true}, SHIFT(1146), + [2507] = {.count = 1, .reusable = false}, SHIFT(1148), + [2509] = {.count = 1, .reusable = true}, SHIFT(1148), + [2511] = {.count = 1, .reusable = true}, SHIFT(1147), + [2513] = {.count = 1, .reusable = false}, SHIFT(1150), + [2515] = {.count = 1, .reusable = true}, SHIFT(1150), + [2517] = {.count = 1, .reusable = true}, SHIFT(1149), + [2519] = {.count = 1, .reusable = true}, SHIFT(1151), + [2521] = {.count = 1, .reusable = true}, SHIFT(1152), + [2523] = {.count = 1, .reusable = true}, SHIFT(1153), + [2525] = {.count = 1, .reusable = true}, SHIFT(1154), + [2527] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(334), + [2530] = {.count = 1, .reusable = true}, SHIFT(1156), + [2532] = {.count = 1, .reusable = false}, SHIFT(1157), + [2534] = {.count = 1, .reusable = true}, SHIFT(1158), + [2536] = {.count = 1, .reusable = true}, SHIFT(1160), + [2538] = {.count = 1, .reusable = true}, SHIFT(1161), + [2540] = {.count = 1, .reusable = true}, SHIFT(1162), + [2542] = {.count = 1, .reusable = true}, SHIFT(1163), + [2544] = {.count = 1, .reusable = false}, SHIFT(1165), + [2546] = {.count = 1, .reusable = true}, SHIFT(1165), + [2548] = {.count = 1, .reusable = true}, SHIFT(1164), + [2550] = {.count = 1, .reusable = true}, SHIFT(1166), + [2552] = {.count = 1, .reusable = false}, SHIFT(1168), + [2554] = {.count = 1, .reusable = true}, SHIFT(1168), + [2556] = {.count = 1, .reusable = true}, SHIFT(1167), + [2558] = {.count = 1, .reusable = false}, SHIFT(1170), + [2560] = {.count = 1, .reusable = true}, SHIFT(1170), + [2562] = {.count = 1, .reusable = true}, SHIFT(1169), + [2564] = {.count = 1, .reusable = true}, SHIFT(1171), + [2566] = {.count = 1, .reusable = true}, SHIFT(1172), + [2568] = {.count = 1, .reusable = true}, SHIFT(1173), + [2570] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(353), + [2573] = {.count = 1, .reusable = true}, SHIFT(1174), + [2575] = {.count = 1, .reusable = false}, SHIFT(1175), + [2577] = {.count = 1, .reusable = true}, SHIFT(1176), + [2579] = {.count = 1, .reusable = true}, SHIFT(1178), + [2581] = {.count = 1, .reusable = true}, SHIFT(1179), + [2583] = {.count = 1, .reusable = true}, SHIFT(1180), + [2585] = {.count = 1, .reusable = true}, SHIFT(1181), + [2587] = {.count = 1, .reusable = false}, SHIFT(1183), + [2589] = {.count = 1, .reusable = true}, SHIFT(1183), + [2591] = {.count = 1, .reusable = true}, SHIFT(1182), + [2593] = {.count = 1, .reusable = true}, SHIFT(1184), + [2595] = {.count = 1, .reusable = false}, SHIFT(1186), + [2597] = {.count = 1, .reusable = true}, SHIFT(1186), + [2599] = {.count = 1, .reusable = true}, SHIFT(1185), + [2601] = {.count = 1, .reusable = false}, SHIFT(1188), + [2603] = {.count = 1, .reusable = true}, SHIFT(1188), + [2605] = {.count = 1, .reusable = true}, SHIFT(1187), + [2607] = {.count = 1, .reusable = true}, SHIFT(1189), + [2609] = {.count = 1, .reusable = true}, SHIFT(1190), + [2611] = {.count = 1, .reusable = true}, SHIFT(1191), + [2613] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(372), + [2616] = {.count = 1, .reusable = true}, SHIFT(1192), + [2618] = {.count = 1, .reusable = false}, SHIFT(1193), + [2620] = {.count = 1, .reusable = true}, SHIFT(1194), + [2622] = {.count = 1, .reusable = true}, SHIFT(1196), + [2624] = {.count = 1, .reusable = true}, SHIFT(1197), + [2626] = {.count = 1, .reusable = true}, SHIFT(1198), + [2628] = {.count = 1, .reusable = true}, SHIFT(1199), + [2630] = {.count = 1, .reusable = false}, SHIFT(1201), + [2632] = {.count = 1, .reusable = true}, SHIFT(1201), + [2634] = {.count = 1, .reusable = true}, SHIFT(1200), + [2636] = {.count = 1, .reusable = true}, SHIFT(1202), + [2638] = {.count = 1, .reusable = false}, SHIFT(1204), + [2640] = {.count = 1, .reusable = true}, SHIFT(1204), + [2642] = {.count = 1, .reusable = true}, SHIFT(1203), + [2644] = {.count = 1, .reusable = false}, SHIFT(1206), + [2646] = {.count = 1, .reusable = true}, SHIFT(1206), + [2648] = {.count = 1, .reusable = true}, SHIFT(1205), + [2650] = {.count = 1, .reusable = true}, SHIFT(1207), + [2652] = {.count = 1, .reusable = true}, SHIFT(1208), + [2654] = {.count = 1, .reusable = true}, SHIFT(1209), + [2656] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 3), + [2658] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 3), + [2660] = {.count = 1, .reusable = true}, SHIFT(1210), + [2662] = {.count = 1, .reusable = false}, SHIFT(1211), + [2664] = {.count = 1, .reusable = true}, SHIFT(1212), + [2666] = {.count = 1, .reusable = true}, SHIFT(1214), + [2668] = {.count = 1, .reusable = true}, SHIFT(1215), + [2670] = {.count = 1, .reusable = true}, SHIFT(1216), + [2672] = {.count = 1, .reusable = true}, SHIFT(1217), + [2674] = {.count = 1, .reusable = false}, SHIFT(1219), + [2676] = {.count = 1, .reusable = true}, SHIFT(1219), + [2678] = {.count = 1, .reusable = true}, SHIFT(1218), + [2680] = {.count = 1, .reusable = true}, SHIFT(1220), + [2682] = {.count = 1, .reusable = false}, SHIFT(1222), + [2684] = {.count = 1, .reusable = true}, SHIFT(1222), + [2686] = {.count = 1, .reusable = true}, SHIFT(1221), + [2688] = {.count = 1, .reusable = false}, SHIFT(1224), + [2690] = {.count = 1, .reusable = true}, SHIFT(1224), + [2692] = {.count = 1, .reusable = true}, SHIFT(1223), + [2694] = {.count = 1, .reusable = true}, SHIFT(1225), + [2696] = {.count = 1, .reusable = true}, SHIFT(1226), + [2698] = {.count = 1, .reusable = true}, SHIFT(1227), + [2700] = {.count = 1, .reusable = true}, SHIFT(1228), + [2702] = {.count = 1, .reusable = true}, SHIFT(1229), + [2704] = {.count = 1, .reusable = true}, SHIFT(1230), + [2706] = {.count = 1, .reusable = true}, SHIFT(1231), + [2708] = {.count = 1, .reusable = true}, SHIFT(1232), + [2710] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4), + [2712] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4), + [2714] = {.count = 1, .reusable = true}, SHIFT(1233), + [2716] = {.count = 1, .reusable = true}, SHIFT(1234), + [2718] = {.count = 1, .reusable = false}, SHIFT(1236), + [2720] = {.count = 1, .reusable = true}, SHIFT(1238), + [2722] = {.count = 1, .reusable = true}, SHIFT(1239), + [2724] = {.count = 1, .reusable = false}, SHIFT(1240), + [2726] = {.count = 1, .reusable = false}, SHIFT(1238), + [2728] = {.count = 1, .reusable = true}, SHIFT(1241), + [2730] = {.count = 1, .reusable = true}, SHIFT(1242), + [2732] = {.count = 1, .reusable = true}, SHIFT(1243), + [2734] = {.count = 1, .reusable = true}, SHIFT(1244), + [2736] = {.count = 1, .reusable = false}, SHIFT(1245), + [2738] = {.count = 1, .reusable = false}, SHIFT(1243), + [2740] = {.count = 1, .reusable = true}, SHIFT(1253), + [2742] = {.count = 1, .reusable = false}, SHIFT(1255), + [2744] = {.count = 1, .reusable = true}, SHIFT(1256), + [2746] = {.count = 1, .reusable = true}, SHIFT(1257), + [2748] = {.count = 1, .reusable = false}, SHIFT(1259), + [2750] = {.count = 1, .reusable = true}, SHIFT(1259), + [2752] = {.count = 1, .reusable = true}, SHIFT(1258), + [2754] = {.count = 1, .reusable = true}, SHIFT(1260), + [2756] = {.count = 1, .reusable = true}, SHIFT(1261), + [2758] = {.count = 1, .reusable = false}, SHIFT(1262), + [2760] = {.count = 1, .reusable = false}, SHIFT(1261), + [2762] = {.count = 1, .reusable = true}, SHIFT(1264), + [2764] = {.count = 1, .reusable = false}, SHIFT(1266), + [2766] = {.count = 1, .reusable = true}, SHIFT(1266), + [2768] = {.count = 1, .reusable = true}, SHIFT(1265), + [2770] = {.count = 1, .reusable = true}, SHIFT(1267), + [2772] = {.count = 1, .reusable = false}, SHIFT(1269), + [2774] = {.count = 1, .reusable = true}, SHIFT(1269), + [2776] = {.count = 1, .reusable = true}, SHIFT(1268), + [2778] = {.count = 1, .reusable = true}, SHIFT(1270), + [2780] = {.count = 1, .reusable = false}, SHIFT(1271), + [2782] = {.count = 1, .reusable = true}, SHIFT(1271), + [2784] = {.count = 1, .reusable = true}, SHIFT(1272), + [2786] = {.count = 1, .reusable = true}, SHIFT(1273), + [2788] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [2790] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [2792] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), + [2794] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(829), + [2797] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(410), + [2800] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(411), + [2803] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(412), + [2806] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(413), + [2809] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(829), + [2812] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(414), + [2815] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(416), + [2818] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(417), + [2821] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(418), + [2824] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(413), + [2827] = {.count = 1, .reusable = false}, SHIFT(1274), + [2829] = {.count = 1, .reusable = true}, SHIFT(1275), + [2831] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), + [2833] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), + [2835] = {.count = 1, .reusable = true}, SHIFT(1277), + [2837] = {.count = 1, .reusable = true}, SHIFT(1278), + [2839] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), + [2841] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), + [2843] = {.count = 1, .reusable = true}, SHIFT(1279), + [2845] = {.count = 1, .reusable = true}, SHIFT(1280), + [2847] = {.count = 1, .reusable = true}, SHIFT(1281), + [2849] = {.count = 1, .reusable = true}, SHIFT(1282), + [2851] = {.count = 1, .reusable = false}, SHIFT(1283), + [2853] = {.count = 1, .reusable = true}, SHIFT(1283), + [2855] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [2857] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [2859] = {.count = 1, .reusable = true}, SHIFT(1284), + [2861] = {.count = 1, .reusable = false}, SHIFT(1285), + [2863] = {.count = 1, .reusable = true}, SHIFT(1285), + [2865] = {.count = 1, .reusable = true}, SHIFT(1288), + [2867] = {.count = 1, .reusable = false}, SHIFT(1290), + [2869] = {.count = 1, .reusable = false}, SHIFT(1294), + [2871] = {.count = 1, .reusable = false}, SHIFT(1298), + [2873] = {.count = 1, .reusable = true}, SHIFT(1298), + [2875] = {.count = 1, .reusable = true}, SHIFT(1299), + [2877] = {.count = 1, .reusable = false}, SHIFT(1300), + [2879] = {.count = 1, .reusable = true}, SHIFT(1300), + [2881] = {.count = 1, .reusable = true}, SHIFT(1301), + [2883] = {.count = 1, .reusable = true}, SHIFT(1302), + [2885] = {.count = 1, .reusable = true}, SHIFT(1303), + [2887] = {.count = 1, .reusable = true}, SHIFT(1305), + [2889] = {.count = 1, .reusable = false}, SHIFT(1306), + [2891] = {.count = 1, .reusable = true}, SHIFT(1306), + [2893] = {.count = 1, .reusable = true}, SHIFT(1308), + [2895] = {.count = 1, .reusable = false}, SHIFT(1308), + [2897] = {.count = 1, .reusable = false}, SHIFT(1309), + [2899] = {.count = 1, .reusable = true}, SHIFT(1309), + [2901] = {.count = 1, .reusable = true}, SHIFT(1310), + [2903] = {.count = 1, .reusable = false}, SHIFT(1311), + [2905] = {.count = 1, .reusable = true}, SHIFT(1311), + [2907] = {.count = 1, .reusable = false}, SHIFT(1312), + [2909] = {.count = 1, .reusable = true}, SHIFT(1312), + [2911] = {.count = 1, .reusable = true}, SHIFT(1313), + [2913] = {.count = 1, .reusable = true}, SHIFT(1315), + [2915] = {.count = 1, .reusable = true}, SHIFT(1316), + [2917] = {.count = 1, .reusable = true}, SHIFT(1317), + [2919] = {.count = 1, .reusable = true}, SHIFT(1318), + [2921] = {.count = 1, .reusable = true}, SHIFT(1319), + [2923] = {.count = 1, .reusable = false}, SHIFT(1321), + [2925] = {.count = 1, .reusable = true}, SHIFT(1322), + [2927] = {.count = 1, .reusable = true}, SHIFT(1323), + [2929] = {.count = 1, .reusable = false}, SHIFT(1325), + [2931] = {.count = 1, .reusable = true}, SHIFT(1325), + [2933] = {.count = 1, .reusable = true}, SHIFT(1324), + [2935] = {.count = 1, .reusable = true}, SHIFT(1326), + [2937] = {.count = 1, .reusable = true}, SHIFT(1327), + [2939] = {.count = 1, .reusable = false}, SHIFT(1328), + [2941] = {.count = 1, .reusable = false}, SHIFT(1327), + [2943] = {.count = 1, .reusable = true}, SHIFT(1330), + [2945] = {.count = 1, .reusable = false}, SHIFT(1332), + [2947] = {.count = 1, .reusable = true}, SHIFT(1332), + [2949] = {.count = 1, .reusable = true}, SHIFT(1331), + [2951] = {.count = 1, .reusable = true}, SHIFT(1333), + [2953] = {.count = 1, .reusable = false}, SHIFT(1335), + [2955] = {.count = 1, .reusable = true}, SHIFT(1335), + [2957] = {.count = 1, .reusable = true}, SHIFT(1334), + [2959] = {.count = 1, .reusable = true}, SHIFT(1336), + [2961] = {.count = 1, .reusable = true}, SHIFT(1337), + [2963] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(444), + [2966] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(445), + [2969] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(446), + [2972] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(447), + [2975] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(448), + [2978] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(449), + [2981] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(450), + [2984] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(451), + [2987] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(452), + [2990] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(453), + [2993] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(448), + [2996] = {.count = 1, .reusable = true}, SHIFT(1338), + [2998] = {.count = 1, .reusable = false}, SHIFT(1340), + [3000] = {.count = 1, .reusable = true}, SHIFT(1341), + [3002] = {.count = 1, .reusable = true}, SHIFT(1342), + [3004] = {.count = 1, .reusable = false}, SHIFT(1344), + [3006] = {.count = 1, .reusable = true}, SHIFT(1344), + [3008] = {.count = 1, .reusable = true}, SHIFT(1343), + [3010] = {.count = 1, .reusable = true}, SHIFT(1345), + [3012] = {.count = 1, .reusable = true}, SHIFT(1346), + [3014] = {.count = 1, .reusable = false}, SHIFT(1347), + [3016] = {.count = 1, .reusable = false}, SHIFT(1346), + [3018] = {.count = 1, .reusable = true}, SHIFT(1349), + [3020] = {.count = 1, .reusable = false}, SHIFT(1351), + [3022] = {.count = 1, .reusable = true}, SHIFT(1351), + [3024] = {.count = 1, .reusable = true}, SHIFT(1350), + [3026] = {.count = 1, .reusable = true}, SHIFT(1352), + [3028] = {.count = 1, .reusable = false}, SHIFT(1354), + [3030] = {.count = 1, .reusable = true}, SHIFT(1354), + [3032] = {.count = 1, .reusable = true}, SHIFT(1353), + [3034] = {.count = 1, .reusable = true}, SHIFT(1355), + [3036] = {.count = 1, .reusable = true}, SHIFT(1356), + [3038] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(456), + [3041] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(457), + [3044] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(458), + [3047] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(459), + [3050] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(460), + [3053] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(461), + [3056] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(462), + [3059] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(463), + [3062] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(464), + [3065] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(459), + [3068] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(466), + [3071] = {.count = 1, .reusable = true}, SHIFT(1357), + [3073] = {.count = 1, .reusable = false}, SHIFT(1358), + [3075] = {.count = 1, .reusable = true}, SHIFT(1359), + [3077] = {.count = 1, .reusable = true}, SHIFT(1361), + [3079] = {.count = 1, .reusable = true}, SHIFT(1362), + [3081] = {.count = 1, .reusable = true}, SHIFT(1363), + [3083] = {.count = 1, .reusable = true}, SHIFT(1364), + [3085] = {.count = 1, .reusable = false}, SHIFT(1366), + [3087] = {.count = 1, .reusable = true}, SHIFT(1366), + [3089] = {.count = 1, .reusable = true}, SHIFT(1365), + [3091] = {.count = 1, .reusable = true}, SHIFT(1367), + [3093] = {.count = 1, .reusable = false}, SHIFT(1369), + [3095] = {.count = 1, .reusable = true}, SHIFT(1369), + [3097] = {.count = 1, .reusable = true}, SHIFT(1368), + [3099] = {.count = 1, .reusable = false}, SHIFT(1371), + [3101] = {.count = 1, .reusable = true}, SHIFT(1371), + [3103] = {.count = 1, .reusable = true}, SHIFT(1370), + [3105] = {.count = 1, .reusable = true}, SHIFT(1372), + [3107] = {.count = 1, .reusable = true}, SHIFT(1373), + [3109] = {.count = 1, .reusable = true}, SHIFT(1374), + [3111] = {.count = 1, .reusable = true}, SHIFT(1376), + [3113] = {.count = 1, .reusable = true}, SHIFT(1377), + [3115] = {.count = 1, .reusable = true}, SHIFT(1378), + [3117] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(490), + [3120] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(492), + [3123] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(492), + [3126] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(493), + [3129] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(493), + [3132] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(494), + [3135] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(491), + [3138] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(495), + [3141] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(155), + [3144] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(156), + [3147] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(496), + [3150] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(158), + [3153] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(159), + [3156] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(160), + [3159] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(161), + [3162] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(496), + [3165] = {.count = 1, .reusable = true}, SHIFT(1385), + [3167] = {.count = 1, .reusable = true}, SHIFT(1386), + [3169] = {.count = 1, .reusable = false}, SHIFT(1387), + [3171] = {.count = 1, .reusable = true}, SHIFT(1387), + [3173] = {.count = 1, .reusable = true}, SHIFT(1388), + [3175] = {.count = 1, .reusable = false}, SHIFT(1389), + [3177] = {.count = 1, .reusable = true}, SHIFT(1389), + [3179] = {.count = 1, .reusable = true}, SHIFT(1390), + [3181] = {.count = 1, .reusable = true}, SHIFT(1392), + [3183] = {.count = 1, .reusable = true}, SHIFT(1393), + [3185] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(506), + [3188] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(507), + [3191] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(508), + [3194] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(508), + [3197] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(511), + [3200] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(512), + [3203] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(512), + [3206] = {.count = 1, .reusable = true}, SHIFT(1397), + [3208] = {.count = 1, .reusable = true}, SHIFT(1398), + [3210] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(518), + [3213] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(520), + [3216] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(520), + [3219] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(521), + [3222] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(519), + [3225] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(522), + [3228] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(523), + [3231] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(523), + [3234] = {.count = 1, .reusable = true}, SHIFT(1402), + [3236] = {.count = 1, .reusable = true}, SHIFT(1403), + [3238] = {.count = 1, .reusable = false}, SHIFT(1405), + [3240] = {.count = 1, .reusable = true}, SHIFT(1405), + [3242] = {.count = 1, .reusable = true}, SHIFT(1404), + [3244] = {.count = 1, .reusable = true}, SHIFT(1406), + [3246] = {.count = 1, .reusable = true}, SHIFT(1407), + [3248] = {.count = 1, .reusable = false}, SHIFT(1408), + [3250] = {.count = 1, .reusable = false}, SHIFT(1407), + [3252] = {.count = 1, .reusable = true}, SHIFT(1410), + [3254] = {.count = 1, .reusable = false}, SHIFT(1412), + [3256] = {.count = 1, .reusable = true}, SHIFT(1412), + [3258] = {.count = 1, .reusable = true}, SHIFT(1411), + [3260] = {.count = 1, .reusable = true}, SHIFT(1413), + [3262] = {.count = 1, .reusable = false}, SHIFT(1415), + [3264] = {.count = 1, .reusable = true}, SHIFT(1415), + [3266] = {.count = 1, .reusable = true}, SHIFT(1414), + [3268] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 3), + [3270] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 3), + [3272] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(978), + [3275] = {.count = 1, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [3277] = {.count = 2, .reusable = false}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(534), + [3280] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(535), + [3283] = {.count = 1, .reusable = false}, REDUCE(sym_command, 4), + [3285] = {.count = 1, .reusable = true}, REDUCE(sym_command, 4), + [3287] = {.count = 1, .reusable = true}, SHIFT(1418), + [3289] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), + [3291] = {.count = 1, .reusable = true}, SHIFT(1419), + [3293] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5), + [3295] = {.count = 1, .reusable = true}, SHIFT(1420), + [3297] = {.count = 1, .reusable = false}, SHIFT(1422), + [3299] = {.count = 1, .reusable = true}, SHIFT(1423), + [3301] = {.count = 1, .reusable = true}, SHIFT(1424), + [3303] = {.count = 1, .reusable = false}, SHIFT(1426), + [3305] = {.count = 1, .reusable = true}, SHIFT(1426), + [3307] = {.count = 1, .reusable = true}, SHIFT(1425), + [3309] = {.count = 1, .reusable = true}, SHIFT(1427), + [3311] = {.count = 1, .reusable = true}, SHIFT(1428), + [3313] = {.count = 1, .reusable = false}, SHIFT(1429), + [3315] = {.count = 1, .reusable = false}, SHIFT(1428), + [3317] = {.count = 1, .reusable = true}, SHIFT(1431), + [3319] = {.count = 1, .reusable = false}, SHIFT(1433), + [3321] = {.count = 1, .reusable = true}, SHIFT(1433), + [3323] = {.count = 1, .reusable = true}, SHIFT(1432), + [3325] = {.count = 1, .reusable = true}, SHIFT(1434), + [3327] = {.count = 1, .reusable = false}, SHIFT(1436), + [3329] = {.count = 1, .reusable = true}, SHIFT(1436), + [3331] = {.count = 1, .reusable = true}, SHIFT(1435), + [3333] = {.count = 1, .reusable = true}, SHIFT(1437), + [3335] = {.count = 1, .reusable = true}, SHIFT(1438), + [3337] = {.count = 1, .reusable = true}, REDUCE(sym_array, 3), + [3339] = {.count = 1, .reusable = false}, REDUCE(sym_array, 3), + [3341] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [3343] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(560), + [3346] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(561), + [3349] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(562), + [3352] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(563), + [3355] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(564), + [3358] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(565), + [3361] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(566), + [3364] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(567), + [3367] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(569), + [3370] = {.count = 1, .reusable = true}, SHIFT(1439), + [3372] = {.count = 1, .reusable = false}, SHIFT(1440), + [3374] = {.count = 1, .reusable = true}, SHIFT(1441), + [3376] = {.count = 1, .reusable = true}, SHIFT(1443), + [3378] = {.count = 1, .reusable = true}, SHIFT(1444), + [3380] = {.count = 1, .reusable = true}, SHIFT(1445), + [3382] = {.count = 1, .reusable = true}, SHIFT(1446), + [3384] = {.count = 1, .reusable = false}, SHIFT(1448), + [3386] = {.count = 1, .reusable = true}, SHIFT(1448), + [3388] = {.count = 1, .reusable = true}, SHIFT(1447), + [3390] = {.count = 1, .reusable = true}, SHIFT(1449), + [3392] = {.count = 1, .reusable = false}, SHIFT(1451), + [3394] = {.count = 1, .reusable = true}, SHIFT(1451), + [3396] = {.count = 1, .reusable = true}, SHIFT(1450), + [3398] = {.count = 1, .reusable = false}, SHIFT(1453), + [3400] = {.count = 1, .reusable = true}, SHIFT(1453), + [3402] = {.count = 1, .reusable = true}, SHIFT(1452), + [3404] = {.count = 1, .reusable = true}, SHIFT(1454), + [3406] = {.count = 1, .reusable = true}, SHIFT(1455), + [3408] = {.count = 1, .reusable = true}, SHIFT(1456), + [3410] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [3412] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(587), + [3415] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(43), + [3418] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(44), + [3421] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(588), + [3424] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(46), + [3427] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(47), + [3430] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(48), + [3433] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(49), + [3436] = {.count = 1, .reusable = false}, SHIFT(1459), + [3438] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 3), + [3440] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 3), + [3442] = {.count = 1, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), + [3444] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 5), + [3446] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 5), + [3448] = {.count = 1, .reusable = true}, SHIFT(1460), + [3450] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 2), + [3452] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), + [3454] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), + [3456] = {.count = 1, .reusable = true}, SHIFT(1462), + [3458] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), + [3460] = {.count = 2, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(597), + [3463] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [3465] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [3467] = {.count = 1, .reusable = true}, SHIFT(1464), + [3469] = {.count = 1, .reusable = true}, SHIFT(1465), + [3471] = {.count = 1, .reusable = true}, SHIFT(1468), + [3473] = {.count = 1, .reusable = true}, SHIFT(1470), + [3475] = {.count = 1, .reusable = false}, SHIFT(1473), + [3477] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5), + [3479] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5), + [3481] = {.count = 1, .reusable = true}, SHIFT(1475), + [3483] = {.count = 1, .reusable = false}, SHIFT(1477), + [3485] = {.count = 1, .reusable = true}, SHIFT(1479), + [3487] = {.count = 1, .reusable = true}, SHIFT(1480), + [3489] = {.count = 1, .reusable = true}, SHIFT(1481), + [3491] = {.count = 1, .reusable = false}, SHIFT(1482), + [3493] = {.count = 1, .reusable = true}, SHIFT(1482), + [3495] = {.count = 1, .reusable = false}, SHIFT(1483), + [3497] = {.count = 1, .reusable = true}, SHIFT(1484), + [3499] = {.count = 1, .reusable = true}, SHIFT(1486), + [3501] = {.count = 1, .reusable = true}, SHIFT(1487), + [3503] = {.count = 1, .reusable = true}, SHIFT(1488), + [3505] = {.count = 1, .reusable = true}, SHIFT(1489), + [3507] = {.count = 1, .reusable = true}, SHIFT(1490), + [3509] = {.count = 1, .reusable = true}, SHIFT(1491), + [3511] = {.count = 1, .reusable = false}, SHIFT(1492), + [3513] = {.count = 1, .reusable = true}, SHIFT(1492), + [3515] = {.count = 1, .reusable = true}, SHIFT(1493), + [3517] = {.count = 1, .reusable = false}, SHIFT(1494), + [3519] = {.count = 1, .reusable = true}, SHIFT(1494), + [3521] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 5), + [3523] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 5), + [3525] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), + [3527] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [3529] = {.count = 1, .reusable = true}, SHIFT(1496), + [3531] = {.count = 1, .reusable = true}, SHIFT(1497), + [3533] = {.count = 1, .reusable = false}, SHIFT(1502), + [3535] = {.count = 1, .reusable = true}, SHIFT(1502), + [3537] = {.count = 1, .reusable = true}, SHIFT(1503), + [3539] = {.count = 1, .reusable = true}, SHIFT(1504), + [3541] = {.count = 1, .reusable = false}, SHIFT(1505), + [3543] = {.count = 1, .reusable = true}, SHIFT(1505), + [3545] = {.count = 1, .reusable = true}, SHIFT(1506), + [3547] = {.count = 1, .reusable = true}, SHIFT(1507), + [3549] = {.count = 1, .reusable = true}, SHIFT(1508), + [3551] = {.count = 1, .reusable = true}, SHIFT(1509), + [3553] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 5), + [3555] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 5), + [3557] = {.count = 1, .reusable = true}, SHIFT(1512), + [3559] = {.count = 1, .reusable = true}, SHIFT(1513), + [3561] = {.count = 1, .reusable = true}, SHIFT(1514), + [3563] = {.count = 1, .reusable = true}, SHIFT(1515), + [3565] = {.count = 1, .reusable = false}, SHIFT(1516), + [3567] = {.count = 1, .reusable = true}, SHIFT(1516), + [3569] = {.count = 1, .reusable = false}, SHIFT(1517), + [3571] = {.count = 1, .reusable = true}, SHIFT(1518), + [3573] = {.count = 1, .reusable = true}, SHIFT(1520), + [3575] = {.count = 1, .reusable = true}, SHIFT(1521), + [3577] = {.count = 1, .reusable = true}, SHIFT(1522), + [3579] = {.count = 1, .reusable = true}, SHIFT(1523), + [3581] = {.count = 1, .reusable = true}, SHIFT(1524), + [3583] = {.count = 1, .reusable = true}, SHIFT(1525), + [3585] = {.count = 1, .reusable = false}, SHIFT(1526), + [3587] = {.count = 1, .reusable = true}, SHIFT(1526), + [3589] = {.count = 1, .reusable = true}, SHIFT(1527), + [3591] = {.count = 1, .reusable = false}, SHIFT(1528), + [3593] = {.count = 1, .reusable = true}, SHIFT(1528), + [3595] = {.count = 1, .reusable = true}, SHIFT(1529), + [3597] = {.count = 1, .reusable = true}, SHIFT(1530), + [3599] = {.count = 1, .reusable = true}, SHIFT(1532), + [3601] = {.count = 1, .reusable = false}, SHIFT(1534), + [3603] = {.count = 1, .reusable = true}, SHIFT(1536), + [3605] = {.count = 1, .reusable = true}, SHIFT(1537), + [3607] = {.count = 1, .reusable = false}, SHIFT(1538), + [3609] = {.count = 1, .reusable = false}, SHIFT(1536), + [3611] = {.count = 1, .reusable = true}, SHIFT(1539), + [3613] = {.count = 1, .reusable = true}, SHIFT(1540), + [3615] = {.count = 1, .reusable = true}, SHIFT(1541), + [3617] = {.count = 1, .reusable = false}, SHIFT(1542), + [3619] = {.count = 1, .reusable = false}, SHIFT(1540), + [3621] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(691), + [3624] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(692), + [3627] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(693), + [3630] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(694), + [3633] = {.count = 1, .reusable = true}, SHIFT(1550), + [3635] = {.count = 1, .reusable = true}, SHIFT(1551), + [3637] = {.count = 1, .reusable = true}, SHIFT(1552), + [3639] = {.count = 1, .reusable = false}, SHIFT(1553), + [3641] = {.count = 1, .reusable = true}, SHIFT(1553), + [3643] = {.count = 1, .reusable = false}, SHIFT(1554), + [3645] = {.count = 1, .reusable = true}, SHIFT(1555), + [3647] = {.count = 1, .reusable = true}, SHIFT(1557), + [3649] = {.count = 1, .reusable = true}, SHIFT(1558), + [3651] = {.count = 1, .reusable = true}, SHIFT(1559), + [3653] = {.count = 1, .reusable = true}, SHIFT(1560), + [3655] = {.count = 1, .reusable = true}, SHIFT(1561), + [3657] = {.count = 1, .reusable = true}, SHIFT(1562), + [3659] = {.count = 1, .reusable = false}, SHIFT(1563), + [3661] = {.count = 1, .reusable = true}, SHIFT(1563), + [3663] = {.count = 1, .reusable = true}, SHIFT(1564), + [3665] = {.count = 1, .reusable = false}, SHIFT(1565), + [3667] = {.count = 1, .reusable = true}, SHIFT(1565), + [3669] = {.count = 1, .reusable = true}, SHIFT(1566), + [3671] = {.count = 1, .reusable = true}, SHIFT(1567), + [3673] = {.count = 1, .reusable = true}, SHIFT(1568), + [3675] = {.count = 1, .reusable = true}, SHIFT(1569), + [3677] = {.count = 1, .reusable = false}, SHIFT(1570), + [3679] = {.count = 1, .reusable = true}, SHIFT(1570), + [3681] = {.count = 1, .reusable = false}, SHIFT(1571), + [3683] = {.count = 1, .reusable = true}, SHIFT(1572), + [3685] = {.count = 1, .reusable = true}, SHIFT(1574), + [3687] = {.count = 1, .reusable = true}, SHIFT(1575), + [3689] = {.count = 1, .reusable = true}, SHIFT(1576), + [3691] = {.count = 1, .reusable = true}, SHIFT(1577), + [3693] = {.count = 1, .reusable = true}, SHIFT(1578), + [3695] = {.count = 1, .reusable = true}, SHIFT(1579), + [3697] = {.count = 1, .reusable = false}, SHIFT(1580), + [3699] = {.count = 1, .reusable = true}, SHIFT(1580), + [3701] = {.count = 1, .reusable = true}, SHIFT(1581), + [3703] = {.count = 1, .reusable = false}, SHIFT(1582), + [3705] = {.count = 1, .reusable = true}, SHIFT(1582), + [3707] = {.count = 1, .reusable = true}, SHIFT(1583), + [3709] = {.count = 1, .reusable = true}, SHIFT(1584), + [3711] = {.count = 1, .reusable = true}, SHIFT(1585), + [3713] = {.count = 1, .reusable = false}, SHIFT(1586), + [3715] = {.count = 1, .reusable = true}, SHIFT(1586), + [3717] = {.count = 1, .reusable = false}, SHIFT(1587), + [3719] = {.count = 1, .reusable = true}, SHIFT(1588), + [3721] = {.count = 1, .reusable = true}, SHIFT(1590), + [3723] = {.count = 1, .reusable = true}, SHIFT(1591), + [3725] = {.count = 1, .reusable = true}, SHIFT(1592), + [3727] = {.count = 1, .reusable = true}, SHIFT(1593), + [3729] = {.count = 1, .reusable = true}, SHIFT(1594), + [3731] = {.count = 1, .reusable = true}, SHIFT(1595), + [3733] = {.count = 1, .reusable = false}, SHIFT(1596), + [3735] = {.count = 1, .reusable = true}, SHIFT(1596), + [3737] = {.count = 1, .reusable = true}, SHIFT(1597), + [3739] = {.count = 1, .reusable = false}, SHIFT(1598), + [3741] = {.count = 1, .reusable = true}, SHIFT(1598), + [3743] = {.count = 1, .reusable = true}, SHIFT(1599), + [3745] = {.count = 1, .reusable = true}, SHIFT(1600), + [3747] = {.count = 1, .reusable = true}, SHIFT(1601), + [3749] = {.count = 1, .reusable = false}, SHIFT(1602), + [3751] = {.count = 1, .reusable = true}, SHIFT(1602), + [3753] = {.count = 1, .reusable = false}, SHIFT(1603), + [3755] = {.count = 1, .reusable = true}, SHIFT(1604), + [3757] = {.count = 1, .reusable = true}, SHIFT(1606), + [3759] = {.count = 1, .reusable = true}, SHIFT(1607), + [3761] = {.count = 1, .reusable = true}, SHIFT(1608), + [3763] = {.count = 1, .reusable = true}, SHIFT(1609), + [3765] = {.count = 1, .reusable = true}, SHIFT(1610), + [3767] = {.count = 1, .reusable = true}, SHIFT(1611), + [3769] = {.count = 1, .reusable = false}, SHIFT(1612), + [3771] = {.count = 1, .reusable = true}, SHIFT(1612), + [3773] = {.count = 1, .reusable = true}, SHIFT(1613), + [3775] = {.count = 1, .reusable = false}, SHIFT(1614), + [3777] = {.count = 1, .reusable = true}, SHIFT(1614), + [3779] = {.count = 1, .reusable = true}, SHIFT(1615), + [3781] = {.count = 1, .reusable = true}, SHIFT(1616), + [3783] = {.count = 1, .reusable = true}, SHIFT(1617), + [3785] = {.count = 1, .reusable = false}, SHIFT(1618), + [3787] = {.count = 1, .reusable = true}, SHIFT(1618), + [3789] = {.count = 1, .reusable = false}, SHIFT(1619), + [3791] = {.count = 1, .reusable = true}, SHIFT(1620), + [3793] = {.count = 1, .reusable = true}, SHIFT(1622), + [3795] = {.count = 1, .reusable = true}, SHIFT(1623), + [3797] = {.count = 1, .reusable = true}, SHIFT(1624), + [3799] = {.count = 1, .reusable = true}, SHIFT(1625), + [3801] = {.count = 1, .reusable = true}, SHIFT(1626), + [3803] = {.count = 1, .reusable = true}, SHIFT(1627), + [3805] = {.count = 1, .reusable = false}, SHIFT(1628), + [3807] = {.count = 1, .reusable = true}, SHIFT(1628), + [3809] = {.count = 1, .reusable = true}, SHIFT(1629), + [3811] = {.count = 1, .reusable = false}, SHIFT(1630), + [3813] = {.count = 1, .reusable = true}, SHIFT(1630), + [3815] = {.count = 1, .reusable = true}, SHIFT(1631), + [3817] = {.count = 1, .reusable = true}, SHIFT(1632), + [3819] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), + [3821] = {.count = 1, .reusable = true}, SHIFT(1633), + [3823] = {.count = 1, .reusable = true}, SHIFT(1634), + [3825] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4), + [3827] = {.count = 1, .reusable = true}, SHIFT(1635), + [3829] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), + [3831] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), + [3833] = {.count = 1, .reusable = false}, SHIFT(1637), + [3835] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5), + [3837] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5), + [3839] = {.count = 1, .reusable = true}, SHIFT(1638), + [3841] = {.count = 1, .reusable = true}, SHIFT(1639), + [3843] = {.count = 1, .reusable = false}, SHIFT(1641), + [3845] = {.count = 1, .reusable = true}, SHIFT(1641), + [3847] = {.count = 1, .reusable = true}, SHIFT(1640), + [3849] = {.count = 1, .reusable = true}, SHIFT(1642), + [3851] = {.count = 1, .reusable = true}, SHIFT(1643), + [3853] = {.count = 1, .reusable = false}, SHIFT(1644), + [3855] = {.count = 1, .reusable = false}, SHIFT(1643), + [3857] = {.count = 1, .reusable = true}, SHIFT(1646), + [3859] = {.count = 1, .reusable = false}, SHIFT(1648), + [3861] = {.count = 1, .reusable = true}, SHIFT(1648), + [3863] = {.count = 1, .reusable = true}, SHIFT(1647), + [3865] = {.count = 1, .reusable = true}, SHIFT(1649), + [3867] = {.count = 1, .reusable = false}, SHIFT(1651), + [3869] = {.count = 1, .reusable = true}, SHIFT(1651), + [3871] = {.count = 1, .reusable = true}, SHIFT(1650), + [3873] = {.count = 1, .reusable = true}, SHIFT(1652), + [3875] = {.count = 1, .reusable = true}, SHIFT(1653), + [3877] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(809), + [3880] = {.count = 1, .reusable = true}, SHIFT(1654), + [3882] = {.count = 1, .reusable = false}, SHIFT(1655), + [3884] = {.count = 1, .reusable = true}, SHIFT(1656), + [3886] = {.count = 1, .reusable = true}, SHIFT(1658), + [3888] = {.count = 1, .reusable = true}, SHIFT(1659), + [3890] = {.count = 1, .reusable = true}, SHIFT(1660), + [3892] = {.count = 1, .reusable = true}, SHIFT(1661), + [3894] = {.count = 1, .reusable = false}, SHIFT(1663), + [3896] = {.count = 1, .reusable = true}, SHIFT(1663), + [3898] = {.count = 1, .reusable = true}, SHIFT(1662), + [3900] = {.count = 1, .reusable = true}, SHIFT(1664), + [3902] = {.count = 1, .reusable = false}, SHIFT(1666), + [3904] = {.count = 1, .reusable = true}, SHIFT(1666), + [3906] = {.count = 1, .reusable = true}, SHIFT(1665), + [3908] = {.count = 1, .reusable = false}, SHIFT(1668), + [3910] = {.count = 1, .reusable = true}, SHIFT(1668), + [3912] = {.count = 1, .reusable = true}, SHIFT(1667), + [3914] = {.count = 1, .reusable = true}, SHIFT(1669), + [3916] = {.count = 1, .reusable = true}, SHIFT(1670), + [3918] = {.count = 1, .reusable = true}, SHIFT(1671), + [3920] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), + [3922] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), + [3924] = {.count = 1, .reusable = true}, SHIFT(1672), + [3926] = {.count = 1, .reusable = true}, SHIFT(1673), + [3928] = {.count = 1, .reusable = true}, SHIFT(1674), + [3930] = {.count = 1, .reusable = true}, SHIFT(1675), + [3932] = {.count = 1, .reusable = false}, SHIFT(1676), + [3934] = {.count = 1, .reusable = true}, SHIFT(1676), + [3936] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [3938] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [3940] = {.count = 1, .reusable = true}, SHIFT(1677), + [3942] = {.count = 1, .reusable = false}, SHIFT(1678), + [3944] = {.count = 1, .reusable = true}, SHIFT(1678), + [3946] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [3948] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [3950] = {.count = 1, .reusable = true}, SHIFT(1679), + [3952] = {.count = 1, .reusable = false}, SHIFT(1680), + [3954] = {.count = 1, .reusable = true}, SHIFT(1680), + [3956] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), + [3958] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), + [3960] = {.count = 1, .reusable = true}, SHIFT(1681), + [3962] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), + [3964] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), + [3966] = {.count = 1, .reusable = true}, SHIFT(1682), + [3968] = {.count = 1, .reusable = false}, SHIFT(1684), + [3970] = {.count = 1, .reusable = true}, SHIFT(1684), + [3972] = {.count = 1, .reusable = false}, SHIFT(1685), + [3974] = {.count = 1, .reusable = false}, SHIFT(1687), + [3976] = {.count = 1, .reusable = true}, SHIFT(1689), + [3978] = {.count = 1, .reusable = false}, SHIFT(1689), + [3980] = {.count = 1, .reusable = false}, SHIFT(1692), + [3982] = {.count = 1, .reusable = false}, SHIFT(1695), + [3984] = {.count = 1, .reusable = true}, SHIFT(1695), + [3986] = {.count = 1, .reusable = false}, SHIFT(1696), + [3988] = {.count = 1, .reusable = false}, SHIFT(1699), + [3990] = {.count = 1, .reusable = true}, SHIFT(1699), + [3992] = {.count = 1, .reusable = true}, SHIFT(1701), + [3994] = {.count = 1, .reusable = false}, SHIFT(1702), + [3996] = {.count = 1, .reusable = true}, SHIFT(1702), + [3998] = {.count = 1, .reusable = true}, SHIFT(1703), + [4000] = {.count = 1, .reusable = true}, SHIFT(1704), + [4002] = {.count = 1, .reusable = true}, SHIFT(1706), + [4004] = {.count = 1, .reusable = false}, SHIFT(1707), + [4006] = {.count = 1, .reusable = true}, SHIFT(1707), + [4008] = {.count = 1, .reusable = true}, SHIFT(1708), + [4010] = {.count = 1, .reusable = true}, SHIFT(1709), + [4012] = {.count = 1, .reusable = false}, SHIFT(1710), + [4014] = {.count = 1, .reusable = true}, SHIFT(1711), + [4016] = {.count = 1, .reusable = true}, SHIFT(1712), + [4018] = {.count = 1, .reusable = true}, SHIFT(1713), + [4020] = {.count = 1, .reusable = true}, SHIFT(1714), + [4022] = {.count = 1, .reusable = true}, SHIFT(1715), + [4024] = {.count = 1, .reusable = true}, SHIFT(1717), + [4026] = {.count = 1, .reusable = true}, SHIFT(1718), + [4028] = {.count = 1, .reusable = true}, SHIFT(1719), + [4030] = {.count = 1, .reusable = true}, SHIFT(1722), + [4032] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(862), + [4035] = {.count = 1, .reusable = true}, SHIFT(1724), + [4037] = {.count = 1, .reusable = false}, SHIFT(1725), + [4039] = {.count = 1, .reusable = true}, SHIFT(1726), + [4041] = {.count = 1, .reusable = true}, SHIFT(1728), + [4043] = {.count = 1, .reusable = true}, SHIFT(1729), + [4045] = {.count = 1, .reusable = true}, SHIFT(1730), + [4047] = {.count = 1, .reusable = true}, SHIFT(1731), + [4049] = {.count = 1, .reusable = false}, SHIFT(1733), + [4051] = {.count = 1, .reusable = true}, SHIFT(1733), + [4053] = {.count = 1, .reusable = true}, SHIFT(1732), + [4055] = {.count = 1, .reusable = true}, SHIFT(1734), + [4057] = {.count = 1, .reusable = false}, SHIFT(1736), + [4059] = {.count = 1, .reusable = true}, SHIFT(1736), + [4061] = {.count = 1, .reusable = true}, SHIFT(1735), + [4063] = {.count = 1, .reusable = false}, SHIFT(1738), + [4065] = {.count = 1, .reusable = true}, SHIFT(1738), + [4067] = {.count = 1, .reusable = true}, SHIFT(1737), + [4069] = {.count = 1, .reusable = true}, SHIFT(1739), + [4071] = {.count = 1, .reusable = true}, SHIFT(1740), + [4073] = {.count = 1, .reusable = true}, SHIFT(1741), + [4075] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(881), + [4078] = {.count = 1, .reusable = true}, SHIFT(1742), + [4080] = {.count = 1, .reusable = false}, SHIFT(1743), + [4082] = {.count = 1, .reusable = true}, SHIFT(1744), + [4084] = {.count = 1, .reusable = true}, SHIFT(1746), + [4086] = {.count = 1, .reusable = true}, SHIFT(1747), + [4088] = {.count = 1, .reusable = true}, SHIFT(1748), + [4090] = {.count = 1, .reusable = true}, SHIFT(1749), + [4092] = {.count = 1, .reusable = false}, SHIFT(1751), + [4094] = {.count = 1, .reusable = true}, SHIFT(1751), + [4096] = {.count = 1, .reusable = true}, SHIFT(1750), + [4098] = {.count = 1, .reusable = true}, SHIFT(1752), + [4100] = {.count = 1, .reusable = false}, SHIFT(1754), + [4102] = {.count = 1, .reusable = true}, SHIFT(1754), + [4104] = {.count = 1, .reusable = true}, SHIFT(1753), + [4106] = {.count = 1, .reusable = false}, SHIFT(1756), + [4108] = {.count = 1, .reusable = true}, SHIFT(1756), + [4110] = {.count = 1, .reusable = true}, SHIFT(1755), + [4112] = {.count = 1, .reusable = true}, SHIFT(1757), + [4114] = {.count = 1, .reusable = true}, SHIFT(1758), + [4116] = {.count = 1, .reusable = true}, SHIFT(1759), + [4118] = {.count = 1, .reusable = true}, SHIFT(1760), + [4120] = {.count = 1, .reusable = true}, SHIFT(1761), + [4122] = {.count = 1, .reusable = true}, SHIFT(1762), + [4124] = {.count = 1, .reusable = false}, SHIFT(1763), + [4126] = {.count = 1, .reusable = true}, SHIFT(1763), + [4128] = {.count = 1, .reusable = false}, SHIFT(1764), + [4130] = {.count = 1, .reusable = true}, SHIFT(1765), + [4132] = {.count = 1, .reusable = true}, SHIFT(1767), + [4134] = {.count = 1, .reusable = true}, SHIFT(1768), + [4136] = {.count = 1, .reusable = true}, SHIFT(1769), + [4138] = {.count = 1, .reusable = true}, SHIFT(1770), + [4140] = {.count = 1, .reusable = true}, SHIFT(1771), + [4142] = {.count = 1, .reusable = true}, SHIFT(1772), + [4144] = {.count = 1, .reusable = false}, SHIFT(1773), + [4146] = {.count = 1, .reusable = true}, SHIFT(1773), + [4148] = {.count = 1, .reusable = true}, SHIFT(1774), + [4150] = {.count = 1, .reusable = false}, SHIFT(1775), + [4152] = {.count = 1, .reusable = true}, SHIFT(1775), + [4154] = {.count = 1, .reusable = false}, SHIFT(1781), + [4156] = {.count = 1, .reusable = true}, SHIFT(1781), + [4158] = {.count = 1, .reusable = true}, SHIFT(1782), + [4160] = {.count = 1, .reusable = true}, SHIFT(1783), + [4162] = {.count = 1, .reusable = false}, SHIFT(1784), + [4164] = {.count = 1, .reusable = true}, SHIFT(1784), + [4166] = {.count = 1, .reusable = true}, SHIFT(1785), + [4168] = {.count = 1, .reusable = true}, SHIFT(1786), + [4170] = {.count = 1, .reusable = true}, SHIFT(1787), + [4172] = {.count = 1, .reusable = true}, SHIFT(1788), + [4174] = {.count = 1, .reusable = true}, SHIFT(1791), + [4176] = {.count = 1, .reusable = false}, SHIFT(1792), + [4178] = {.count = 1, .reusable = true}, SHIFT(1793), + [4180] = {.count = 1, .reusable = true}, SHIFT(1795), + [4182] = {.count = 1, .reusable = true}, SHIFT(1796), + [4184] = {.count = 1, .reusable = true}, SHIFT(1797), + [4186] = {.count = 1, .reusable = true}, SHIFT(1798), + [4188] = {.count = 1, .reusable = false}, SHIFT(1800), + [4190] = {.count = 1, .reusable = true}, SHIFT(1800), + [4192] = {.count = 1, .reusable = true}, SHIFT(1799), + [4194] = {.count = 1, .reusable = true}, SHIFT(1801), + [4196] = {.count = 1, .reusable = false}, SHIFT(1803), + [4198] = {.count = 1, .reusable = true}, SHIFT(1803), + [4200] = {.count = 1, .reusable = true}, SHIFT(1802), + [4202] = {.count = 1, .reusable = false}, SHIFT(1805), + [4204] = {.count = 1, .reusable = true}, SHIFT(1805), + [4206] = {.count = 1, .reusable = true}, SHIFT(1804), + [4208] = {.count = 1, .reusable = true}, SHIFT(1806), + [4210] = {.count = 1, .reusable = true}, SHIFT(1807), + [4212] = {.count = 1, .reusable = true}, SHIFT(1808), + [4214] = {.count = 1, .reusable = false}, REDUCE(sym_command, 5), + [4216] = {.count = 1, .reusable = true}, REDUCE(sym_command, 5), + [4218] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), + [4220] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6), + [4222] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(990), + [4225] = {.count = 1, .reusable = true}, SHIFT(1809), + [4227] = {.count = 1, .reusable = false}, SHIFT(1810), + [4229] = {.count = 1, .reusable = true}, SHIFT(1811), + [4231] = {.count = 1, .reusable = true}, SHIFT(1813), + [4233] = {.count = 1, .reusable = true}, SHIFT(1814), + [4235] = {.count = 1, .reusable = true}, SHIFT(1815), + [4237] = {.count = 1, .reusable = true}, SHIFT(1816), + [4239] = {.count = 1, .reusable = false}, SHIFT(1818), + [4241] = {.count = 1, .reusable = true}, SHIFT(1818), + [4243] = {.count = 1, .reusable = true}, SHIFT(1817), + [4245] = {.count = 1, .reusable = true}, SHIFT(1819), + [4247] = {.count = 1, .reusable = false}, SHIFT(1821), + [4249] = {.count = 1, .reusable = true}, SHIFT(1821), + [4251] = {.count = 1, .reusable = true}, SHIFT(1820), + [4253] = {.count = 1, .reusable = false}, SHIFT(1823), + [4255] = {.count = 1, .reusable = true}, SHIFT(1823), + [4257] = {.count = 1, .reusable = true}, SHIFT(1822), + [4259] = {.count = 1, .reusable = true}, SHIFT(1824), + [4261] = {.count = 1, .reusable = true}, SHIFT(1825), + [4263] = {.count = 1, .reusable = true}, SHIFT(1826), + [4265] = {.count = 1, .reusable = true}, SHIFT(1827), + [4267] = {.count = 1, .reusable = true}, SHIFT(1828), + [4269] = {.count = 1, .reusable = true}, SHIFT(1829), + [4271] = {.count = 1, .reusable = false}, SHIFT(1830), + [4273] = {.count = 1, .reusable = true}, SHIFT(1830), + [4275] = {.count = 1, .reusable = false}, SHIFT(1831), + [4277] = {.count = 1, .reusable = true}, SHIFT(1832), + [4279] = {.count = 1, .reusable = true}, SHIFT(1834), + [4281] = {.count = 1, .reusable = true}, SHIFT(1835), + [4283] = {.count = 1, .reusable = true}, SHIFT(1836), + [4285] = {.count = 1, .reusable = true}, SHIFT(1837), + [4287] = {.count = 1, .reusable = true}, SHIFT(1838), + [4289] = {.count = 1, .reusable = true}, SHIFT(1839), + [4291] = {.count = 1, .reusable = false}, SHIFT(1840), + [4293] = {.count = 1, .reusable = true}, SHIFT(1840), + [4295] = {.count = 1, .reusable = true}, SHIFT(1841), + [4297] = {.count = 1, .reusable = false}, SHIFT(1842), + [4299] = {.count = 1, .reusable = true}, SHIFT(1842), + [4301] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), + [4303] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), + [4305] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 3), + [4307] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 6), + [4309] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 6), + [4311] = {.count = 1, .reusable = true}, SHIFT(1844), + [4313] = {.count = 1, .reusable = true}, SHIFT(1845), + [4315] = {.count = 1, .reusable = true}, SHIFT(1846), + [4317] = {.count = 1, .reusable = true}, SHIFT(1848), + [4319] = {.count = 1, .reusable = false}, SHIFT(1849), + [4321] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2, .alias_sequence_id = 1), + [4323] = {.count = 1, .reusable = true}, SHIFT(1850), + [4325] = {.count = 1, .reusable = false}, SHIFT(1851), + [4327] = {.count = 1, .reusable = false}, SHIFT(1852), + [4329] = {.count = 1, .reusable = false}, SHIFT(1853), + [4331] = {.count = 1, .reusable = true}, SHIFT(1854), + [4333] = {.count = 1, .reusable = false}, SHIFT(1855), + [4335] = {.count = 1, .reusable = false}, SHIFT(1856), + [4337] = {.count = 1, .reusable = false}, SHIFT(1857), + [4339] = {.count = 1, .reusable = true}, SHIFT(1858), + [4341] = {.count = 1, .reusable = false}, SHIFT(1859), + [4343] = {.count = 1, .reusable = true}, SHIFT(1866), + [4345] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2), + [4347] = {.count = 1, .reusable = true}, SHIFT(1869), + [4349] = {.count = 1, .reusable = true}, SHIFT(1873), + [4351] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), + [4353] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), + [4355] = {.count = 1, .reusable = true}, SHIFT(1874), + [4357] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1875), + [4360] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(86), + [4363] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(87), + [4366] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1876), + [4369] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(89), + [4372] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(90), + [4375] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(91), + [4378] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(92), + [4381] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [4383] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [4385] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), + [4387] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), + [4389] = {.count = 1, .reusable = true}, SHIFT(1879), + [4391] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6), + [4393] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6), + [4395] = {.count = 1, .reusable = true}, SHIFT(1881), + [4397] = {.count = 1, .reusable = true}, SHIFT(1882), + [4399] = {.count = 1, .reusable = true}, SHIFT(1883), + [4401] = {.count = 1, .reusable = true}, SHIFT(1884), + [4403] = {.count = 1, .reusable = false}, SHIFT(1885), + [4405] = {.count = 1, .reusable = true}, SHIFT(1885), + [4407] = {.count = 1, .reusable = true}, SHIFT(1886), + [4409] = {.count = 1, .reusable = false}, SHIFT(1887), + [4411] = {.count = 1, .reusable = true}, SHIFT(1887), + [4413] = {.count = 1, .reusable = true}, SHIFT(1888), + [4415] = {.count = 1, .reusable = false}, SHIFT(1889), + [4417] = {.count = 1, .reusable = true}, SHIFT(1889), + [4419] = {.count = 1, .reusable = true}, SHIFT(1890), + [4421] = {.count = 1, .reusable = true}, SHIFT(1891), + [4423] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 6), + [4425] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 6), + [4427] = {.count = 1, .reusable = true}, SHIFT(1893), + [4429] = {.count = 1, .reusable = true}, SHIFT(1894), + [4431] = {.count = 1, .reusable = true}, SHIFT(1896), + [4433] = {.count = 1, .reusable = true}, SHIFT(1897), + [4435] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1086), + [4438] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1087), + [4441] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1088), + [4444] = {.count = 1, .reusable = true}, SHIFT(1899), + [4446] = {.count = 1, .reusable = true}, SHIFT(1900), + [4448] = {.count = 1, .reusable = true}, SHIFT(1901), + [4450] = {.count = 1, .reusable = true}, SHIFT(1902), + [4452] = {.count = 1, .reusable = false}, SHIFT(1903), + [4454] = {.count = 1, .reusable = true}, SHIFT(1903), + [4456] = {.count = 1, .reusable = true}, SHIFT(1904), + [4458] = {.count = 1, .reusable = false}, SHIFT(1905), + [4460] = {.count = 1, .reusable = true}, SHIFT(1905), + [4462] = {.count = 1, .reusable = true}, SHIFT(1906), + [4464] = {.count = 1, .reusable = false}, SHIFT(1907), + [4466] = {.count = 1, .reusable = true}, SHIFT(1907), + [4468] = {.count = 1, .reusable = true}, SHIFT(1908), + [4470] = {.count = 1, .reusable = true}, SHIFT(1909), + [4472] = {.count = 1, .reusable = true}, SHIFT(1910), + [4474] = {.count = 1, .reusable = false}, SHIFT(1912), + [4476] = {.count = 1, .reusable = true}, SHIFT(1913), + [4478] = {.count = 1, .reusable = true}, SHIFT(1914), + [4480] = {.count = 1, .reusable = false}, SHIFT(1916), + [4482] = {.count = 1, .reusable = true}, SHIFT(1916), + [4484] = {.count = 1, .reusable = true}, SHIFT(1915), + [4486] = {.count = 1, .reusable = true}, SHIFT(1917), + [4488] = {.count = 1, .reusable = true}, SHIFT(1918), + [4490] = {.count = 1, .reusable = false}, SHIFT(1919), + [4492] = {.count = 1, .reusable = false}, SHIFT(1918), + [4494] = {.count = 1, .reusable = true}, SHIFT(1921), + [4496] = {.count = 1, .reusable = false}, SHIFT(1923), + [4498] = {.count = 1, .reusable = true}, SHIFT(1923), + [4500] = {.count = 1, .reusable = true}, SHIFT(1922), + [4502] = {.count = 1, .reusable = true}, SHIFT(1924), + [4504] = {.count = 1, .reusable = false}, SHIFT(1926), + [4506] = {.count = 1, .reusable = true}, SHIFT(1926), + [4508] = {.count = 1, .reusable = true}, SHIFT(1925), + [4510] = {.count = 1, .reusable = true}, SHIFT(1927), + [4512] = {.count = 1, .reusable = true}, SHIFT(1928), + [4514] = {.count = 1, .reusable = true}, SHIFT(1929), + [4516] = {.count = 1, .reusable = true}, SHIFT(1930), + [4518] = {.count = 1, .reusable = true}, SHIFT(1931), + [4520] = {.count = 1, .reusable = true}, SHIFT(1932), + [4522] = {.count = 1, .reusable = false}, SHIFT(1933), + [4524] = {.count = 1, .reusable = true}, SHIFT(1933), + [4526] = {.count = 1, .reusable = true}, SHIFT(1934), + [4528] = {.count = 1, .reusable = false}, SHIFT(1935), + [4530] = {.count = 1, .reusable = true}, SHIFT(1935), + [4532] = {.count = 1, .reusable = true}, SHIFT(1936), + [4534] = {.count = 1, .reusable = false}, SHIFT(1937), + [4536] = {.count = 1, .reusable = true}, SHIFT(1937), + [4538] = {.count = 1, .reusable = true}, SHIFT(1938), + [4540] = {.count = 1, .reusable = true}, SHIFT(1939), + [4542] = {.count = 1, .reusable = true}, SHIFT(1940), + [4544] = {.count = 1, .reusable = true}, SHIFT(1941), + [4546] = {.count = 1, .reusable = true}, SHIFT(1942), + [4548] = {.count = 1, .reusable = true}, SHIFT(1943), + [4550] = {.count = 1, .reusable = false}, SHIFT(1944), + [4552] = {.count = 1, .reusable = true}, SHIFT(1944), + [4554] = {.count = 1, .reusable = true}, SHIFT(1945), + [4556] = {.count = 1, .reusable = false}, SHIFT(1946), + [4558] = {.count = 1, .reusable = true}, SHIFT(1946), + [4560] = {.count = 1, .reusable = true}, SHIFT(1947), + [4562] = {.count = 1, .reusable = false}, SHIFT(1948), + [4564] = {.count = 1, .reusable = true}, SHIFT(1948), + [4566] = {.count = 1, .reusable = true}, SHIFT(1949), + [4568] = {.count = 1, .reusable = true}, SHIFT(1950), + [4570] = {.count = 1, .reusable = true}, SHIFT(1951), + [4572] = {.count = 1, .reusable = true}, SHIFT(1952), + [4574] = {.count = 1, .reusable = true}, SHIFT(1953), + [4576] = {.count = 1, .reusable = true}, SHIFT(1954), + [4578] = {.count = 1, .reusable = false}, SHIFT(1955), + [4580] = {.count = 1, .reusable = true}, SHIFT(1955), + [4582] = {.count = 1, .reusable = true}, SHIFT(1956), + [4584] = {.count = 1, .reusable = false}, SHIFT(1957), + [4586] = {.count = 1, .reusable = true}, SHIFT(1957), + [4588] = {.count = 1, .reusable = true}, SHIFT(1958), + [4590] = {.count = 1, .reusable = false}, SHIFT(1959), + [4592] = {.count = 1, .reusable = true}, SHIFT(1959), + [4594] = {.count = 1, .reusable = true}, SHIFT(1960), + [4596] = {.count = 1, .reusable = true}, SHIFT(1961), + [4598] = {.count = 1, .reusable = true}, SHIFT(1962), + [4600] = {.count = 1, .reusable = true}, SHIFT(1963), + [4602] = {.count = 1, .reusable = true}, SHIFT(1964), + [4604] = {.count = 1, .reusable = true}, SHIFT(1965), + [4606] = {.count = 1, .reusable = false}, SHIFT(1966), + [4608] = {.count = 1, .reusable = true}, SHIFT(1966), + [4610] = {.count = 1, .reusable = true}, SHIFT(1967), + [4612] = {.count = 1, .reusable = false}, SHIFT(1968), + [4614] = {.count = 1, .reusable = true}, SHIFT(1968), + [4616] = {.count = 1, .reusable = true}, SHIFT(1969), + [4618] = {.count = 1, .reusable = false}, SHIFT(1970), + [4620] = {.count = 1, .reusable = true}, SHIFT(1970), + [4622] = {.count = 1, .reusable = true}, SHIFT(1971), + [4624] = {.count = 1, .reusable = true}, SHIFT(1972), + [4626] = {.count = 1, .reusable = true}, SHIFT(1973), + [4628] = {.count = 1, .reusable = true}, SHIFT(1974), + [4630] = {.count = 1, .reusable = true}, SHIFT(1975), + [4632] = {.count = 1, .reusable = true}, SHIFT(1976), + [4634] = {.count = 1, .reusable = false}, SHIFT(1977), + [4636] = {.count = 1, .reusable = true}, SHIFT(1977), + [4638] = {.count = 1, .reusable = true}, SHIFT(1978), + [4640] = {.count = 1, .reusable = false}, SHIFT(1979), + [4642] = {.count = 1, .reusable = true}, SHIFT(1979), + [4644] = {.count = 1, .reusable = true}, SHIFT(1980), + [4646] = {.count = 1, .reusable = false}, SHIFT(1981), + [4648] = {.count = 1, .reusable = true}, SHIFT(1981), + [4650] = {.count = 1, .reusable = true}, SHIFT(1982), + [4652] = {.count = 1, .reusable = true}, SHIFT(1983), + [4654] = {.count = 1, .reusable = true}, SHIFT(1984), + [4656] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), + [4658] = {.count = 1, .reusable = true}, SHIFT(1985), + [4660] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5), + [4662] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1233), + [4665] = {.count = 1, .reusable = true}, SHIFT(1986), + [4667] = {.count = 1, .reusable = false}, SHIFT(1987), + [4669] = {.count = 1, .reusable = true}, SHIFT(1988), + [4671] = {.count = 1, .reusable = true}, SHIFT(1990), + [4673] = {.count = 1, .reusable = true}, SHIFT(1991), + [4675] = {.count = 1, .reusable = true}, SHIFT(1992), + [4677] = {.count = 1, .reusable = true}, SHIFT(1993), + [4679] = {.count = 1, .reusable = false}, SHIFT(1995), + [4681] = {.count = 1, .reusable = true}, SHIFT(1995), + [4683] = {.count = 1, .reusable = true}, SHIFT(1994), + [4685] = {.count = 1, .reusable = true}, SHIFT(1996), + [4687] = {.count = 1, .reusable = false}, SHIFT(1998), + [4689] = {.count = 1, .reusable = true}, SHIFT(1998), + [4691] = {.count = 1, .reusable = true}, SHIFT(1997), + [4693] = {.count = 1, .reusable = false}, SHIFT(2000), + [4695] = {.count = 1, .reusable = true}, SHIFT(2000), + [4697] = {.count = 1, .reusable = true}, SHIFT(1999), + [4699] = {.count = 1, .reusable = true}, SHIFT(2001), + [4701] = {.count = 1, .reusable = true}, SHIFT(2002), + [4703] = {.count = 1, .reusable = true}, SHIFT(2003), + [4705] = {.count = 1, .reusable = true}, SHIFT(2004), + [4707] = {.count = 1, .reusable = true}, SHIFT(2005), + [4709] = {.count = 1, .reusable = true}, SHIFT(2006), + [4711] = {.count = 1, .reusable = false}, SHIFT(2007), + [4713] = {.count = 1, .reusable = true}, SHIFT(2007), + [4715] = {.count = 1, .reusable = false}, SHIFT(2008), + [4717] = {.count = 1, .reusable = true}, SHIFT(2009), + [4719] = {.count = 1, .reusable = true}, SHIFT(2011), + [4721] = {.count = 1, .reusable = true}, SHIFT(2012), + [4723] = {.count = 1, .reusable = true}, SHIFT(2013), + [4725] = {.count = 1, .reusable = true}, SHIFT(2014), + [4727] = {.count = 1, .reusable = true}, SHIFT(2015), + [4729] = {.count = 1, .reusable = true}, SHIFT(2016), + [4731] = {.count = 1, .reusable = false}, SHIFT(2017), + [4733] = {.count = 1, .reusable = true}, SHIFT(2017), + [4735] = {.count = 1, .reusable = true}, SHIFT(2018), + [4737] = {.count = 1, .reusable = false}, SHIFT(2019), + [4739] = {.count = 1, .reusable = true}, SHIFT(2019), + [4741] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), + [4743] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), + [4745] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), + [4747] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), + [4749] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6), + [4751] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6), + [4753] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), + [4755] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), + [4757] = {.count = 1, .reusable = true}, SHIFT(2020), + [4759] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), + [4761] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), + [4763] = {.count = 1, .reusable = true}, SHIFT(2021), + [4765] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), + [4767] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), + [4769] = {.count = 1, .reusable = true}, SHIFT(2022), + [4771] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), + [4773] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), + [4775] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), + [4777] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), + [4779] = {.count = 1, .reusable = false}, SHIFT(2024), + [4781] = {.count = 1, .reusable = true}, SHIFT(2025), + [4783] = {.count = 1, .reusable = true}, SHIFT(2027), + [4785] = {.count = 1, .reusable = false}, SHIFT(2029), + [4787] = {.count = 1, .reusable = true}, SHIFT(2031), + [4789] = {.count = 1, .reusable = false}, SHIFT(2033), + [4791] = {.count = 1, .reusable = true}, SHIFT(2036), + [4793] = {.count = 1, .reusable = true}, SHIFT(2037), + [4795] = {.count = 1, .reusable = true}, SHIFT(2040), + [4797] = {.count = 1, .reusable = true}, SHIFT(2041), + [4799] = {.count = 1, .reusable = true}, SHIFT(2043), + [4801] = {.count = 1, .reusable = false}, SHIFT(2045), + [4803] = {.count = 1, .reusable = true}, SHIFT(2047), + [4805] = {.count = 1, .reusable = true}, SHIFT(2048), + [4807] = {.count = 1, .reusable = false}, SHIFT(2049), + [4809] = {.count = 1, .reusable = false}, SHIFT(2047), + [4811] = {.count = 1, .reusable = true}, SHIFT(2050), + [4813] = {.count = 1, .reusable = true}, SHIFT(2051), + [4815] = {.count = 1, .reusable = true}, SHIFT(2052), + [4817] = {.count = 1, .reusable = false}, SHIFT(2053), + [4819] = {.count = 1, .reusable = false}, SHIFT(2051), + [4821] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1310), + [4824] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1311), + [4827] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1311), + [4830] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1312), + [4833] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1312), + [4836] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1313), + [4839] = {.count = 1, .reusable = true}, SHIFT(2061), + [4841] = {.count = 1, .reusable = true}, SHIFT(2062), + [4843] = {.count = 1, .reusable = true}, SHIFT(2063), + [4845] = {.count = 1, .reusable = true}, SHIFT(2064), + [4847] = {.count = 1, .reusable = false}, SHIFT(2065), + [4849] = {.count = 1, .reusable = true}, SHIFT(2065), + [4851] = {.count = 1, .reusable = false}, SHIFT(2066), + [4853] = {.count = 1, .reusable = true}, SHIFT(2067), + [4855] = {.count = 1, .reusable = true}, SHIFT(2069), + [4857] = {.count = 1, .reusable = true}, SHIFT(2070), + [4859] = {.count = 1, .reusable = true}, SHIFT(2071), + [4861] = {.count = 1, .reusable = true}, SHIFT(2072), + [4863] = {.count = 1, .reusable = true}, SHIFT(2073), + [4865] = {.count = 1, .reusable = true}, SHIFT(2074), + [4867] = {.count = 1, .reusable = false}, SHIFT(2075), + [4869] = {.count = 1, .reusable = true}, SHIFT(2075), + [4871] = {.count = 1, .reusable = true}, SHIFT(2076), + [4873] = {.count = 1, .reusable = false}, SHIFT(2077), + [4875] = {.count = 1, .reusable = true}, SHIFT(2077), + [4877] = {.count = 1, .reusable = true}, SHIFT(2078), + [4879] = {.count = 1, .reusable = true}, SHIFT(2079), + [4881] = {.count = 1, .reusable = true}, SHIFT(2080), + [4883] = {.count = 1, .reusable = false}, SHIFT(2081), + [4885] = {.count = 1, .reusable = true}, SHIFT(2081), + [4887] = {.count = 1, .reusable = false}, SHIFT(2082), + [4889] = {.count = 1, .reusable = true}, SHIFT(2083), + [4891] = {.count = 1, .reusable = true}, SHIFT(2085), + [4893] = {.count = 1, .reusable = true}, SHIFT(2086), + [4895] = {.count = 1, .reusable = true}, SHIFT(2087), + [4897] = {.count = 1, .reusable = true}, SHIFT(2088), + [4899] = {.count = 1, .reusable = true}, SHIFT(2089), + [4901] = {.count = 1, .reusable = true}, SHIFT(2090), + [4903] = {.count = 1, .reusable = false}, SHIFT(2091), + [4905] = {.count = 1, .reusable = true}, SHIFT(2091), + [4907] = {.count = 1, .reusable = true}, SHIFT(2092), + [4909] = {.count = 1, .reusable = false}, SHIFT(2093), + [4911] = {.count = 1, .reusable = true}, SHIFT(2093), + [4913] = {.count = 1, .reusable = true}, SHIFT(2094), + [4915] = {.count = 1, .reusable = true}, SHIFT(2095), + [4917] = {.count = 1, .reusable = true}, SHIFT(2096), + [4919] = {.count = 1, .reusable = true}, SHIFT(2097), + [4921] = {.count = 1, .reusable = false}, SHIFT(2098), + [4923] = {.count = 1, .reusable = true}, SHIFT(2098), + [4925] = {.count = 1, .reusable = true}, SHIFT(2099), + [4927] = {.count = 1, .reusable = false}, SHIFT(2100), + [4929] = {.count = 1, .reusable = true}, SHIFT(2100), + [4931] = {.count = 1, .reusable = true}, SHIFT(2101), + [4933] = {.count = 1, .reusable = false}, SHIFT(2102), + [4935] = {.count = 1, .reusable = true}, SHIFT(2102), + [4937] = {.count = 1, .reusable = true}, SHIFT(2103), + [4939] = {.count = 1, .reusable = true}, SHIFT(2104), + [4941] = {.count = 1, .reusable = true}, SHIFT(2105), + [4943] = {.count = 1, .reusable = true}, SHIFT(2106), + [4945] = {.count = 1, .reusable = true}, SHIFT(2108), + [4947] = {.count = 1, .reusable = true}, SHIFT(2109), + [4949] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1388), + [4952] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1389), + [4955] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1389), + [4958] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1390), + [4961] = {.count = 1, .reusable = true}, SHIFT(2111), + [4963] = {.count = 1, .reusable = true}, SHIFT(2112), + [4965] = {.count = 1, .reusable = true}, SHIFT(2113), + [4967] = {.count = 1, .reusable = false}, SHIFT(2114), + [4969] = {.count = 1, .reusable = true}, SHIFT(2114), + [4971] = {.count = 1, .reusable = false}, SHIFT(2115), + [4973] = {.count = 1, .reusable = true}, SHIFT(2116), + [4975] = {.count = 1, .reusable = true}, SHIFT(2118), + [4977] = {.count = 1, .reusable = true}, SHIFT(2119), + [4979] = {.count = 1, .reusable = true}, SHIFT(2120), + [4981] = {.count = 1, .reusable = true}, SHIFT(2121), + [4983] = {.count = 1, .reusable = true}, SHIFT(2122), + [4985] = {.count = 1, .reusable = true}, SHIFT(2123), + [4987] = {.count = 1, .reusable = false}, SHIFT(2124), + [4989] = {.count = 1, .reusable = true}, SHIFT(2124), + [4991] = {.count = 1, .reusable = true}, SHIFT(2125), + [4993] = {.count = 1, .reusable = false}, SHIFT(2126), + [4995] = {.count = 1, .reusable = true}, SHIFT(2126), + [4997] = {.count = 1, .reusable = true}, SHIFT(2127), + [4999] = {.count = 1, .reusable = true}, SHIFT(2128), + [5001] = {.count = 1, .reusable = true}, SHIFT(2129), + [5003] = {.count = 1, .reusable = false}, SHIFT(2130), + [5005] = {.count = 1, .reusable = true}, SHIFT(2130), + [5007] = {.count = 1, .reusable = false}, SHIFT(2131), + [5009] = {.count = 1, .reusable = true}, SHIFT(2132), + [5011] = {.count = 1, .reusable = true}, SHIFT(2134), + [5013] = {.count = 1, .reusable = true}, SHIFT(2135), + [5015] = {.count = 1, .reusable = true}, SHIFT(2136), + [5017] = {.count = 1, .reusable = true}, SHIFT(2137), + [5019] = {.count = 1, .reusable = true}, SHIFT(2138), + [5021] = {.count = 1, .reusable = true}, SHIFT(2139), + [5023] = {.count = 1, .reusable = false}, SHIFT(2140), + [5025] = {.count = 1, .reusable = true}, SHIFT(2140), + [5027] = {.count = 1, .reusable = true}, SHIFT(2141), + [5029] = {.count = 1, .reusable = false}, SHIFT(2142), + [5031] = {.count = 1, .reusable = true}, SHIFT(2142), + [5033] = {.count = 1, .reusable = true}, SHIFT(2143), + [5035] = {.count = 1, .reusable = true}, SHIFT(2144), + [5037] = {.count = 1, .reusable = true}, SHIFT(2145), + [5039] = {.count = 1, .reusable = true}, SHIFT(2146), + [5041] = {.count = 1, .reusable = false}, SHIFT(2147), + [5043] = {.count = 1, .reusable = true}, SHIFT(2147), + [5045] = {.count = 1, .reusable = true}, SHIFT(2148), + [5047] = {.count = 1, .reusable = false}, SHIFT(2149), + [5049] = {.count = 1, .reusable = true}, SHIFT(2149), + [5051] = {.count = 1, .reusable = true}, SHIFT(2150), + [5053] = {.count = 1, .reusable = false}, SHIFT(2151), + [5055] = {.count = 1, .reusable = true}, SHIFT(2151), + [5057] = {.count = 1, .reusable = true}, SHIFT(2152), + [5059] = {.count = 1, .reusable = true}, SHIFT(2153), + [5061] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 4), + [5063] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), + [5065] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), + [5067] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 3), + [5069] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), + [5071] = {.count = 1, .reusable = true}, SHIFT(2154), + [5073] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), + [5075] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [5077] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [5079] = {.count = 1, .reusable = true}, SHIFT(2156), + [5081] = {.count = 1, .reusable = true}, SHIFT(2159), + [5083] = {.count = 1, .reusable = false}, SHIFT(2160), + [5085] = {.count = 1, .reusable = false}, SHIFT(2161), + [5087] = {.count = 1, .reusable = false}, SHIFT(2162), + [5089] = {.count = 1, .reusable = false}, SHIFT(2163), + [5091] = {.count = 1, .reusable = false}, SHIFT(2164), + [5093] = {.count = 1, .reusable = false}, SHIFT(2165), + [5095] = {.count = 1, .reusable = false}, SHIFT(2166), + [5097] = {.count = 1, .reusable = false}, SHIFT(2167), + [5099] = {.count = 1, .reusable = false}, SHIFT(2168), + [5101] = {.count = 1, .reusable = false}, SHIFT(2171), + [5103] = {.count = 1, .reusable = false}, SHIFT(2172), + [5105] = {.count = 1, .reusable = false}, SHIFT(2173), + [5107] = {.count = 1, .reusable = false}, SHIFT(2174), + [5109] = {.count = 1, .reusable = false}, SHIFT(2175), + [5111] = {.count = 1, .reusable = false}, SHIFT(2176), + [5113] = {.count = 1, .reusable = false}, SHIFT(2177), + [5115] = {.count = 1, .reusable = false}, SHIFT(2178), + [5117] = {.count = 1, .reusable = false}, SHIFT(2179), + [5119] = {.count = 1, .reusable = false}, SHIFT(2182), + [5121] = {.count = 1, .reusable = false}, SHIFT(2183), + [5123] = {.count = 1, .reusable = false}, SHIFT(2184), + [5125] = {.count = 1, .reusable = false}, SHIFT(2185), + [5127] = {.count = 1, .reusable = true}, SHIFT(2186), + [5129] = {.count = 1, .reusable = false}, SHIFT(2187), + [5131] = {.count = 1, .reusable = false}, SHIFT(2188), + [5133] = {.count = 1, .reusable = false}, SHIFT(2189), + [5135] = {.count = 1, .reusable = false}, SHIFT(2190), + [5137] = {.count = 1, .reusable = false}, SHIFT(2191), + [5139] = {.count = 1, .reusable = true}, SHIFT(2194), + [5141] = {.count = 1, .reusable = true}, SHIFT(1857), + [5143] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1464), + [5146] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3), + [5148] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3), + [5150] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3), + [5152] = {.count = 1, .reusable = false}, SHIFT(2200), + [5154] = {.count = 1, .reusable = true}, SHIFT(2201), + [5156] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), + [5158] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), + [5160] = {.count = 1, .reusable = true}, SHIFT(2205), + [5162] = {.count = 1, .reusable = true}, SHIFT(2207), + [5164] = {.count = 1, .reusable = true}, SHIFT(2209), + [5166] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), + [5168] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), + [5170] = {.count = 1, .reusable = true}, SHIFT(2210), + [5172] = {.count = 1, .reusable = true}, SHIFT(2211), + [5174] = {.count = 1, .reusable = true}, SHIFT(2212), + [5176] = {.count = 1, .reusable = true}, SHIFT(2213), + [5178] = {.count = 1, .reusable = true}, SHIFT(2216), + [5180] = {.count = 1, .reusable = true}, SHIFT(2217), + [5182] = {.count = 1, .reusable = true}, SHIFT(2218), + [5184] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1532), + [5187] = {.count = 1, .reusable = true}, SHIFT(2219), + [5189] = {.count = 1, .reusable = false}, SHIFT(2220), + [5191] = {.count = 1, .reusable = true}, SHIFT(2221), + [5193] = {.count = 1, .reusable = true}, SHIFT(2223), + [5195] = {.count = 1, .reusable = true}, SHIFT(2224), + [5197] = {.count = 1, .reusable = true}, SHIFT(2225), + [5199] = {.count = 1, .reusable = true}, SHIFT(2226), + [5201] = {.count = 1, .reusable = false}, SHIFT(2228), + [5203] = {.count = 1, .reusable = true}, SHIFT(2228), + [5205] = {.count = 1, .reusable = true}, SHIFT(2227), + [5207] = {.count = 1, .reusable = true}, SHIFT(2229), + [5209] = {.count = 1, .reusable = false}, SHIFT(2231), + [5211] = {.count = 1, .reusable = true}, SHIFT(2231), + [5213] = {.count = 1, .reusable = true}, SHIFT(2230), + [5215] = {.count = 1, .reusable = false}, SHIFT(2233), + [5217] = {.count = 1, .reusable = true}, SHIFT(2233), + [5219] = {.count = 1, .reusable = true}, SHIFT(2232), + [5221] = {.count = 1, .reusable = true}, SHIFT(2234), + [5223] = {.count = 1, .reusable = true}, SHIFT(2235), + [5225] = {.count = 1, .reusable = true}, SHIFT(2236), + [5227] = {.count = 1, .reusable = true}, SHIFT(2237), + [5229] = {.count = 1, .reusable = true}, SHIFT(2238), + [5231] = {.count = 1, .reusable = true}, SHIFT(2239), + [5233] = {.count = 1, .reusable = true}, SHIFT(2240), + [5235] = {.count = 1, .reusable = true}, SHIFT(2241), + [5237] = {.count = 1, .reusable = true}, SHIFT(2242), + [5239] = {.count = 1, .reusable = true}, SHIFT(2243), + [5241] = {.count = 1, .reusable = true}, SHIFT(2244), + [5243] = {.count = 1, .reusable = true}, SHIFT(2245), + [5245] = {.count = 1, .reusable = true}, SHIFT(2246), + [5247] = {.count = 1, .reusable = true}, SHIFT(2247), + [5249] = {.count = 1, .reusable = true}, SHIFT(2248), + [5251] = {.count = 1, .reusable = true}, SHIFT(2249), + [5253] = {.count = 1, .reusable = true}, SHIFT(2250), + [5255] = {.count = 1, .reusable = true}, SHIFT(2251), + [5257] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), + [5259] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6), + [5261] = {.count = 1, .reusable = true}, SHIFT(2252), + [5263] = {.count = 1, .reusable = true}, SHIFT(2253), + [5265] = {.count = 1, .reusable = true}, SHIFT(2254), + [5267] = {.count = 1, .reusable = false}, SHIFT(2255), + [5269] = {.count = 1, .reusable = true}, SHIFT(2255), + [5271] = {.count = 1, .reusable = false}, SHIFT(2256), + [5273] = {.count = 1, .reusable = true}, SHIFT(2257), + [5275] = {.count = 1, .reusable = true}, SHIFT(2259), + [5277] = {.count = 1, .reusable = true}, SHIFT(2260), + [5279] = {.count = 1, .reusable = true}, SHIFT(2261), + [5281] = {.count = 1, .reusable = true}, SHIFT(2262), + [5283] = {.count = 1, .reusable = true}, SHIFT(2263), + [5285] = {.count = 1, .reusable = true}, SHIFT(2264), + [5287] = {.count = 1, .reusable = false}, SHIFT(2265), + [5289] = {.count = 1, .reusable = true}, SHIFT(2265), + [5291] = {.count = 1, .reusable = true}, SHIFT(2266), + [5293] = {.count = 1, .reusable = false}, SHIFT(2267), + [5295] = {.count = 1, .reusable = true}, SHIFT(2267), + [5297] = {.count = 1, .reusable = true}, SHIFT(2268), + [5299] = {.count = 1, .reusable = true}, SHIFT(2269), + [5301] = {.count = 1, .reusable = true}, SHIFT(2270), + [5303] = {.count = 1, .reusable = true}, SHIFT(2271), + [5305] = {.count = 1, .reusable = false}, SHIFT(2272), + [5307] = {.count = 1, .reusable = true}, SHIFT(2272), + [5309] = {.count = 1, .reusable = true}, SHIFT(2273), + [5311] = {.count = 1, .reusable = false}, SHIFT(2274), + [5313] = {.count = 1, .reusable = true}, SHIFT(2274), + [5315] = {.count = 1, .reusable = true}, SHIFT(2275), + [5317] = {.count = 1, .reusable = false}, SHIFT(2276), + [5319] = {.count = 1, .reusable = true}, SHIFT(2276), + [5321] = {.count = 1, .reusable = true}, SHIFT(2277), + [5323] = {.count = 1, .reusable = true}, SHIFT(2278), + [5325] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), + [5327] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), + [5329] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), + [5331] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), + [5333] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), + [5335] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), + [5337] = {.count = 1, .reusable = true}, SHIFT(2279), + [5339] = {.count = 1, .reusable = true}, SHIFT(2280), + [5341] = {.count = 1, .reusable = true}, SHIFT(2282), + [5343] = {.count = 1, .reusable = true}, SHIFT(2285), + [5345] = {.count = 1, .reusable = false}, SHIFT(2287), + [5347] = {.count = 1, .reusable = true}, SHIFT(2288), + [5349] = {.count = 1, .reusable = true}, SHIFT(2289), + [5351] = {.count = 1, .reusable = false}, SHIFT(2291), + [5353] = {.count = 1, .reusable = true}, SHIFT(2291), + [5355] = {.count = 1, .reusable = true}, SHIFT(2290), + [5357] = {.count = 1, .reusable = true}, SHIFT(2292), + [5359] = {.count = 1, .reusable = true}, SHIFT(2293), + [5361] = {.count = 1, .reusable = false}, SHIFT(2294), + [5363] = {.count = 1, .reusable = false}, SHIFT(2293), + [5365] = {.count = 1, .reusable = true}, SHIFT(2296), + [5367] = {.count = 1, .reusable = false}, SHIFT(2298), + [5369] = {.count = 1, .reusable = true}, SHIFT(2298), + [5371] = {.count = 1, .reusable = true}, SHIFT(2297), + [5373] = {.count = 1, .reusable = true}, SHIFT(2299), + [5375] = {.count = 1, .reusable = false}, SHIFT(2301), + [5377] = {.count = 1, .reusable = true}, SHIFT(2301), + [5379] = {.count = 1, .reusable = true}, SHIFT(2300), + [5381] = {.count = 1, .reusable = true}, SHIFT(2302), + [5383] = {.count = 1, .reusable = true}, SHIFT(2303), + [5385] = {.count = 1, .reusable = true}, SHIFT(2304), + [5387] = {.count = 1, .reusable = true}, SHIFT(2305), + [5389] = {.count = 1, .reusable = true}, SHIFT(2306), + [5391] = {.count = 1, .reusable = true}, SHIFT(2307), + [5393] = {.count = 1, .reusable = false}, SHIFT(2308), + [5395] = {.count = 1, .reusable = true}, SHIFT(2308), + [5397] = {.count = 1, .reusable = true}, SHIFT(2309), + [5399] = {.count = 1, .reusable = false}, SHIFT(2310), + [5401] = {.count = 1, .reusable = true}, SHIFT(2310), + [5403] = {.count = 1, .reusable = true}, SHIFT(2311), + [5405] = {.count = 1, .reusable = false}, SHIFT(2312), + [5407] = {.count = 1, .reusable = true}, SHIFT(2312), + [5409] = {.count = 1, .reusable = true}, SHIFT(2313), + [5411] = {.count = 1, .reusable = true}, SHIFT(2314), + [5413] = {.count = 1, .reusable = true}, SHIFT(2315), + [5415] = {.count = 1, .reusable = true}, SHIFT(2316), + [5417] = {.count = 1, .reusable = true}, SHIFT(2317), + [5419] = {.count = 1, .reusable = true}, SHIFT(2318), + [5421] = {.count = 1, .reusable = false}, SHIFT(2319), + [5423] = {.count = 1, .reusable = true}, SHIFT(2319), + [5425] = {.count = 1, .reusable = true}, SHIFT(2320), + [5427] = {.count = 1, .reusable = false}, SHIFT(2321), + [5429] = {.count = 1, .reusable = true}, SHIFT(2321), + [5431] = {.count = 1, .reusable = true}, SHIFT(2322), + [5433] = {.count = 1, .reusable = false}, SHIFT(2323), + [5435] = {.count = 1, .reusable = true}, SHIFT(2323), + [5437] = {.count = 1, .reusable = true}, SHIFT(2324), + [5439] = {.count = 1, .reusable = true}, SHIFT(2325), + [5441] = {.count = 1, .reusable = true}, SHIFT(2326), + [5443] = {.count = 1, .reusable = true}, SHIFT(2327), + [5445] = {.count = 1, .reusable = true}, SHIFT(2328), + [5447] = {.count = 1, .reusable = true}, SHIFT(2331), + [5449] = {.count = 1, .reusable = true}, SHIFT(2332), + [5451] = {.count = 1, .reusable = true}, SHIFT(2333), + [5453] = {.count = 1, .reusable = true}, SHIFT(2334), + [5455] = {.count = 1, .reusable = false}, SHIFT(2335), + [5457] = {.count = 1, .reusable = true}, SHIFT(2335), + [5459] = {.count = 1, .reusable = true}, SHIFT(2336), + [5461] = {.count = 1, .reusable = false}, SHIFT(2337), + [5463] = {.count = 1, .reusable = true}, SHIFT(2337), + [5465] = {.count = 1, .reusable = true}, SHIFT(2338), + [5467] = {.count = 1, .reusable = false}, SHIFT(2339), + [5469] = {.count = 1, .reusable = true}, SHIFT(2339), + [5471] = {.count = 1, .reusable = true}, SHIFT(2340), + [5473] = {.count = 1, .reusable = true}, SHIFT(2341), + [5475] = {.count = 1, .reusable = true}, SHIFT(2342), + [5477] = {.count = 1, .reusable = true}, SHIFT(2343), + [5479] = {.count = 1, .reusable = true}, SHIFT(2344), + [5481] = {.count = 1, .reusable = true}, SHIFT(2345), + [5483] = {.count = 1, .reusable = false}, SHIFT(2346), + [5485] = {.count = 1, .reusable = true}, SHIFT(2346), + [5487] = {.count = 1, .reusable = true}, SHIFT(2347), + [5489] = {.count = 1, .reusable = false}, SHIFT(2348), + [5491] = {.count = 1, .reusable = true}, SHIFT(2348), + [5493] = {.count = 1, .reusable = true}, SHIFT(2349), + [5495] = {.count = 1, .reusable = false}, SHIFT(2350), + [5497] = {.count = 1, .reusable = true}, SHIFT(2350), + [5499] = {.count = 1, .reusable = true}, SHIFT(2351), + [5501] = {.count = 1, .reusable = true}, SHIFT(2352), + [5503] = {.count = 1, .reusable = true}, SHIFT(2353), + [5505] = {.count = 1, .reusable = true}, SHIFT(2354), + [5507] = {.count = 1, .reusable = true}, SHIFT(2355), + [5509] = {.count = 1, .reusable = true}, SHIFT(2356), + [5511] = {.count = 1, .reusable = true}, SHIFT(2357), + [5513] = {.count = 1, .reusable = true}, SHIFT(2359), + [5515] = {.count = 1, .reusable = true}, SHIFT(2361), + [5517] = {.count = 1, .reusable = true}, SHIFT(2362), + [5519] = {.count = 1, .reusable = true}, SHIFT(2363), + [5521] = {.count = 1, .reusable = false}, SHIFT(2365), + [5523] = {.count = 1, .reusable = true}, SHIFT(2161), + [5525] = {.count = 1, .reusable = true}, SHIFT(2367), + [5527] = {.count = 1, .reusable = true}, SHIFT(2368), + [5529] = {.count = 1, .reusable = false}, SHIFT(2369), + [5531] = {.count = 1, .reusable = false}, SHIFT(2367), + [5533] = {.count = 1, .reusable = true}, SHIFT(2370), + [5535] = {.count = 1, .reusable = true}, SHIFT(2371), + [5537] = {.count = 1, .reusable = true}, SHIFT(2372), + [5539] = {.count = 1, .reusable = false}, SHIFT(2373), + [5541] = {.count = 1, .reusable = false}, SHIFT(2371), + [5543] = {.count = 1, .reusable = true}, SHIFT(2382), + [5545] = {.count = 1, .reusable = false}, SHIFT(2384), + [5547] = {.count = 1, .reusable = true}, SHIFT(2172), + [5549] = {.count = 1, .reusable = true}, SHIFT(2386), + [5551] = {.count = 1, .reusable = true}, SHIFT(2387), + [5553] = {.count = 1, .reusable = false}, SHIFT(2388), + [5555] = {.count = 1, .reusable = false}, SHIFT(2386), + [5557] = {.count = 1, .reusable = true}, SHIFT(2389), + [5559] = {.count = 1, .reusable = true}, SHIFT(2390), + [5561] = {.count = 1, .reusable = true}, SHIFT(2391), + [5563] = {.count = 1, .reusable = false}, SHIFT(2392), + [5565] = {.count = 1, .reusable = false}, SHIFT(2390), + [5567] = {.count = 1, .reusable = true}, SHIFT(2402), + [5569] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), + [5571] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [5573] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [5575] = {.count = 1, .reusable = false}, SHIFT(2405), + [5577] = {.count = 1, .reusable = true}, SHIFT(2405), + [5579] = {.count = 1, .reusable = false}, SHIFT(2406), + [5581] = {.count = 1, .reusable = false}, SHIFT(2407), + [5583] = {.count = 1, .reusable = true}, SHIFT(2408), + [5585] = {.count = 1, .reusable = true}, SHIFT(2409), + [5587] = {.count = 1, .reusable = true}, SHIFT(2410), + [5589] = {.count = 1, .reusable = true}, SHIFT(2411), + [5591] = {.count = 1, .reusable = false}, SHIFT(2415), + [5593] = {.count = 1, .reusable = true}, SHIFT(2417), + [5595] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4), + [5597] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4), + [5599] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4), + [5601] = {.count = 1, .reusable = false}, SHIFT(2420), + [5603] = {.count = 1, .reusable = true}, SHIFT(2421), + [5605] = {.count = 1, .reusable = true}, SHIFT(2424), + [5607] = {.count = 1, .reusable = true}, SHIFT(2428), + [5609] = {.count = 1, .reusable = true}, SHIFT(2429), + [5611] = {.count = 1, .reusable = true}, SHIFT(2433), + [5613] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), + [5615] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), + [5617] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), + [5619] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), + [5621] = {.count = 1, .reusable = true}, SHIFT(2434), + [5623] = {.count = 1, .reusable = true}, SHIFT(2435), + [5625] = {.count = 1, .reusable = true}, SHIFT(2436), + [5627] = {.count = 1, .reusable = false}, SHIFT(2437), + [5629] = {.count = 1, .reusable = true}, SHIFT(2437), + [5631] = {.count = 1, .reusable = false}, SHIFT(2438), + [5633] = {.count = 1, .reusable = true}, SHIFT(2439), + [5635] = {.count = 1, .reusable = true}, SHIFT(2441), + [5637] = {.count = 1, .reusable = true}, SHIFT(2442), + [5639] = {.count = 1, .reusable = true}, SHIFT(2443), + [5641] = {.count = 1, .reusable = true}, SHIFT(2444), + [5643] = {.count = 1, .reusable = true}, SHIFT(2445), + [5645] = {.count = 1, .reusable = true}, SHIFT(2446), + [5647] = {.count = 1, .reusable = false}, SHIFT(2447), + [5649] = {.count = 1, .reusable = true}, SHIFT(2447), + [5651] = {.count = 1, .reusable = true}, SHIFT(2448), + [5653] = {.count = 1, .reusable = false}, SHIFT(2449), + [5655] = {.count = 1, .reusable = true}, SHIFT(2449), + [5657] = {.count = 1, .reusable = true}, SHIFT(2450), + [5659] = {.count = 1, .reusable = true}, SHIFT(2451), + [5661] = {.count = 1, .reusable = true}, SHIFT(2452), + [5663] = {.count = 1, .reusable = true}, SHIFT(2453), + [5665] = {.count = 1, .reusable = false}, SHIFT(2454), + [5667] = {.count = 1, .reusable = true}, SHIFT(2454), + [5669] = {.count = 1, .reusable = true}, SHIFT(2455), + [5671] = {.count = 1, .reusable = false}, SHIFT(2456), + [5673] = {.count = 1, .reusable = true}, SHIFT(2456), + [5675] = {.count = 1, .reusable = true}, SHIFT(2457), + [5677] = {.count = 1, .reusable = false}, SHIFT(2458), + [5679] = {.count = 1, .reusable = true}, SHIFT(2458), + [5681] = {.count = 1, .reusable = true}, SHIFT(2459), + [5683] = {.count = 1, .reusable = true}, SHIFT(2460), + [5685] = {.count = 1, .reusable = true}, SHIFT(2461), + [5687] = {.count = 1, .reusable = true}, SHIFT(2462), + [5689] = {.count = 1, .reusable = true}, SHIFT(2463), + [5691] = {.count = 1, .reusable = true}, SHIFT(2464), + [5693] = {.count = 1, .reusable = true}, SHIFT(2465), + [5695] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2043), + [5698] = {.count = 1, .reusable = true}, SHIFT(2466), + [5700] = {.count = 1, .reusable = false}, SHIFT(2467), + [5702] = {.count = 1, .reusable = true}, SHIFT(2468), + [5704] = {.count = 1, .reusable = true}, SHIFT(2470), + [5706] = {.count = 1, .reusable = true}, SHIFT(2471), + [5708] = {.count = 1, .reusable = true}, SHIFT(2472), + [5710] = {.count = 1, .reusable = true}, SHIFT(2473), + [5712] = {.count = 1, .reusable = false}, SHIFT(2475), + [5714] = {.count = 1, .reusable = true}, SHIFT(2475), + [5716] = {.count = 1, .reusable = true}, SHIFT(2474), + [5718] = {.count = 1, .reusable = true}, SHIFT(2476), + [5720] = {.count = 1, .reusable = false}, SHIFT(2478), + [5722] = {.count = 1, .reusable = true}, SHIFT(2478), + [5724] = {.count = 1, .reusable = true}, SHIFT(2477), + [5726] = {.count = 1, .reusable = false}, SHIFT(2480), + [5728] = {.count = 1, .reusable = true}, SHIFT(2480), + [5730] = {.count = 1, .reusable = true}, SHIFT(2479), + [5732] = {.count = 1, .reusable = true}, SHIFT(2481), + [5734] = {.count = 1, .reusable = true}, SHIFT(2482), + [5736] = {.count = 1, .reusable = true}, SHIFT(2483), + [5738] = {.count = 1, .reusable = true}, SHIFT(2484), + [5740] = {.count = 1, .reusable = true}, SHIFT(2485), + [5742] = {.count = 1, .reusable = true}, SHIFT(2486), + [5744] = {.count = 1, .reusable = true}, SHIFT(2487), + [5746] = {.count = 1, .reusable = true}, SHIFT(2488), + [5748] = {.count = 1, .reusable = true}, SHIFT(2489), + [5750] = {.count = 1, .reusable = true}, SHIFT(2490), + [5752] = {.count = 1, .reusable = true}, SHIFT(2491), + [5754] = {.count = 1, .reusable = true}, SHIFT(2492), + [5756] = {.count = 1, .reusable = true}, SHIFT(2493), + [5758] = {.count = 1, .reusable = true}, SHIFT(2494), + [5760] = {.count = 1, .reusable = true}, SHIFT(2495), + [5762] = {.count = 1, .reusable = true}, SHIFT(2498), + [5764] = {.count = 1, .reusable = true}, SHIFT(2499), + [5766] = {.count = 1, .reusable = false}, SHIFT(2500), + [5768] = {.count = 1, .reusable = true}, SHIFT(2501), + [5770] = {.count = 1, .reusable = false}, SHIFT(2502), + [5772] = {.count = 1, .reusable = false}, SHIFT(2503), + [5774] = {.count = 1, .reusable = true}, SHIFT(2505), + [5776] = {.count = 1, .reusable = true}, SHIFT(2506), + [5778] = {.count = 1, .reusable = true}, SHIFT(2507), + [5780] = {.count = 1, .reusable = true}, SHIFT(2508), + [5782] = {.count = 1, .reusable = true}, SHIFT(2164), + [5784] = {.count = 1, .reusable = true}, SHIFT(2165), + [5786] = {.count = 1, .reusable = true}, SHIFT(2166), + [5788] = {.count = 1, .reusable = true}, SHIFT(2167), + [5790] = {.count = 1, .reusable = true}, SHIFT(2509), + [5792] = {.count = 1, .reusable = false}, SHIFT(2511), + [5794] = {.count = 1, .reusable = true}, SHIFT(2512), + [5796] = {.count = 1, .reusable = true}, SHIFT(2513), + [5798] = {.count = 1, .reusable = false}, SHIFT(2515), + [5800] = {.count = 1, .reusable = true}, SHIFT(2515), + [5802] = {.count = 1, .reusable = true}, SHIFT(2514), + [5804] = {.count = 1, .reusable = true}, SHIFT(2516), + [5806] = {.count = 1, .reusable = true}, SHIFT(2517), + [5808] = {.count = 1, .reusable = false}, SHIFT(2518), + [5810] = {.count = 1, .reusable = false}, SHIFT(2517), + [5812] = {.count = 1, .reusable = true}, SHIFT(2520), + [5814] = {.count = 1, .reusable = false}, SHIFT(2522), + [5816] = {.count = 1, .reusable = true}, SHIFT(2522), + [5818] = {.count = 1, .reusable = true}, SHIFT(2521), + [5820] = {.count = 1, .reusable = true}, SHIFT(2523), + [5822] = {.count = 1, .reusable = false}, SHIFT(2525), + [5824] = {.count = 1, .reusable = true}, SHIFT(2525), + [5826] = {.count = 1, .reusable = true}, SHIFT(2524), + [5828] = {.count = 1, .reusable = true}, SHIFT(2526), + [5830] = {.count = 1, .reusable = true}, SHIFT(2527), + [5832] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2159), + [5835] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2160), + [5838] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2161), + [5841] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2162), + [5844] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2163), + [5847] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2164), + [5850] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2165), + [5853] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2166), + [5856] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2167), + [5859] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2168), + [5862] = {.count = 1, .reusable = true}, SHIFT(2528), + [5864] = {.count = 1, .reusable = true}, SHIFT(2175), + [5866] = {.count = 1, .reusable = true}, SHIFT(2176), + [5868] = {.count = 1, .reusable = true}, SHIFT(2177), + [5870] = {.count = 1, .reusable = true}, SHIFT(2178), + [5872] = {.count = 1, .reusable = false}, SHIFT(2530), + [5874] = {.count = 1, .reusable = true}, SHIFT(2531), + [5876] = {.count = 1, .reusable = true}, SHIFT(2532), + [5878] = {.count = 1, .reusable = false}, SHIFT(2534), + [5880] = {.count = 1, .reusable = true}, SHIFT(2534), + [5882] = {.count = 1, .reusable = true}, SHIFT(2533), + [5884] = {.count = 1, .reusable = true}, SHIFT(2535), + [5886] = {.count = 1, .reusable = true}, SHIFT(2536), + [5888] = {.count = 1, .reusable = false}, SHIFT(2537), + [5890] = {.count = 1, .reusable = false}, SHIFT(2536), + [5892] = {.count = 1, .reusable = true}, SHIFT(2539), + [5894] = {.count = 1, .reusable = false}, SHIFT(2541), + [5896] = {.count = 1, .reusable = true}, SHIFT(2541), + [5898] = {.count = 1, .reusable = true}, SHIFT(2540), + [5900] = {.count = 1, .reusable = true}, SHIFT(2542), + [5902] = {.count = 1, .reusable = false}, SHIFT(2544), + [5904] = {.count = 1, .reusable = true}, SHIFT(2544), + [5906] = {.count = 1, .reusable = true}, SHIFT(2543), + [5908] = {.count = 1, .reusable = true}, SHIFT(2545), + [5910] = {.count = 1, .reusable = true}, SHIFT(2546), + [5912] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2171), + [5915] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2172), + [5918] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2173), + [5921] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2174), + [5924] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2175), + [5927] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2176), + [5930] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2177), + [5933] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2178), + [5936] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2179), + [5939] = {.count = 1, .reusable = true}, SHIFT(2548), + [5941] = {.count = 1, .reusable = true}, SHIFT(2549), + [5943] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2186), + [5946] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2188), + [5949] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2189), + [5952] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2187), + [5955] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2190), + [5958] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2191), + [5961] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), + [5963] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [5965] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [5967] = {.count = 1, .reusable = false}, SHIFT(2552), + [5969] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5), + [5971] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5), + [5973] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5), + [5975] = {.count = 1, .reusable = false}, SHIFT(2553), + [5977] = {.count = 1, .reusable = false}, SHIFT(2554), + [5979] = {.count = 1, .reusable = true}, SHIFT(2555), + [5981] = {.count = 1, .reusable = false}, SHIFT(2560), + [5983] = {.count = 1, .reusable = true}, SHIFT(2561), + [5985] = {.count = 1, .reusable = true}, SHIFT(2565), + [5987] = {.count = 1, .reusable = true}, SHIFT(2566), + [5989] = {.count = 1, .reusable = true}, SHIFT(2567), + [5991] = {.count = 1, .reusable = true}, SHIFT(2568), + [5993] = {.count = 1, .reusable = false}, SHIFT(2569), + [5995] = {.count = 1, .reusable = true}, SHIFT(2569), + [5997] = {.count = 1, .reusable = true}, SHIFT(2570), + [5999] = {.count = 1, .reusable = false}, SHIFT(2571), + [6001] = {.count = 1, .reusable = true}, SHIFT(2571), + [6003] = {.count = 1, .reusable = true}, SHIFT(2572), + [6005] = {.count = 1, .reusable = false}, SHIFT(2573), + [6007] = {.count = 1, .reusable = true}, SHIFT(2573), + [6009] = {.count = 1, .reusable = true}, SHIFT(2574), + [6011] = {.count = 1, .reusable = true}, SHIFT(2575), + [6013] = {.count = 1, .reusable = true}, SHIFT(2576), + [6015] = {.count = 1, .reusable = true}, SHIFT(2577), + [6017] = {.count = 1, .reusable = true}, SHIFT(2578), + [6019] = {.count = 1, .reusable = true}, SHIFT(2579), + [6021] = {.count = 1, .reusable = true}, SHIFT(2580), + [6023] = {.count = 1, .reusable = true}, SHIFT(2581), + [6025] = {.count = 1, .reusable = false}, SHIFT(2582), + [6027] = {.count = 1, .reusable = true}, SHIFT(2582), + [6029] = {.count = 1, .reusable = false}, SHIFT(2583), + [6031] = {.count = 1, .reusable = true}, SHIFT(2584), + [6033] = {.count = 1, .reusable = true}, SHIFT(2586), + [6035] = {.count = 1, .reusable = true}, SHIFT(2587), + [6037] = {.count = 1, .reusable = true}, SHIFT(2588), + [6039] = {.count = 1, .reusable = true}, SHIFT(2589), + [6041] = {.count = 1, .reusable = true}, SHIFT(2590), + [6043] = {.count = 1, .reusable = true}, SHIFT(2591), + [6045] = {.count = 1, .reusable = false}, SHIFT(2592), + [6047] = {.count = 1, .reusable = true}, SHIFT(2592), + [6049] = {.count = 1, .reusable = true}, SHIFT(2593), + [6051] = {.count = 1, .reusable = false}, SHIFT(2594), + [6053] = {.count = 1, .reusable = true}, SHIFT(2594), + [6055] = {.count = 1, .reusable = false}, SHIFT(2597), + [6057] = {.count = 1, .reusable = true}, SHIFT(2597), + [6059] = {.count = 1, .reusable = true}, SHIFT(2598), + [6061] = {.count = 1, .reusable = true}, SHIFT(2599), + [6063] = {.count = 1, .reusable = false}, SHIFT(2600), + [6065] = {.count = 1, .reusable = true}, SHIFT(2601), + [6067] = {.count = 1, .reusable = true}, SHIFT(2602), + [6069] = {.count = 1, .reusable = true}, SHIFT(2603), + [6071] = {.count = 1, .reusable = true}, SHIFT(2604), + [6073] = {.count = 1, .reusable = true}, SHIFT(2605), + [6075] = {.count = 1, .reusable = false}, SHIFT(2606), + [6077] = {.count = 1, .reusable = true}, SHIFT(2606), + [6079] = {.count = 1, .reusable = true}, SHIFT(2607), + [6081] = {.count = 1, .reusable = true}, SHIFT(2608), + [6083] = {.count = 1, .reusable = true}, SHIFT(2609), + [6085] = {.count = 1, .reusable = true}, SHIFT(2610), + [6087] = {.count = 1, .reusable = true}, SHIFT(2612), + [6089] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2363), + [6092] = {.count = 1, .reusable = true}, SHIFT(2614), + [6094] = {.count = 1, .reusable = false}, SHIFT(2615), + [6096] = {.count = 1, .reusable = true}, SHIFT(2616), + [6098] = {.count = 1, .reusable = true}, SHIFT(2618), + [6100] = {.count = 1, .reusable = true}, SHIFT(2619), + [6102] = {.count = 1, .reusable = true}, SHIFT(2620), + [6104] = {.count = 1, .reusable = true}, SHIFT(2621), + [6106] = {.count = 1, .reusable = false}, SHIFT(2623), + [6108] = {.count = 1, .reusable = true}, SHIFT(2623), + [6110] = {.count = 1, .reusable = true}, SHIFT(2622), + [6112] = {.count = 1, .reusable = true}, SHIFT(2624), + [6114] = {.count = 1, .reusable = false}, SHIFT(2626), + [6116] = {.count = 1, .reusable = true}, SHIFT(2626), + [6118] = {.count = 1, .reusable = true}, SHIFT(2625), + [6120] = {.count = 1, .reusable = false}, SHIFT(2628), + [6122] = {.count = 1, .reusable = true}, SHIFT(2628), + [6124] = {.count = 1, .reusable = true}, SHIFT(2627), + [6126] = {.count = 1, .reusable = true}, SHIFT(2629), + [6128] = {.count = 1, .reusable = true}, SHIFT(2630), + [6130] = {.count = 1, .reusable = true}, SHIFT(2631), + [6132] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2382), + [6135] = {.count = 1, .reusable = true}, SHIFT(2632), + [6137] = {.count = 1, .reusable = false}, SHIFT(2633), + [6139] = {.count = 1, .reusable = true}, SHIFT(2634), + [6141] = {.count = 1, .reusable = true}, SHIFT(2636), + [6143] = {.count = 1, .reusable = true}, SHIFT(2637), + [6145] = {.count = 1, .reusable = true}, SHIFT(2638), + [6147] = {.count = 1, .reusable = true}, SHIFT(2639), + [6149] = {.count = 1, .reusable = false}, SHIFT(2641), + [6151] = {.count = 1, .reusable = true}, SHIFT(2641), + [6153] = {.count = 1, .reusable = true}, SHIFT(2640), + [6155] = {.count = 1, .reusable = true}, SHIFT(2642), + [6157] = {.count = 1, .reusable = false}, SHIFT(2644), + [6159] = {.count = 1, .reusable = true}, SHIFT(2644), + [6161] = {.count = 1, .reusable = true}, SHIFT(2643), + [6163] = {.count = 1, .reusable = false}, SHIFT(2646), + [6165] = {.count = 1, .reusable = true}, SHIFT(2646), + [6167] = {.count = 1, .reusable = true}, SHIFT(2645), + [6169] = {.count = 1, .reusable = true}, SHIFT(2647), + [6171] = {.count = 1, .reusable = true}, SHIFT(2648), + [6173] = {.count = 1, .reusable = true}, SHIFT(2649), + [6175] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6, .alias_sequence_id = 1), + [6177] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), + [6179] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), + [6181] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6), + [6183] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6), + [6185] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6), + [6187] = {.count = 1, .reusable = false}, SHIFT(2651), + [6189] = {.count = 1, .reusable = true}, SHIFT(2652), + [6191] = {.count = 1, .reusable = false}, SHIFT(2655), + [6193] = {.count = 1, .reusable = true}, SHIFT(2656), + [6195] = {.count = 1, .reusable = true}, SHIFT(2659), + [6197] = {.count = 1, .reusable = true}, SHIFT(2660), + [6199] = {.count = 1, .reusable = true}, SHIFT(2661), + [6201] = {.count = 1, .reusable = true}, SHIFT(2662), + [6203] = {.count = 1, .reusable = true}, SHIFT(2663), + [6205] = {.count = 1, .reusable = true}, SHIFT(2664), + [6207] = {.count = 1, .reusable = true}, SHIFT(2665), + [6209] = {.count = 1, .reusable = false}, SHIFT(2666), + [6211] = {.count = 1, .reusable = true}, SHIFT(2666), + [6213] = {.count = 1, .reusable = true}, SHIFT(2667), + [6215] = {.count = 1, .reusable = false}, SHIFT(2668), + [6217] = {.count = 1, .reusable = true}, SHIFT(2668), + [6219] = {.count = 1, .reusable = true}, SHIFT(2669), + [6221] = {.count = 1, .reusable = false}, SHIFT(2670), + [6223] = {.count = 1, .reusable = true}, SHIFT(2670), + [6225] = {.count = 1, .reusable = true}, SHIFT(2671), + [6227] = {.count = 1, .reusable = true}, SHIFT(2672), + [6229] = {.count = 1, .reusable = true}, SHIFT(2673), + [6231] = {.count = 1, .reusable = true}, SHIFT(2674), + [6233] = {.count = 1, .reusable = true}, SHIFT(2675), + [6235] = {.count = 1, .reusable = false}, SHIFT(2677), + [6237] = {.count = 1, .reusable = true}, SHIFT(2679), + [6239] = {.count = 1, .reusable = true}, SHIFT(2680), + [6241] = {.count = 1, .reusable = false}, SHIFT(2681), + [6243] = {.count = 1, .reusable = false}, SHIFT(2679), + [6245] = {.count = 1, .reusable = true}, SHIFT(2682), + [6247] = {.count = 1, .reusable = true}, SHIFT(2683), + [6249] = {.count = 1, .reusable = true}, SHIFT(2684), + [6251] = {.count = 1, .reusable = false}, SHIFT(2685), + [6253] = {.count = 1, .reusable = false}, SHIFT(2683), + [6255] = {.count = 1, .reusable = true}, SHIFT(2693), + [6257] = {.count = 1, .reusable = true}, SHIFT(2694), + [6259] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2501), + [6262] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2502), + [6265] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2503), + [6268] = {.count = 1, .reusable = true}, SHIFT(2696), + [6270] = {.count = 1, .reusable = true}, SHIFT(2697), + [6272] = {.count = 1, .reusable = true}, SHIFT(2698), + [6274] = {.count = 1, .reusable = true}, SHIFT(2699), + [6276] = {.count = 1, .reusable = false}, SHIFT(2700), + [6278] = {.count = 1, .reusable = true}, SHIFT(2700), + [6280] = {.count = 1, .reusable = false}, SHIFT(2701), + [6282] = {.count = 1, .reusable = true}, SHIFT(2702), + [6284] = {.count = 1, .reusable = true}, SHIFT(2704), + [6286] = {.count = 1, .reusable = true}, SHIFT(2705), + [6288] = {.count = 1, .reusable = true}, SHIFT(2706), + [6290] = {.count = 1, .reusable = true}, SHIFT(2707), + [6292] = {.count = 1, .reusable = true}, SHIFT(2708), + [6294] = {.count = 1, .reusable = true}, SHIFT(2709), + [6296] = {.count = 1, .reusable = false}, SHIFT(2710), + [6298] = {.count = 1, .reusable = true}, SHIFT(2710), + [6300] = {.count = 1, .reusable = true}, SHIFT(2711), + [6302] = {.count = 1, .reusable = false}, SHIFT(2712), + [6304] = {.count = 1, .reusable = true}, SHIFT(2712), + [6306] = {.count = 1, .reusable = true}, SHIFT(2713), + [6308] = {.count = 1, .reusable = true}, SHIFT(2714), + [6310] = {.count = 1, .reusable = true}, SHIFT(2715), + [6312] = {.count = 1, .reusable = false}, SHIFT(2716), + [6314] = {.count = 1, .reusable = true}, SHIFT(2716), + [6316] = {.count = 1, .reusable = false}, SHIFT(2717), + [6318] = {.count = 1, .reusable = true}, SHIFT(2718), + [6320] = {.count = 1, .reusable = true}, SHIFT(2720), + [6322] = {.count = 1, .reusable = true}, SHIFT(2721), + [6324] = {.count = 1, .reusable = true}, SHIFT(2722), + [6326] = {.count = 1, .reusable = true}, SHIFT(2723), + [6328] = {.count = 1, .reusable = true}, SHIFT(2724), + [6330] = {.count = 1, .reusable = true}, SHIFT(2725), + [6332] = {.count = 1, .reusable = false}, SHIFT(2726), + [6334] = {.count = 1, .reusable = true}, SHIFT(2726), + [6336] = {.count = 1, .reusable = true}, SHIFT(2727), + [6338] = {.count = 1, .reusable = false}, SHIFT(2728), + [6340] = {.count = 1, .reusable = true}, SHIFT(2728), + [6342] = {.count = 1, .reusable = false}, SHIFT(2729), + [6344] = {.count = 1, .reusable = false}, SHIFT(2730), + [6346] = {.count = 1, .reusable = true}, SHIFT(2731), + [6348] = {.count = 1, .reusable = true}, SHIFT(2732), + [6350] = {.count = 1, .reusable = true}, SHIFT(2733), + [6352] = {.count = 1, .reusable = true}, SHIFT(2734), + [6354] = {.count = 1, .reusable = false}, SHIFT(2736), + [6356] = {.count = 1, .reusable = true}, SHIFT(2737), + [6358] = {.count = 1, .reusable = true}, SHIFT(2738), + [6360] = {.count = 1, .reusable = false}, SHIFT(2740), + [6362] = {.count = 1, .reusable = true}, SHIFT(2740), + [6364] = {.count = 1, .reusable = true}, SHIFT(2739), + [6366] = {.count = 1, .reusable = true}, SHIFT(2741), + [6368] = {.count = 1, .reusable = true}, SHIFT(2742), + [6370] = {.count = 1, .reusable = false}, SHIFT(2743), + [6372] = {.count = 1, .reusable = false}, SHIFT(2742), + [6374] = {.count = 1, .reusable = true}, SHIFT(2745), + [6376] = {.count = 1, .reusable = false}, SHIFT(2747), + [6378] = {.count = 1, .reusable = true}, SHIFT(2747), + [6380] = {.count = 1, .reusable = true}, SHIFT(2746), + [6382] = {.count = 1, .reusable = true}, SHIFT(2748), + [6384] = {.count = 1, .reusable = false}, SHIFT(2750), + [6386] = {.count = 1, .reusable = true}, SHIFT(2750), + [6388] = {.count = 1, .reusable = true}, SHIFT(2749), + [6390] = {.count = 1, .reusable = true}, SHIFT(2751), + [6392] = {.count = 1, .reusable = true}, SHIFT(2752), + [6394] = {.count = 1, .reusable = true}, SHIFT(2754), + [6396] = {.count = 1, .reusable = true}, SHIFT(2755), + [6398] = {.count = 1, .reusable = true}, SHIFT(2756), + [6400] = {.count = 1, .reusable = true}, SHIFT(2757), + [6402] = {.count = 1, .reusable = false}, SHIFT(2758), + [6404] = {.count = 1, .reusable = true}, SHIFT(2758), + [6406] = {.count = 1, .reusable = true}, SHIFT(2759), + [6408] = {.count = 1, .reusable = false}, SHIFT(2760), + [6410] = {.count = 1, .reusable = true}, SHIFT(2760), + [6412] = {.count = 1, .reusable = true}, SHIFT(2761), + [6414] = {.count = 1, .reusable = false}, SHIFT(2762), + [6416] = {.count = 1, .reusable = true}, SHIFT(2762), + [6418] = {.count = 1, .reusable = true}, SHIFT(2763), + [6420] = {.count = 1, .reusable = true}, SHIFT(2764), + [6422] = {.count = 1, .reusable = true}, SHIFT(2765), + [6424] = {.count = 1, .reusable = true}, SHIFT(2766), + [6426] = {.count = 1, .reusable = true}, SHIFT(2767), + [6428] = {.count = 1, .reusable = true}, SHIFT(2768), + [6430] = {.count = 1, .reusable = false}, SHIFT(2769), + [6432] = {.count = 1, .reusable = true}, SHIFT(2769), + [6434] = {.count = 1, .reusable = true}, SHIFT(2770), + [6436] = {.count = 1, .reusable = false}, SHIFT(2771), + [6438] = {.count = 1, .reusable = true}, SHIFT(2771), + [6440] = {.count = 1, .reusable = true}, SHIFT(2772), + [6442] = {.count = 1, .reusable = false}, SHIFT(2773), + [6444] = {.count = 1, .reusable = true}, SHIFT(2773), + [6446] = {.count = 1, .reusable = true}, SHIFT(2774), + [6448] = {.count = 1, .reusable = true}, SHIFT(2775), + [6450] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2675), + [6453] = {.count = 1, .reusable = true}, SHIFT(2776), + [6455] = {.count = 1, .reusable = false}, SHIFT(2777), + [6457] = {.count = 1, .reusable = true}, SHIFT(2778), + [6459] = {.count = 1, .reusable = true}, SHIFT(2780), + [6461] = {.count = 1, .reusable = true}, SHIFT(2781), + [6463] = {.count = 1, .reusable = true}, SHIFT(2782), + [6465] = {.count = 1, .reusable = true}, SHIFT(2783), + [6467] = {.count = 1, .reusable = false}, SHIFT(2785), + [6469] = {.count = 1, .reusable = true}, SHIFT(2785), + [6471] = {.count = 1, .reusable = true}, SHIFT(2784), + [6473] = {.count = 1, .reusable = true}, SHIFT(2786), + [6475] = {.count = 1, .reusable = false}, SHIFT(2788), + [6477] = {.count = 1, .reusable = true}, SHIFT(2788), + [6479] = {.count = 1, .reusable = true}, SHIFT(2787), + [6481] = {.count = 1, .reusable = false}, SHIFT(2790), + [6483] = {.count = 1, .reusable = true}, SHIFT(2790), + [6485] = {.count = 1, .reusable = true}, SHIFT(2789), + [6487] = {.count = 1, .reusable = true}, SHIFT(2791), + [6489] = {.count = 1, .reusable = true}, SHIFT(2792), + [6491] = {.count = 1, .reusable = true}, SHIFT(2793), + [6493] = {.count = 1, .reusable = true}, SHIFT(2794), + [6495] = {.count = 1, .reusable = true}, SHIFT(2795), + [6497] = {.count = 1, .reusable = true}, SHIFT(2796), + [6499] = {.count = 1, .reusable = true}, SHIFT(2797), + [6501] = {.count = 1, .reusable = true}, SHIFT(2798), + [6503] = {.count = 1, .reusable = true}, SHIFT(2799), + [6505] = {.count = 1, .reusable = true}, SHIFT(2800), + [6507] = {.count = 1, .reusable = true}, SHIFT(2801), + [6509] = {.count = 1, .reusable = true}, SHIFT(2802), + [6511] = {.count = 1, .reusable = false}, SHIFT(2803), + [6513] = {.count = 1, .reusable = true}, SHIFT(2803), + [6515] = {.count = 1, .reusable = false}, SHIFT(2804), + [6517] = {.count = 1, .reusable = true}, SHIFT(2805), + [6519] = {.count = 1, .reusable = true}, SHIFT(2807), + [6521] = {.count = 1, .reusable = true}, SHIFT(2808), + [6523] = {.count = 1, .reusable = true}, SHIFT(2809), + [6525] = {.count = 1, .reusable = true}, SHIFT(2810), + [6527] = {.count = 1, .reusable = true}, SHIFT(2811), + [6529] = {.count = 1, .reusable = true}, SHIFT(2812), + [6531] = {.count = 1, .reusable = false}, SHIFT(2813), + [6533] = {.count = 1, .reusable = true}, SHIFT(2813), + [6535] = {.count = 1, .reusable = true}, SHIFT(2814), + [6537] = {.count = 1, .reusable = false}, SHIFT(2815), + [6539] = {.count = 1, .reusable = true}, SHIFT(2815), + [6541] = {.count = 1, .reusable = true}, SHIFT(2816), + [6543] = {.count = 1, .reusable = true}, SHIFT(2817), + [6545] = {.count = 1, .reusable = true}, SHIFT(2818), + [6547] = {.count = 1, .reusable = true}, SHIFT(2819), + [6549] = {.count = 1, .reusable = false}, SHIFT(2820), + [6551] = {.count = 1, .reusable = true}, SHIFT(2820), + [6553] = {.count = 1, .reusable = true}, SHIFT(2821), + [6555] = {.count = 1, .reusable = false}, SHIFT(2822), + [6557] = {.count = 1, .reusable = true}, SHIFT(2822), + [6559] = {.count = 1, .reusable = true}, SHIFT(2823), + [6561] = {.count = 1, .reusable = false}, SHIFT(2824), + [6563] = {.count = 1, .reusable = true}, SHIFT(2824), + [6565] = {.count = 1, .reusable = true}, SHIFT(2825), + [6567] = {.count = 1, .reusable = true}, SHIFT(2826), + [6569] = {.count = 1, .reusable = true}, SHIFT(2827), + [6571] = {.count = 1, .reusable = true}, SHIFT(2828), + [6573] = {.count = 1, .reusable = true}, SHIFT(2829), }; void *tree_sitter_bash_external_scanner_create(); @@ -86563,6 +73890,8 @@ extern const TSLanguage *tree_sitter_bash() { .alias_sequences = (const TSSymbol *)ts_alias_sequences, .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, .lex_fn = ts_lex, + .keyword_lex_fn = ts_lex_keywords, + .keyword_capture_token = sym_word, .external_token_count = EXTERNAL_TOKEN_COUNT, .external_scanner = { (const bool *)ts_external_scanner_states, diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 35e77a8..1b6c2b1 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -13,7 +13,10 @@ extern "C" { #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 +#ifndef TREE_SITTER_RUNTIME_H_ typedef uint16_t TSSymbol; +typedef struct TSLanguage TSLanguage; +#endif typedef uint16_t TSStateId; @@ -67,7 +70,7 @@ typedef union { }; } TSParseActionEntry; -typedef struct TSLanguage { +struct TSLanguage { uint32_t version; uint32_t symbol_count; uint32_t alias_count; @@ -92,7 +95,7 @@ typedef struct TSLanguage { unsigned (*serialize)(void *, char *); void (*deserialize)(void *, const char *, unsigned); } external_scanner; -} TSLanguage; +}; /* * Lexer Macros